Skip to content

Commit 6368265

Browse files
Copy/paste bug
1 parent af5779c commit 6368265

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

eng/Build.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ try {
588588
TestUsingMSBuild -testProject "$RepoRoot\tests\FSharp.Compiler.Private.Scripting.UnitTests\FSharp.Compiler.Private.Scripting.UnitTests.fsproj" -targetFramework $script:coreclrTargetFramework -testadapterpath "$ArtifactsDir\bin\FSharp.Compiler.Private.Scripting.UnitTests\"
589589
TestUsingMSBuild -testProject "$RepoRoot\tests\FSharp.Build.UnitTests\FSharp.Build.UnitTests.fsproj" -targetFramework $script:coreclrTargetFramework -testadapterpath "$ArtifactsDir\bin\FSharp.Build.UnitTests\"
590590
TestUsingMSBuild -testProject "$RepoRoot\tests\FSharp.Core.UnitTests\FSharp.Core.UnitTests.fsproj" -targetFramework $script:coreclrTargetFramework -testadapterpath "$ArtifactsDir\bin\FSharp.Core.UnitTests\"
591-
TestUsingMSBuild -testProject "$RepoRoot\tests\FSharp.Core.UnitTests.CSharp\FSharp.Core.UnitTests.CSharp.fsproj" -targetFramework $script:coreclrTargetFramework -testadapterpath "$ArtifactsDir\bin\FSharp.Core.UnitTests.CSharp\"
591+
TestUsingMSBuild -testProject "$RepoRoot\tests\FSharp.Core.UnitTests.CSharp\FSharp.Core.UnitTests.CSharp.csproj" -targetFramework $script:coreclrTargetFramework -testadapterpath "$ArtifactsDir\bin\FSharp.Core.UnitTests.CSharp\"
592592

593593
# Collect output from background jobs
594594
Wait-job $bgJob | out-null
@@ -603,7 +603,7 @@ try {
603603
TestUsingMSBuild -testProject "$RepoRoot\tests\FSharp.Compiler.Private.Scripting.UnitTests\FSharp.Compiler.Private.Scripting.UnitTests.fsproj" -targetFramework $script:desktopTargetFramework -testadapterpath "$ArtifactsDir\bin\FSharp.Compiler.Private.Scripting.UnitTests\"
604604
TestUsingMSBuild -testProject "$RepoRoot\tests\FSharp.Build.UnitTests\FSharp.Build.UnitTests.fsproj" -targetFramework $script:desktopTargetFramework -testadapterpath "$ArtifactsDir\bin\FSharp.Build.UnitTests\"
605605
TestUsingMSBuild -testProject "$RepoRoot\tests\FSharp.Core.UnitTests\FSharp.Core.UnitTests.fsproj" -targetFramework $script:desktopTargetFramework -testadapterpath "$ArtifactsDir\bin\FSharp.Core.UnitTests\"
606-
TestUsingMSBuild -testProject "$RepoRoot\tests\FSharp.Core.UnitTests.CSharp\FSharp.Core.UnitTests.CSharp.fsproj" -targetFramework $script:desktopTargetFramework -testadapterpath "$ArtifactsDir\bin\FSharp.Core.UnitTests.CSharp\"
606+
TestUsingMSBuild -testProject "$RepoRoot\tests\FSharp.Core.UnitTests.CSharp\FSharp.Core.UnitTests.CSharp.csproj" -targetFramework $script:desktopTargetFramework -testadapterpath "$ArtifactsDir\bin\FSharp.Core.UnitTests.CSharp\"
607607

608608
# Collect output from background jobs
609609
Wait-job $bgJob | out-null
@@ -640,8 +640,8 @@ try {
640640
if ($testFSharpCore) {
641641
TestUsingMSBuild -testProject "$RepoRoot\tests\FSharp.Core.UnitTests\FSharp.Core.UnitTests.fsproj" -targetFramework $script:coreclrTargetFramework -testadapterpath "$ArtifactsDir\bin\FSharp.Core.UnitTests\"
642642
TestUsingMSBuild -testProject "$RepoRoot\tests\FSharp.Core.UnitTests\FSharp.Core.UnitTests.fsproj" -targetFramework $script:desktopTargetFramework -testadapterpath "$ArtifactsDir\bin\FSharp.Core.UnitTests\"
643-
TestUsingMSBuild -testProject "$RepoRoot\tests\FSharp.Core.UnitTests.CSharp\FSharp.Core.UnitTests.CSharp.fsproj" -targetFramework $script:coreclrTargetFramework -testadapterpath "$ArtifactsDir\bin\FSharp.Core.UnitTests.CSharp\"
644-
TestUsingMSBuild -testProject "$RepoRoot\tests\FSharp.Core.UnitTests.CSharp\FSharp.Core.UnitTests.CSharp.fsproj" -targetFramework $script:desktopTargetFramework -testadapterpath "$ArtifactsDir\bin\FSharp.Core.UnitTests.CSharp\"
643+
TestUsingMSBuild -testProject "$RepoRoot\tests\FSharp.Core.UnitTests.CSharp\FSharp.Core.UnitTests.CSharp.csproj" -targetFramework $script:coreclrTargetFramework -testadapterpath "$ArtifactsDir\bin\FSharp.Core.UnitTests.CSharp\"
644+
TestUsingMSBuild -testProject "$RepoRoot\tests\FSharp.Core.UnitTests.CSharp\FSharp.Core.UnitTests.CSharp.csproj" -targetFramework $script:desktopTargetFramework -testadapterpath "$ArtifactsDir\bin\FSharp.Core.UnitTests.CSharp\"
645645
}
646646

647647
if ($testCompiler) {

eng/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ if [[ "$test_core_clr" == true ]]; then
324324
Test --testproject "$repo_root/tests/FSharp.Compiler.Private.Scripting.UnitTests/FSharp.Compiler.Private.Scripting.UnitTests.fsproj" --targetframework $coreclrtestframework
325325
Test --testproject "$repo_root/tests/FSharp.Build.UnitTests/FSharp.Build.UnitTests.fsproj" --targetframework $coreclrtestframework
326326
Test --testproject "$repo_root/tests/FSharp.Core.UnitTests/FSharp.Core.UnitTests.fsproj" --targetframework $coreclrtestframework
327-
Test --testproject "$repo_root/tests/FSharp.Core.UnitTests.CSharp/FSharp.Core.UnitTests.CSharp.fsproj" --targetframework $coreclrtestframework
327+
Test --testproject "$repo_root/tests/FSharp.Core.UnitTests.CSharp/FSharp.Core.UnitTests.CSharp.csproj" --targetframework $coreclrtestframework
328328
fi
329329

330330
if [[ "$test_compilercomponent_tests" == true ]]; then

0 commit comments

Comments
 (0)