-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlibwasm-text.nuspec
33 lines (33 loc) · 1.59 KB
/
libwasm-text.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"?>
<!-- NuGet package specification.
Run `nuget pack -Version %PKG_VERSION% libwasm-text.nuspec` to create Wasm.Text.x.y.z.nupkg -->
<package >
<metadata>
<id>Wasm.Text</id>
<version>$version$</version>
<authors>Jonathan Van der Cruysse</authors>
<owners>Jonathan Van der Cruysse</owners>
<license type="expression">MIT</license>
<projectUrl>https://github.com/jonathanvdc/cs-wasm</projectUrl>
<!--<iconUrl>http://ICON_URL_HERE_OR_DELETE_THIS_LINE</iconUrl>-->
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>A WebAssembly text format assembler library based on cs-wasm. </summary>
<description>Wasm.Text is a library that can assemble WebAssembly text format files and scripts.
It is based on cs-wasm, a C# library that can read, write, interpret and optimize WebAssembly files.
</description>
<releaseNotes></releaseNotes>
<copyright>Copyright 2019</copyright>
<tags>WebAssembly Wasm Text Format</tags>
<dependencies>
<dependency id="Wasm" version="$version$" />
<dependency id="Pixie" version="0.1.9" />
</dependencies>
</metadata>
<files>
<file src="README.md" target="readme.txt" />
<file src="libwasm-text\bin\Release\net47\libwasm-text.dll" target="lib\net47\" />
<file src="libwasm-text\bin\Release\net47\libwasm-text.xml" target="lib\net47\" />
<file src="libwasm-text\bin\Release\netstandard2.1\libwasm-text.dll" target="lib\netstandard2.1\" />
<file src="libwasm-text\bin\Release\netstandard2.1\libwasm-text.xml" target="lib\netstandard2.1\" />
</files>
</package>