From 6455d4ac7d5ef615c3ed55d3b587548fba41d691 Mon Sep 17 00:00:00 2001 From: Brad Wilson Date: Fri, 1 Nov 2024 19:13:29 -0700 Subject: [PATCH] Fix package download issue in CI? --- src/xunit.analyzers.tests/xunit.analyzers.tests.csproj | 2 ++ tools/builder/targets/Test.cs | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/xunit.analyzers.tests/xunit.analyzers.tests.csproj b/src/xunit.analyzers.tests/xunit.analyzers.tests.csproj index 992f23d0..8303312f 100644 --- a/src/xunit.analyzers.tests/xunit.analyzers.tests.csproj +++ b/src/xunit.analyzers.tests/xunit.analyzers.tests.csproj @@ -19,6 +19,8 @@ + + diff --git a/tools/builder/targets/Test.cs b/tools/builder/targets/Test.cs index 6ee97b9c..f9dd7499 100644 --- a/tools/builder/targets/Test.cs +++ b/tools/builder/targets/Test.cs @@ -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")}"); } }