-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFNA-XNA-Wrapper.nuspec
31 lines (30 loc) · 1.29 KB
/
FNA-XNA-Wrapper.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" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<!-- Required elements-->
<id>FNA-XNA-Wrapper</id>
<version>22.12.2</version>
<description>FNA-XNA wrapper for library .Net 4.5 from https://fna-xna.github.io/</description>
<authors>Guillaume Lebrun</authors>
<projectUrl>https://github.com/Hilderin/FNANuget</projectUrl>
<license type="expression">MIT</license>
<readme>docs\readme-nuget.md</readme>
<icon>images\FNA.png</icon>
</metadata>
<files>
<!-- binding libraries -->
<file src="FNA\bin\Release\FNA.dll" target="lib\net45" />
<!-- native libraries -->
<file src="fnalibs\lib64\*.*" target="runtimes/lib64"/>
<file src="fnalibs\osx\*.*" target="runtimes/osx"/>
<file src="fnalibs\vulkan\*.*" target="runtimes/vulkan"/>
<file src="fnalibs\x64\*.*" target="runtimes/x64"/>
<file src="fnalibs\x86\*.*" target="runtimes/x86"/>
<!-- targets file -->
<file src="FNA-XNA-Wrapper.targets" target="build/"/>
<!-- docs -->
<file src="readme-nuget.md" target="docs\" />
<!-- images -->
<file src="FNA.png" target="images\" />
</files>
</package>