-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlibwasm.nuspec
27 lines (27 loc) · 1.29 KB
/
libwasm.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
<?xml version="1.0"?>
<!-- NuGet package specification.
Run `nuget pack -Version %PKG_VERSION% libwasm.nuspec` to create Wasm.x.y.z.nupkg -->
<package >
<metadata>
<id>Wasm</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 C# library to manipulate and run binary WebAssembly files. </summary>
<description>cs-wasm is a C# library that can read, write, interpret and optimize binary WebAssembly files.</description>
<releaseNotes></releaseNotes>
<copyright>Copyright 2019</copyright>
<tags>WebAssembly Wasm</tags>
</metadata>
<files>
<file src="README.md" target="readme.txt" />
<file src="libwasm\bin\Release\net47\libwasm.dll" target="lib\net47\" />
<file src="libwasm\bin\Release\net47\libwasm.xml" target="lib\net47\" />
<file src="libwasm\bin\Release\netstandard2.1\libwasm.dll" target="lib\netstandard2.1\" />
<file src="libwasm\bin\Release\netstandard2.1\libwasm.xml" target="lib\netstandard2.1\" />
</files>
</package>