added faster way to start the api

This commit is contained in:
caesarakalaeii 2023-08-14 00:18:31 +02:00
parent ea0f43629c
commit 253b903f05
1 changed files with 12 additions and 0 deletions

12
start_api.bat Normal file
View File

@ -0,0 +1,12 @@
git fetch
git pull
dotnet restore "CommunityServerAPI.csproj"
dotnet build "CommunityServerAPI.csproj" --no-restore -c Release -o /app
dotnet publish "CommunityServerAPI.csproj" -c Release -o /app
dotnet run