├── .gitignore ├── ConstraintChanger ├── ConstraintChanger.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── app.config ├── UnconstrainedMelody VS2008.sln ├── UnconstrainedMelody VS2010.sln ├── UnconstrainedMelody.Test ├── BitFlags.cs ├── ByteEnum.cs ├── DelegatesTest.cs ├── EnumsTest.cs ├── FlagsTest.cs ├── Int64Enum.cs ├── Number.cs ├── Properties │ └── AssemblyInfo.cs ├── TestHelpers.cs ├── UInt64Enum.cs └── UnconstrainedMelody.Test.csproj ├── UnconstrainedMelody.nuspec ├── UnconstrainedMelody ├── DelegateConstraint.cs ├── Delegates.cs ├── EnumInternals.cs ├── Enums.cs ├── Flags.cs ├── IEnumConstraint.cs ├── Properties │ └── AssemblyInfo.cs ├── TypeArgumentException.cs └── UnconstrainedMelody.csproj ├── lib ├── nunit-license.txt └── nunit.framework.dll └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/.gitignore -------------------------------------------------------------------------------- /ConstraintChanger/ConstraintChanger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/ConstraintChanger/ConstraintChanger.csproj -------------------------------------------------------------------------------- /ConstraintChanger/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/ConstraintChanger/Program.cs -------------------------------------------------------------------------------- /ConstraintChanger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/ConstraintChanger/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ConstraintChanger/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/ConstraintChanger/app.config -------------------------------------------------------------------------------- /UnconstrainedMelody VS2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody VS2008.sln -------------------------------------------------------------------------------- /UnconstrainedMelody VS2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody VS2010.sln -------------------------------------------------------------------------------- /UnconstrainedMelody.Test/BitFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody.Test/BitFlags.cs -------------------------------------------------------------------------------- /UnconstrainedMelody.Test/ByteEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody.Test/ByteEnum.cs -------------------------------------------------------------------------------- /UnconstrainedMelody.Test/DelegatesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody.Test/DelegatesTest.cs -------------------------------------------------------------------------------- /UnconstrainedMelody.Test/EnumsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody.Test/EnumsTest.cs -------------------------------------------------------------------------------- /UnconstrainedMelody.Test/FlagsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody.Test/FlagsTest.cs -------------------------------------------------------------------------------- /UnconstrainedMelody.Test/Int64Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody.Test/Int64Enum.cs -------------------------------------------------------------------------------- /UnconstrainedMelody.Test/Number.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody.Test/Number.cs -------------------------------------------------------------------------------- /UnconstrainedMelody.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnconstrainedMelody.Test/TestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody.Test/TestHelpers.cs -------------------------------------------------------------------------------- /UnconstrainedMelody.Test/UInt64Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody.Test/UInt64Enum.cs -------------------------------------------------------------------------------- /UnconstrainedMelody.Test/UnconstrainedMelody.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody.Test/UnconstrainedMelody.Test.csproj -------------------------------------------------------------------------------- /UnconstrainedMelody.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody.nuspec -------------------------------------------------------------------------------- /UnconstrainedMelody/DelegateConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody/DelegateConstraint.cs -------------------------------------------------------------------------------- /UnconstrainedMelody/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody/Delegates.cs -------------------------------------------------------------------------------- /UnconstrainedMelody/EnumInternals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody/EnumInternals.cs -------------------------------------------------------------------------------- /UnconstrainedMelody/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody/Enums.cs -------------------------------------------------------------------------------- /UnconstrainedMelody/Flags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody/Flags.cs -------------------------------------------------------------------------------- /UnconstrainedMelody/IEnumConstraint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody/IEnumConstraint.cs -------------------------------------------------------------------------------- /UnconstrainedMelody/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnconstrainedMelody/TypeArgumentException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody/TypeArgumentException.cs -------------------------------------------------------------------------------- /UnconstrainedMelody/UnconstrainedMelody.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/UnconstrainedMelody/UnconstrainedMelody.csproj -------------------------------------------------------------------------------- /lib/nunit-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/lib/nunit-license.txt -------------------------------------------------------------------------------- /lib/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/lib/nunit.framework.dll -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jskeet/unconstrained-melody/HEAD/readme.md --------------------------------------------------------------------------------