-
Notifications
You must be signed in to change notification settings - Fork 10
/
LoycCore.nuspec
34 lines (32 loc) · 2.14 KB
/
LoycCore.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
34
<?xml version="1.0"?>
<package>
<metadata>
<id>LoycCore</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>Core libraries to "fill in the gaps" in the .NET Base Class Library.</summary>
<description>A set of useful libraries for many kinds of .NET developers, starting with Loyc.Essentials, a library that "fills in the gaps" in the core of the .NET Base Class Library. LoycCore is especially focused on collections: classes, interfaces, adapters, and extension methods. Plus, Loyc.Syntax.dll parses LES, a superset of JSON that resembles C/C#/Java/Ecmascript/D, and runtime helper classes for the Loyc LL(k) parser generator.
Contributors are welcome: more unit tests, code reviews, and new features are desired, anything relatively small (under about 3000 lines of code) that fits the theme "things that should have been built into the .NET framework, but aren't".</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="Loyc.Collections" version="$version$" />
<dependency id="Loyc.Essentials" version="$version$" />
<dependency id="Loyc.Math" version="$version$" />
<dependency id="Loyc.Syntax" version="$version$" />
<dependency id="Loyc.Utilities" version="$version$" />
</dependencies>
</metadata>
<files>
<file src="readme.md" target="readme.txt" />
<!-- The LoycCore package is a meta-package: it references other packages as
dependencies, but does not have any files of its own other than
a readme. It's a convenient way to import all Loyc libraries at once,
and provides a clear upgrade path for existing users of LoycCore. -->
</files>
</package>