Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eng/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ param (
[switch]$sourceBuild = $false,
[switch]$oop64bit = $true,
[switch]$lspEditor = $false,
[string]$solution = "Roslyn.sln",

# official build settings
[string]$officialBuildId = "",
Expand Down Expand Up @@ -112,6 +113,7 @@ function Print-Usage() {
Write-Host " -useGlobalNuGetCache Use global NuGet cache."
Write-Host " -warnAsError Treat all warnings as errors"
Write-Host " -sourceBuild Simulate building source-build"
Write-Host " -solution Solution to build (default is Roslyn.sln)"
Write-Host ""
Write-Host "Official build settings:"
Write-Host " -officialBuildId An official build id, e.g. 20190102.3"
Expand Down Expand Up @@ -230,8 +232,6 @@ function RestoreInternalTooling() {
}

function BuildSolution() {
$solution = "Roslyn.sln"

Write-Host "$($solution):"

$bl = ""
Expand Down
2 changes: 1 addition & 1 deletion eng/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ usage()
echo " --prepareMachine Prepare machine for CI run, clean up processes after build"
echo " --warnAsError Treat all warnings as errors"
echo " --sourceBuild Simulate building for source-build"
echo " --solution Soluton to build (Default is Compilers.slnf)"
echo " --solution Solution to build (default is Compilers.slnf)"
echo ""
echo "Command line arguments starting with '/p:' are passed through to MSBuild."
}
Expand Down