Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 575 Bytes

File metadata and controls

16 lines (13 loc) · 575 Bytes

Contributing

Release

  1. Update version in CHANGELOG.md and add notes
    1. If possible link the pull request of the changes and mention the author of the pull request
  2. Update src/Directory.Build.props
  3. Create new commit
    1. git add CHANGELOG.md src/Directory.Build.props
    2. git commit -m "changelog for v0.45.0"
  4. Make a new version tag (for example, v0.45.0)
    1. git tag v0.45.0
  5. Push changes to the repo.
    1. git push --atomic [remote] main v0.45.0
      • Replace [remote] with your remote name, usually origin or upstream