Thanks for contributing! Before that, please read this guide.
Please agree that the source code you provided for this project will be licensed as described in the LICENSE file as same as other code.
If you want me to add new features or find bugs, please post it to GitHub Issues. Before making Issue, to avoid duplication, please make sure there are no same issues. If exists, upvote it by using reactions or comments.
- Japanese document:
/docs/ja
- English document:
/docs/
DotFeather uses AppVeyor to automatic deployment. Its configuration is in /appveyor.yml
.
Basically I compliant C# Coding Conventions (Official). Moreover, follow the rules below:
- Use 4-character tabs for indentation
- DON'T make fields
public
- Define members of classes and structs the following orders:
- Properties
- Constructor(s)
- If have many ones, arrange in ascending order of arguments.
- Methods
- Overridden Methods
- Fields
- Nested classes, structs and interfaces
- Delegates
- If you overload methods, locate them adjacently.
- Define an entrypoint method in a dedicated
static
class. - Make string-variables non-null, and initialize them with empty string.
DotFeather API is designed to be backend (such as Silk.NET) independent.
Do not use the type in the backend for arguments or return value of the newly added API.
However, it is allowed to be used internally or for private or internal members.
This project is always deployed by @Xeltica, a main developer. So this note is for forked projects' maintainers.
- Make sure latest changes can be built and there is no wrong behaviors in sample code.
- Commit latest to master
- Rewrite version number at DotFeather/DotFeather.nuspec
- Rewrite version number at appveyor.yml
- Commit changes of 3. and 4.
- Add a tag named as version number to the commit.
- Push it
- 🙏