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