You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
function runCmd ($cmd) {
|
|
write-host $cmd -ForegroundColor Cyan
|
|
cmd.exe /c $cmd
|
|
}
|
|
runCmd "dotnet build src\BootstrapBlazor.WebConsole --configuration Release"
|
|
runCmd "dotnet pack src\BootstrapBlazor --configuration Release"
|