- Windows 10 pro
- Docker for Windows
- Visual Studio 2017
- .NET framework 3.5
Set Powershell execution policy to RemoteSigned. You can check this by running
Get-ExecutionPolicy
This should return
RemoteSigned
If not you will need to launch Powershell with "Run as administrator" option and then run
Set-ExecutionPolicy RemoteSigned
.\build.ps1 -Target Build
.\build.ps1 -Target Test
See the README
- Fork the notifier on github
- Commit and push until you are happy with your contribution
- Run the tests and ensure they all pass
- Submit a pull request
- Thank you!
If you're a member of the core team, follow these instructions for releasing bugsnag-dotnet.
-
Compile new features, enhancements, and fixes into the CHANGELOG.
-
Update the project version using semantic versioning. Specifically:
Given a version number MAJOR.MINOR.PATCH, increment the:
- MAJOR version when you make incompatible API changes,
- MINOR version when you add functionality in a backwards-compatible manner, and
- PATCH version when you make backwards-compatible bug fixes.
Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.
-
Commit and push your changes
-
Add a git tag with the new version of the library