1
0
mirror of https://github.com/bitwarden/server synced 2026-01-06 18:43:36 +00:00

azure build scripts

This commit is contained in:
Kyle Spearrin
2019-07-24 21:59:14 -04:00
parent 48fd3062b6
commit a0da6b3886
4 changed files with 51 additions and 0 deletions

12
src/Billing/build.ps1 Normal file
View File

@@ -0,0 +1,12 @@
$dir = Split-Path -Parent $MyInvocation.MyCommand.Path
echo "`n## Building Billing"
echo "`nBuilding app"
echo ".NET Core version $(dotnet --version)"
echo "Restore"
dotnet restore $dir\Billing.csproj
echo "Clean"
dotnet clean $dir\Billing.csproj -c "Release" -o $dir\obj\Azure\publish
echo "Publish"
dotnet publish $dir\Billing.csproj -c "Release" -o $dir\obj\Azure\publish