Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
RudraSwat authored Jun 21, 2020
1 parent 62d2e6d commit d328b63
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
net = dotnet

publish:
mkdir -p out out/publish
$(net) publish -r linux-x64 -p:PublishSingleFile=true -c Release --output ./out/publish

run:
$(net) run

build:
$(net) publish -r linux-x64 -p:PublishSingleFile=true -c Debug --output ./out/build
mkdir -p out out/build
$(net) publish -r linux-x64 -p:PublishSingleFile=true -c Debug --output ./out/build

0 comments on commit d328b63

Please sign in to comment.