Skip to content

Commit

Permalink
Added netcore projects to restore list.
Browse files Browse the repository at this point in the history
  • Loading branch information
Haplois committed Oct 23, 2020
1 parent 4d647f0 commit 50217a2
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions scripts/Build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,26 @@ $TFB_Full = $Full
$TFB_Official = $Official
$TFB_UpdateXlf = $UpdateXlf
$TFB_IsLocalizedBuild = $IsLocalizedBuild -or $TFB_Official
$TFB_Solutions = @("TestFx.sln")
$TFB_NetCoreProjects =@("src\Adapter\PlatformServices.NetCore\PlatformServices.NetCore.csproj",
"test\UnitTests\PlatformServices.NetCore.Unit.Tests\PlatformServices.NetCore.Unit.Tests.csproj")

$TFB_Solutions = @(
"TestFx.sln"
)

$TFB_NetCoreProjects =@(
"src\Adapter\PlatformServices.NetCore\PlatformServices.NetCore.csproj"

"test\ComponentTests\TestAssets\TestProjectForAssemblyResolution\TestProjectForAssemblyResolution.csproj"
"test\E2ETests\TestAssets\CompatTestProject\CompatTestProject.csproj"
"test\E2ETests\TestAssets\DataRowTestProject\DataRowTestProject.csproj"
"test\E2ETests\TestAssets\DataSourceTestProject\DataSourceTestProject.csproj"
"test\E2ETests\TestAssets\DeploymentTestProject\DeploymentTestProject.csproj"
"test\E2ETests\TestAssets\DeploymentTestProjectNetCore\DeploymentTestProjectNetCore.csproj"
"test\E2ETests\TestAssets\DoNotParallelizeTestProject\DoNotParallelizeTestProject.csproj"
"test\E2ETests\TestAssets\FSharpTestProject\FSharpTestProject.fsproj"
"test\E2ETests\TestAssets\TimeoutTestProject\TimeoutTestProject.csproj"
"test\E2ETests\TestAssets\TimeoutTestProjectNetCore\TimeoutTestProjectNetCore.csproj"
"test\UnitTests\PlatformServices.NetCore.Unit.Tests\PlatformServices.NetCore.Unit.Tests.csproj"
)

#
# Script Preferences
Expand Down

0 comments on commit 50217a2

Please sign in to comment.