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
{{ message }}
This repository was archived by the owner on Dec 23, 2024. It is now read-only.
<RepositoryCommitCondition="'$(RepositoryCommit)' == '' AND '$(_RefPath)' != '' and Exists('$(_RefPath)')">$([System.IO.File]::ReadAllText('$(_RefPath)').Trim())</RepositoryCommit>
Write-Host" -prepareMachine Prepare machine for CI run, clean up processes after build"
109
110
Write-Host" -useGlobalNuGetCache Use global NuGet cache."
110
111
Write-Host" -noVisualStudio Only build fsc and fsi as .NET Core applications. No Visual Studio required. '-configuration', '-verbosity', '-norestore', '-rebuild' are supported."
112
+
Write-Host" -sourceBuild Simulate building for source-build."
111
113
Write-Host""
112
114
Write-Host"Command line arguments starting with '/p:' are passed through to MSBuild."
113
115
}
@@ -154,10 +156,11 @@ function Process-Arguments() {
154
156
$script:pack=$True;
155
157
}
156
158
159
+
if ($sourceBuild) {
160
+
$script:testpack=$False;
161
+
}
162
+
157
163
foreach ($propertyin$properties) {
158
-
if ($property.StartsWith("/p:DotNetBuildFromSource=true","InvariantCultureIgnoreCase")) {
159
-
$script:testpack=$False;
160
-
}
161
164
if (!$property.StartsWith("/p:","InvariantCultureIgnoreCase")) {
0 commit comments