Skip to content

Commit

Permalink
Fix package download issue in CI?
Browse files Browse the repository at this point in the history
  • Loading branch information
bradwilson committed Nov 2, 2024
1 parent 29cc2e5 commit 6455d4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/xunit.analyzers.tests/xunit.analyzers.tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
<PackageDownload Include="xunit.abstractions" Version="[2.0.3]" />
<PackageDownload Include="xunit.assert" Version="[2.9.3-pre.4]" />
<PackageDownload Include="xunit.core" Version="[2.9.3-pre.4]" />
<PackageDownload Include="xunit.extensibility.core" Version="[2.9.3-pre.4]" />
<PackageDownload Include="xunit.extensibility.execution" Version="[2.9.3-pre.4]" />
<PackageDownload Include="xunit.runner.utility" Version="[2.9.3-pre.4]" />

<PackageDownload Include="xunit.v3.assert" Version="[0.5.0-pre.34]" />
Expand Down
2 changes: 1 addition & 1 deletion tools/builder/targets/Test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ public static Task OnExecute(BuildContext context)
);


return context.Exec(context.ConsoleRunner, $"{string.Join(" ", testDLLs)} -xml {Path.Join(context.TestOutputFolder, "netfx.xml")}");
return context.Exec(context.ConsoleRunner, $"{string.Join(" ", testDLLs)} -xml {Path.Join(context.TestOutputFolder, "results.xml")}");
}
}

0 comments on commit 6455d4a

Please sign in to comment.