Skip to content

Commit 9b24b87

Browse files
Numpsyxperiandri
authored andcommitted
Remove some hard coded path separatoes from build.fsx
Just a tiny bit more if the .NET 8 update PR broken out
1 parent 7cb7869 commit 9b24b87

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.fsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,7 @@ Target.create "DotNetCoreIntegrationTests" (fun _ ->
660660

661661
runExpecto
662662
root
663-
"src/test/Fake.Core.IntegrationTests/bin/Release/net6.0/Fake.Core.IntegrationTests.dll"
663+
("src" </> "test" </> "Fake.Core.IntegrationTests" </> "bin" </> "Release" </> "net6.0" </> "Fake.Core.IntegrationTests.dll")
664664
"Fake_Core_IntegrationTests.TestResults.xml")
665665

666666
Target.create "TemplateIntegrationTests" (fun _ ->
@@ -676,13 +676,13 @@ Target.create "DotNetCoreUnitTests" (fun _ ->
676676
// dotnet run -p src/test/Fake.Core.UnitTests/Fake.Core.UnitTests.fsproj
677677
runExpecto
678678
root
679-
"src/test/Fake.Core.UnitTests/bin/Release/net6.0/Fake.Core.UnitTests.dll"
679+
("src" </> "test" </> "Fake.Core.UnitTests" </> "bin" </> "Release" </> "net6.0" </> "Fake.Core.UnitTests.dll")
680680
"Fake_Core_UnitTests.TestResults.xml"
681681

682682
// dotnet run --project src/test/Fake.Core.CommandLine.UnitTests/Fake.Core.CommandLine.UnitTests.fsproj
683683
runExpecto
684684
root
685-
"src/test/Fake.Core.CommandLine.UnitTests/bin/Release/net6.0/Fake.Core.CommandLine.UnitTests.dll"
685+
("src" </> "test" </> "Fake.Core.CommandLine.UnitTests" </> "bin" </> "Release" </> "net6.0" </> "Fake.Core.CommandLine.UnitTests.dll")
686686
"Fake_Core_CommandLine_UnitTests.TestResults.xml")
687687

688688
// ----------------------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)