forked from flibitijibibo/SDL2-CS
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathOpenRA-SDL2-CS.nuspec
More file actions
36 lines (36 loc) · 1.47 KB
/
OpenRA-SDL2-CS.nuspec
File metadata and controls
36 lines (36 loc) · 1.47 KB
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
34
35
36
<?xml version="1.0"?>
<package>
<metadata>
<id>OpenRA-SDL2-CS</id>
<version>0.0.1</version> <!-- Version is set during packaging. -->
<authors>OpenRA</authors>
<owners>OpenRA</owners>
<projectUrl>https://github.com/OpenRA/SDL2-CS</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>
This is a version of SDL2-CS modified and packaged for OpenRA.
The package includes the C# wrapper (SDL2-CS) and the native binaries for SDL2 and targets version 2.32.10 of the native project.
</description>
<copyright>
- Copyright (c) 2013-2021 Ethan Lee
- Copyright (c) the SDL developers and contributors
</copyright>
<license type="expression">Zlib</license>
<tags>OpenRA natives SDL</tags>
<dependencies>
<group targetFramework=".NETStandard2.0" />
</dependencies>
<releaseNotes>
</releaseNotes>
</metadata>
<files>
<file src="OpenRA-SDL2-CS.targets" target="build" />
<file src="bin/netstandard2.0/SDL2-CS.*" target="lib/netstandard2.0" />
<file src="native/win/x86/*.dll" target="native/win-x86" />
<file src="native/win/x64/*.dll" target="native/win-x64" />
<file src="native/linux/x64/SDL2.so" target="native/linux-x64" />
<file src="native/linux/arm64/SDL2.so" target="native/linux-arm64" />
<file src="native/osx/x86_64/SDL2.dylib" target="native/osx-x64" />
<file src="native/osx/arm64/SDL2.dylib" target="native/osx-arm64" />
</files>
</package>