mirror of
https://gitee.com/LongbowEnterprise/BootstrapBlazor.git
synced 2024-12-05 05:29:47 +08:00
7 lines
230 B
PowerShell
7 lines
230 B
PowerShell
function runCmd ($cmd) {
|
|
write-host $cmd -ForegroundColor Cyan
|
|
cmd.exe /c $cmd
|
|
}
|
|
runCmd "dotnet build src\BootstrapBlazor.Server --configuration Release"
|
|
runCmd "dotnet pack src\BootstrapBlazor --configuration Release"
|