How to Contribute
The following is a set of guidelines for contributing to Ant Design Blazor. Please spend several minutes in reading these guidelines before you create an issue or pull request.
Code of Conduct
We have adopted a Code of Conduct that we expect project participants to adhere to. Please read the full text so that you can understand what actions will and will not be tolerated.
Open Development
All work on ant-design-blazor happens directly on GitHub. Both core team members and external contributors send pull requests which go through the same review process.
Bugs
We are using GitHub Issues for bug tracing. The best way to get your bug fixed is using our issue helper.
Before you reporting a bug, please make sure you've searched exists issues, and read our FAQ.
Proposing a Change
If you intend to change the public API or introduce new feature, we also recommend use our issue helper to create a feature request issue.
Your First Pull Request
Working on your first Pull Request? You can learn how from these resources:
To help you get your feet wet and get you familiar with our contribution process, we have a list of Good First Issue that contain bugs or small features that have a relatively limited scope. This is a great place to get started.
If you decide to fix an issue, please be sure to check the comment thread in case somebody is already working on a fix. If nobody is working on it at the moment, please leave a comment stating that you intend to work on it so other people don’t accidentally duplicate your effort.
If somebody claims an issue but doesn’t follow up for more than two weeks, it’s fine to take over it but you should still leave a comment.
Contribute
The core team is monitoring for pull requests. We will review your pull request and either merge it, request changes to it, or close it with an explanation.
Before submitting a pull request, please make sure the followings are done:
- Run
dotnet build
in the repository root. - If you’ve fixed a bug or added code that should be tested, add tests!
- Make sure the test suite passes (
dotnet test
). - Make sure your code lints (
dotnet build
). - Make sure rebase your code to keep the history clean.
- Make sure your commit message meet the guidelines
How to send a Pull Request
- fork the repo of
ant-design-blazor
- On
master
:git remote add upstream https://github.com/ant-design-blazor/ant-design-blazor.git
- On
master
:git pull upstream master
- On
master
:git push origin master
- Checkout the feature branch (for example if the branch is called
docs-fix
):git checkout docs-fix
- On
docs-fix
I rebase:git rebase origin/master
- On
docs-fix
change the code and commit:git commit -a
, you need to follow the commit message guidelines - Then, push up:
git push
(might need-f
, just be sure you understand force pushing before you do it) - Send Pull Request in the Github
Development Workflow
After cloning ant-design-blazor
and running npm install
to fetch its dependencies, you can run the following commands:
dotnet run
runs ant-design-blazor website locally.dotnet build
checks the code style.dotnet test
runs the complete test suite.dotnet publish -c release -o publish
creates build ofant-design-blazor
.
If you running into problems while developing ant-design-blazor, you can refer to our developement guide on GitHub.