Skip to content

Latest commit

 

History

History
42 lines (24 loc) · 2.42 KB

CONTRIBUTING.md

File metadata and controls

42 lines (24 loc) · 2.42 KB

How to contribute

First of all, thank you for wanting to contribute to CUITe! Support from the community is what makes open source such a wonderful thing.

We want to keep it as easy as possible to contribute changes that get things working in your environment. There are a few guidelines that we need contributors to follow so that we have a chance of keeping on top of things.

Reporting issues

A great way to contribute to the project is to send a detailed report when you encounter an issue. We always appreciate a well-written, thorough bug report, and will thank you for it!

Check that your issue isn't already submitted. If you find a match, please add a comment. Doing this helps prioritize the most common problems and requests.

Making changes

All contribution is welcome. Did you find a typo? Found a bug and know how to fix it? Want to implement a new awesome feature? Do it! We will appreciate it. Any significant improvement should be documented as a GitHub issue before anybody starts working on it. This allows us to help and guide you on your way.

For the unexperienced GitHub developer, GitHub Collaborating contains information about forking and syncing while GitHub Flow describes the preferred way of working with branches.

Development prerequisites

To successfully build and run tests, the following prerequisites are required:

Code guidelines

ReSharper is configured to our code guidelines. Use ReSharper and act on its error and warnings. Other than that the following guidelines are of importance:

  • Indent with 4 spaces, not tabs
  • Use var only when type is obvious
  • Use the C# type aliases for types that have them, e.g. int instead of Int32, string instead of String etc
  • Use meaningful names

Compilation and NuGet creation

Run Build.bat from a command prompt to build and pack the NuGet packages using the Release configuration.

Running tests

Run Test.bat from a command prompt to execute all unit and UI tests.