mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 10:47:28 +08:00
27 lines
936 B
PowerShell
27 lines
936 B
PowerShell
[CmdletBinding()]
|
|
Param(
|
|
[string]$Target,
|
|
[string]$Configuration,
|
|
[ValidateSet("Quiet", "Minimal", "Normal", "Verbose", "Diagnostic")]
|
|
[string]$Verbosity,
|
|
[switch]$ShowDescription,
|
|
[Alias("WhatIf", "Noop")]
|
|
[switch]$DryRun,
|
|
[Parameter(Position = 0, Mandatory = $false, ValueFromRemainingArguments = $true)]
|
|
[string[]]$ScriptArgs
|
|
)
|
|
|
|
# Build Cake arguments
|
|
$cakeArguments = "";
|
|
if ($Target) { $cakeArguments += "-target=$Target" }
|
|
if ($Configuration) { $cakeArguments += "-configuration=$Configuration" }
|
|
if ($Verbosity) { $cakeArguments += "-verbosity=$Verbosity" }
|
|
if ($ShowDescription) { $cakeArguments += "-showdescription" }
|
|
if ($DryRun) { $cakeArguments += "-dryrun" }
|
|
if ($Experimental) { $cakeArguments += "-experimental" }
|
|
$cakeArguments += $ScriptArgs
|
|
|
|
dotnet tool restore
|
|
dotnet cake ./build/InspectCode.cake --bootstrap
|
|
dotnet cake ./build/InspectCode.cake $cakeArguments
|
|
exit $LASTEXITCODE |