Skip to content

Commit

Permalink
create build scripts for windows/unix
Browse files Browse the repository at this point in the history
  • Loading branch information
Olivier Thornton committed Jan 24, 2023
1 parent 01606d2 commit 5888597
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dotnet publish -r win-x64 -o Release/win-x64
dotnet publish -r linux-x64 -o Release/linux-x64
dotnet publish -r osx-x64 -o Release/osx-x64
dotnet publish -r osx-arm64 -o Release/osx-arm64
4 changes: 4 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
dotnet publish -r win-x64 -o Release/win-x64
dotnet publish -r linux-x64 -o Release/linux-x64
dotnet publish -r osx-x64 -o Release/osx-x64
dotnet publish -r osx-arm64 -o Release/osx-arm64

0 comments on commit 5888597

Please sign in to comment.