This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repositories using our CLA.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.
- Ensure the README.md and any documentation are up-to-date with details of changes made. This will help maintain the accuracy of the documentation to the current state of the code.
- Increment the semantic version number and date in the Version.props file if necessary. The CLR Instrumentation Engine follows the semantic versioning scheme.
- Submit your Pull Requests and notify [email protected]. We will initiate the Pull Request validation build if we have no concerns with your changes.
- Once at least two approvals are given for the PR, you may merge your changes.
Active development is happening in main
branch.
Last released version is in release
branch.
- Build solution in both
Release
andDebug
configurations (see Building locally section) - Create a Pull Request against the
main
branch and add [email protected] as a reviewer
Apis are contributed via midl (in the form of .idl files), which is not available for Linux, so all midl builds must be executed on Windows only. In order to make changes to InstrumentationEngine Api, do the following:
- Make edits to the .idl file in InstrumentationEngine.Api
- Build the InstrumentationEngine.Api project manually for either x86 or x64. The output is the same either way.
- Stage and commit changes to InstrumentationEngine.idl, InstrumentationEngine.h, and InstrumentationEngine_api.cpp
- Ensure that native projects build correctly in x86 and x64
- Submit a PR as normal.