From cdca2fad32e7cdfc51d2eae1ebcd7db9c068b294 Mon Sep 17 00:00:00 2001 From: "John L. Armstrong IV" <20903247+jlarmstrongiv@users.noreply.github.com> Date: Sun, 14 Jul 2024 20:51:42 -0600 Subject: [PATCH] fix: version flag --- CONTRIBUTING.md | 11 +---------- build.sh | 2 ++ bunny-sdk.csproj | 2 ++ 3 files changed, 5 insertions(+), 10 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 251de87..8e91a17 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,16 +6,7 @@ - `dotnet build` (only if testing locally) -- Build [runtime ids](https://learn.microsoft.com/en-us/dotnet/core/rid-catalog) with `./build.sh` - - - `dotnet publish --runtime osx-arm64` - - `dotnet publish --runtime osx-x64` - - `dotnet publish --runtime linux-arm64` - - `dotnet publish --runtime linux-x64` - - `dotnet publish --runtime win-arm64` - - `dotnet publish --runtime win-x64` - - `dotnet publish --runtime win-x86` - +- Increment version in `bunny-sdk.csproj` - `./build.sh` - `git add -A` - `git commit -m "message"` diff --git a/build.sh b/build.sh index 2af5f59..2bc2f20 100755 --- a/build.sh +++ b/build.sh @@ -3,6 +3,8 @@ set -euo pipefail rm -rf ./bin ./obj +# runtime ids https://learn.microsoft.com/en-us/dotnet/core/rid-catalog + dotnet publish --runtime osx-arm64 dotnet publish --runtime osx-x64 dotnet publish --runtime linux-arm64 diff --git a/bunny-sdk.csproj b/bunny-sdk.csproj index 892efdc..6274636 100644 --- a/bunny-sdk.csproj +++ b/bunny-sdk.csproj @@ -1,6 +1,8 @@  + 0.0.2 + false Exe net8.0 true