-
Notifications
You must be signed in to change notification settings - Fork 10
/
Loyc.Syntax.nuspec
31 lines (30 loc) · 1.41 KB
/
Loyc.Syntax.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
<?xml version="1.0"?>
<package>
<metadata>
<id>Loyc.Syntax</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>A parser library.</summary>
<description>Loyc.Syntax implements various interfaces and helper classes for Loyc Languages and for users of LLLPG. It also implements Loyc trees for .NET (LNode), and parsers and printers for Loyc Expression Syntax (LES) versions 2 and 3.</description>
<releaseNotes>See http://core.loyc.net/version-history</releaseNotes>
<copyright>Copyright 2017</copyright>
<tags>Loyc Core Parser LES LLLPG</tags>
<dependencies>
<dependency id="Loyc.Collections" version="$version$" />
<dependency id="Loyc.Essentials" version="$version$" />
</dependencies>
</metadata>
<files>
<file src="readme.md" />
<file src="Bin\Release.NET3\Loyc.Syntax.*" target="lib\net35-client\" />
<file src="Bin\Release.NET4\Loyc.Syntax.*" target="lib\net40-client\" />
<file src="Bin\Release.NET45\Loyc.Syntax.*" target="lib\net45\" />
<file src="Loyc.Syntax\**\*.cs" target="src" />
<file src="Loyc.Syntax\**\*.les" target="src" />
<file src="Loyc.Syntax\**\*.ecs" target="src" />
</files>
</package>