title: Contributing to Orleans

Contributing to Orleans

Some notes and guidelines for developers who want to contribute to Orleans.

Contributing To This Project

Here are some pointers for anyone looking for mini-features and work items that would make a positive contribution to Orleans.

These are just a few ideas, so if you think of something else that would be useful, then spin up a discussion thread on GitHub to discuss the proposal, and go for it!

Pull requests are always welcome!

Some suggestions for possible intern / student projects.

A style guide for writing documentation for this site.

Code Contributions

This project uses the same contribution process as the other DotNet projects on GitHub.

Guidelines and workflow for contributing to DotNet projects on GitHub.

Contribution License Agreement for DotNet projects on GitHub.

Some basic API design rules, coding standards, and style guide for .NET Framework APIs.

Coding Standards and Conventions

We try not to be too OCD about coding style wars, but in case of disputes we do fall back to the core principles in the two “.NET Coding Standards” books used by the other DotNet OSS projects on GitHub:

There are lots of other useful documents on the .NET CoreCLR and .NET Core Framework documentation sites which are worth reading, although most experienced C# developers will probably have picked up many of those best-practices by osmosis, particularly around performance and memory management.

Source Code Organization

Orleans has not religiously followed a “One Class Per File” rule, but instead we have tried to use pragmatic judgment to maximize the change of “code understand-ability” for developers on the team. If lots of small-ish classes share a “common theme” and/or are always dealt with together, then it is OK to place those into one source code file in most cases. See for example the various “log consumer” classes were originally placed in single source file, as they represented a single unit of code comprehension.

As a corollary, it is much easier to find the source code for a class if it is in a file with the same name as the class [similar to Java file naming rules], so there is a tension and value judgment here between code find-ability and minimizing / constraining the number of projects in a solution and files within a project [which both have direct impact on the Visual Studio “Opening” and “Building” times for large projects].

Code search tools in VS and ReSharper definitely help here.

Dependencies and Inter-Project References

One topic that we are very strict about is around dependency references between components and sub-systems.

Component / Project References

References between projects in a solution must always use “Project References“ rather than “DLL References“ to ensure that component build relationships are known to the build tools.

Right:

  1. <ProjectReference Include="..\Orleans\Orleans.csproj">
  2. <Project>{BC1BD60C-E7D8-4452-A21C-290AEC8E2E74}</Project>
  3. <Name>Orleans</Name>
  4. </ProjectReference>

Wrong:

  1. <Reference Include="Orleans" >
  2. <HintPath>..\Orleans\bin\Debug\Orleans.dll</HintPath>
  3. </Reference>

In order to help ensure we keep inter-project references clean, then on the build servers [and local Build.cmd script] we deliberately use side-by-side input .\src and output .\Binaries directories rather than the more normal in-place build directory structure (eg. [PROJ]\bin\Release) used by VS on local dev machines.

Unified Component Versions

We use the same unified versions of external component throughout the Orleans code base, and so should never need to add bindingRedirect entries in App.config files.

Also, in general it should almost never be necessary to have Private=True elements in Orleans project files, except to override a conflict with a Windows / VS “system” component. Some package management tools can occasionally get confused when making version changes, and sometimes think that we are using multiple versions of the same assembly within a solution, which of course we never do.

We long for the day when package management tools for .NET can make version changes transactionally! Until then, it is occasionally necessary to “fix” the misguided actions of some .NET package management tools by hand-editing the .csproj files (they are just XML text files) back to sanity and/or using the “Discard Edited Line” functions that most good Git tools such as Atlassian SourceTree provide.

Using “sort” references and unified component versions avoids creating brittle links between Orleans run-time and/or external components, and has proved highly effective in the last several years at reducing stress levels for the Orleans Team during important deployment milestones. :)