Skip to content

Commit

Permalink
Inital code commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Epicminer256 committed Jul 8, 2023
1 parent 296cbe2 commit 463149a
Show file tree
Hide file tree
Showing 7 changed files with 547 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
publish
obj
bin
21 changes: 21 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
dotnet = dotnet
distributable_runtime = --self-contained true --runtime win-x86 --configuration Release
single_file = -p:PublishSingleFile=true

all: build clean-build

build: Program.cs
@echo "Building with built-in runtime..."
@${dotnet} publish ${single_file} ${distributable_runtime} -o publish .

clean-build:
@rm -r bin || true
@rm -r obj || true
@rm publish/*.dll || true
@rm publish/*.pdb || true

clean:
@echo "Cleaning..."
@rm -r publish || true
@rm -r bin || true
@rm -r obj || true
Loading

0 comments on commit 463149a

Please sign in to comment.