Developer Manual - YaccConstructor/QuickGraph GitHub Wiki
Developer Manual (TODO: needs some review)
Branches
- Requires Visual Studio 2010
- 2.0: deprecated.
- 3.0:
- .NET 2.0:
- Use the
Release20configuration.
- Use the
- .NET 3.5:
- Use the
Debug,Releaseconfigurations.
- Use the
- .NET 3.5 + Code Contracts:
- Use the
DebugContractsconfiguration.
- Use the
- .NET 2.0:
As you may notice, the same codebase is used for .net 2.0 and .net 3.5. This means that anything that belongs to System.Core must be duplicated in QuickGraph conditionally. In that sense,
- do not use LINQ. If you do, add the required method in the
Enumerabletype. - put the
thisof extenion methods in an#ifdefregion.
#if !NET20
this
#endif
External tools
- Code Contracts (optional)
- PEX (required)