-
Notifications
You must be signed in to change notification settings - Fork 10
/
Loyc.Essentials.nuspec
33 lines (30 loc) · 1.88 KB
/
Loyc.Essentials.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
30
31
32
33
<?xml version="1.0"?>
<package>
<metadata>
<id>Loyc.Essentials</id>
<version>$version$</version>
<authors>David Piepgrass</authors>
<owners>David Piepgrass</owners>
<projectUrl>http://core.loyc.net</projectUrl>
<!--<iconUrl>http://ICON_URL_HERE_OR_DELETE_THIS_LINE</iconUrl>-->
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>"Fills in the gaps" in the .NET Base Class Library</summary>
<description>A library of interfaces, extension methods, and small bits of functionality that are useful in almost any software project, according to the theme "things that should be built into the .NET framework, but aren’t".
At least half of Loyc.Essentials is devoted to collections: collection interfaces, collection adapters, collection extension methods (e.g. LinqToLists) and even a couple of collection implementations. The other half includes a variety of things including Symbols, a localization helper, "message sinks", a miniature NUnit clone and more.</description>
<releaseNotes>See http://core.loyc.net/version-history</releaseNotes>
<copyright>Copyright 2017</copyright>
<tags>Loyc Core Collections Extension-Methods Dictionary Trees AList BList DList VList Cache Sparse-List Hash-Trees Geometry Math Utilities Adapters Interfaces</tags>
<dependencies>
<!--<dependency id="SampleDependency" version="1.0"/>-->
</dependencies>
</metadata>
<files>
<file src="readme.md" />
<file src="Lib\DotNet35\Theraot.Core.dll" target="lib\net35-client\" />
<file src="Bin\Release.NET3\Loyc.Essentials.*" target="lib\net35-client\" />
<file src="Bin\Release.NET4\Loyc.Essentials.*" target="lib\net40-client\" />
<file src="Bin\Release.NET45\Loyc.Essentials.*" target="lib\net45\" />
<file src="Loyc.Essentials\**\*.cs" target="src" />
<file src="Loyc.Essentials\**\*.ecs" target="src" />
</files>
</package>