You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: eng/Build.ps1
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,7 @@ param (
45
45
[switch]$deployExtensions,
46
46
[switch]$prepareMachine,
47
47
[switch]$useGlobalNuGetCache=$true,
48
+
[switch]$dontUseGlobalNuGetCache=$false,
48
49
[switch]$warnAsError=$true,
49
50
[switch][Alias('test')]$testDesktop,
50
51
[switch]$testCoreClr,
@@ -113,7 +114,7 @@ function Print-Usage() {
113
114
Write-Host" -msbuildEngine <value> Msbuild engine to use to run build ('dotnet', 'vs', or unspecified)."
114
115
Write-Host" -procdump Monitor test runs with procdump"
115
116
Write-Host" -prepareMachine Prepare machine for CI run, clean up processes after build"
116
-
Write-Host" -useGlobalNuGetCache Use global NuGet cache."
117
+
Write-Host" -dontUseGlobalNuGetCacheDo not use the global NuGet cache"
117
118
Write-Host" -noVisualStudio Only build fsc and fsi as .NET Core applications. No Visual Studio required. '-configuration', '-verbosity', '-norestore', '-rebuild' are supported."
118
119
Write-Host" -sourceBuild Simulate building for source-build."
119
120
Write-Host" -skipbuild Skip building product"
@@ -131,6 +132,10 @@ function Process-Arguments() {
0 commit comments