zcsizmadia edited a comment on pull request #1570: URL: https://github.com/apache/avro/pull/1570#issuecomment-1052545753
@martin-g @RyanSkraba This is a proposed way to simplify the release process for the C#. Step #9 in https://cwiki.apache.org/confluence/display/AVRO/How+To+Release#HowToRelease-Publishing could be reduced to the following if running from the ../lang/csharp folder: ``` NUGET_KEY="YOUR_KEY" ./build.sh release ``` This step requires that `./build.sh release` was executed earlier. That requirement can be eliminated by running `dotnet pack --configuration Release Avro.sln` as the first thing in `release`, however the `dist` step might be already done at the time when `release` is happening. Other languages might follow this pattern so the release step would become a series of `./build.sh release` from all language. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
