BootstrapAdmin/appveyor.build.ps1

7 lines
227 B
PowerShell
Raw Normal View History

2019-09-02 23:13:57 +08:00
function runCmd ($cmd) {
write-host $cmd -ForegroundColor Cyan
cmd.exe /c $cmd
}
2019-09-02 23:13:57 +08:00
runCmd "dotnet build src\admin\Bootstrap.Admin"
runCmd "dotnet publish src\admin\Bootstrap.Admin --configuration Release --no-restore"