Skip to content
This repository has been archived by the owner on Nov 25, 2024. It is now read-only.

Commit

Permalink
Update makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver-makes-code committed Dec 1, 2023
1 parent 2492847 commit 53a4481
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,7 @@ build_assetbuilder:
dotnet build AssetBuilder

run_assetbuilder: build_assetbuilder
cd AssetBuilder/bin/Debug/net7.0; \
dotnet AssetBuilder.dll
cd AssetBuilder/bin/Debug/net7.0 && dotnet AssetBuilder.dll

build_debug:
dotnet build Client
Expand All @@ -16,9 +15,7 @@ build_release:
dotnet build Client --configuration Release

run_debug: build_debug
cd Client/bin/Debug/net7.0; \
dotnet Client.dll
cd Client/bin/Debug/net7.0 && dotnet Client.dll

run_release: build_release
cd Client/bin/Release/net7.0; \
dotnet Client.dll
cd Client/bin/Release/net7.0 && dotnet Client.dll

0 comments on commit 53a4481

Please sign in to comment.