Thank you for considering contributing to CentralConfigGenerator! This document outlines the process for contributing to the project and how to get started.
By participating in this project, you agree to uphold our Code of Conduct, which expects all participants to be respectful, considerate, and constructive in their interactions.
If you find a bug, please create an issue in the GitHub repository with the following information:
- A clear and descriptive title
- Detailed steps to reproduce the issue
- Expected behavior
- Actual behavior
- Screenshots (if applicable)
- Environment information (OS, .NET version, etc.)
If you have an idea for a new feature or improvement, please create an issue with:
- A clear and descriptive title
- A detailed description of the proposed feature
- Any relevant examples or use cases
- If possible, an outline of how the feature might be implemented
We welcome pull requests! Here's how to submit one:
- Fork the repository
- Create a new branch from
mainwith a descriptive name:orgit checkout -b feature/your-feature-namegit checkout -b fix/issue-you-are-fixing - Make your changes
- Add or update tests as necessary
- Ensure all tests pass
- Update documentation if needed
- Push your branch to your fork
- Open a pull request against the
mainbranch
- Install the latest .NET SDK
- Clone the repository:
git clone https://github.com/TarasKovalenko/CentralConfigGenerator.git cd CentralConfigGenerator - Build the project:
dotnet build - Run the tests:
dotnet test
- Follow the established coding style in the project
- Write clear, meaningful commit messages
- Include XML documentation comments for public APIs
- Maintain existing test coverage and add tests for new functionality
- Use meaningful variable and method names that reflect their purpose
This project follows Semantic Versioning. When suggesting changes, consider whether they are:
- PATCH (1.0.x) - Bug fixes and minor changes that don't affect the API
- MINOR (1.x.0) - New features that don't break backward compatibility
- MAJOR (x.0.0) - Changes that break backward compatibility
When adding new features or changing existing functionality, please update the documentation:
- Update the README.md if necessary
- Add or update XML documentation comments for public APIs
- Update or add examples if relevant
- Write unit tests for new functionality using the project's chosen testing framework
- Ensure all tests pass before submitting your pull request
- Try to maintain or improve the existing test coverage
Your feedback is valuable! If you have any questions or suggestions about the contribution process, please open an issue to discuss it.
Thank you for helping improve CentralConfigGenerator!