mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
398 B
9 lines
398 B
#!/usr/bin/env pwsh |
|
# Build ILSpy.sln. Defaults to Debug; pass -Configuration Release for a release build. |
|
# Extra arguments are forwarded to `dotnet build` (e.g. ./build.ps1 -Configuration Release --no-restore). |
|
param( |
|
[ValidateSet('Debug', 'Release')] |
|
[string]$Configuration = 'Debug' |
|
) |
|
$ErrorActionPreference = 'Stop' |
|
dotnet build ILSpy.sln -c $Configuration "-p:Platform=Any CPU" @args
|
|
|