1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 15:42:48 -05:00

Update output directory for dotnet builds (#1358)

* Update output directory for dotnet builds

* Update Dotnet build output path
This commit is contained in:
Vince Grassia
2021-05-27 12:16:12 -04:00
committed by GitHub
parent fffdd17915
commit 21003c61ab
34 changed files with 56 additions and 59 deletions

View File

@ -10,9 +10,9 @@ echo ".NET Core version $(dotnet --version)"
echo "Restore"
dotnet restore "$DIR/Server.csproj"
echo "Clean"
dotnet clean "$DIR/Server.csproj" -c "Release" -o "$DIR/obj/Docker/publish"
dotnet clean "$DIR/Server.csproj" -c "Release" -o "$DIR/obj/build-output/publish"
echo "Publish"
dotnet publish "$DIR/Server.csproj" -c "Release" -o "$DIR/obj/Docker/publish"
dotnet publish "$DIR/Server.csproj" -c "Release" -o "$DIR/obj/build-output/publish"
echo -e "\nBuilding docker image"
docker --version