-
Notifications
You must be signed in to change notification settings - Fork 89
/
Nemerle.Compiler.nuspec
25 lines (25 loc) · 1.06 KB
/
Nemerle.Compiler.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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Nemerle.Compiler</id>
<version>$version$</version>
<title>Nemerle Compiler</title>
<authors>Nemerle Team</authors>
<description>Nemerle compiler library with C# support.</description>
<projectUrl>http://nemerle.org/</projectUrl>
<licenseUrl>http://opensource.org/licenses/BSD-3-Clause</licenseUrl>
<dependencies>
<dependency id="Nemerle" version="$version$" />
</dependencies>
</metadata>
<files>
<file src="$NCurBin$\Nemerle.Compiler.???" target="lib\net\" />
<file src="$NCurBin$\Nemerle.Macros.???" target="lib\net\" />
<!--
<file src="$NCurBin$\ncc.???" target="lib\net\" />
<file src="$NCurBin$\ncc??.???" target="lib\net\" />
<file src="$NBin$\PowerPack\CSharpParser.???" target="lib\net\" />
<file src="$NBin$\PowerPack\ncc.parser.csharp.???" target="lib\net\" />
-->
</files>
</package>