-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathUnconstrainedMelody.nuspec
29 lines (29 loc) · 1.26 KB
/
UnconstrainedMelody.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>UnconstrainedMelody</id>
<version>0.2.1</version>
<authors>Jon Skeet</authors>
<owners>Jon Skeet</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<projectUrl>http://github.com/jskeet/unconstrained-melody</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>
Helpful static methods (or extension methods) for enums and
delegates, with constraints which can't be expressed in regular C#.
</description>
<summary>
Unconstrained Melody is a library of helpful static
methods (extension methods where feasible) for working with
delegates and enums in a more strongly typed way than you can
normally express in C#. It uses generic type constraints to
force generic type parameters to be enum or delegate types,
which the CLR supports but which C# itself can't express.
</summary>
<tags>generics delegate enum</tags>
</metadata>
<files>
<file src="Rewritten\UnconstrainedMelody.dll" target="lib" />
<file src="Rewritten\UnconstrainedMelody.xml" target="lib" />
</files>
</package>