From 0fa3e8a425f90a8fca241008dd2f667355885232 Mon Sep 17 00:00:00 2001 From: Tuomas Hietanen Date: Tue, 24 Sep 2024 09:45:30 +0100 Subject: [PATCH] build path fix --- build.fsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.fsx b/build.fsx index fa478f00b0e..c3f76346c9c 100644 --- a/build.fsx +++ b/build.fsx @@ -656,7 +656,7 @@ Target.create "DotNetCoreIntegrationTests" (fun _ -> runExpecto root - "src/test/Fake.Core.IntegrationTests/bin/Release/net8.0/Fake.Core.IntegrationTests.dll" + "src/test/Fake.Core.IntegrationTests/bin/Release/net6.0/Fake.Core.IntegrationTests.dll" "Fake_Core_IntegrationTests.TestResults.xml") Target.create "TemplateIntegrationTests" (fun _ -> @@ -664,7 +664,7 @@ Target.create "TemplateIntegrationTests" (fun _ -> runExpecto targetDir - "bin/Release/net8.0/Fake.DotNet.Cli.IntegrationTests.dll" + "bin/Release/net6.0/Fake.DotNet.Cli.IntegrationTests.dll" "Fake_DotNet_Cli_IntegrationTests.TestResults.xml" Shell.rm_rf (root "test"))