forked from pchote/Eluant
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathOpenRA-Eluant.nuspec
36 lines (36 loc) · 1.48 KB
/
OpenRA-Eluant.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
34
35
36
<?xml version="1.0"?>
<package>
<metadata>
<id>OpenRA-Eluant</id>
<version>0.0.1</version> <!-- Version is set during packaging. -->
<authors>OpenRA</authors>
<owners>OpenRA</owners>
<projectUrl>https://github.com/OpenRA/Eluant</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>
This is a version of Eluant modified and packaged for OpenRA.
The package includes the C# wrapper (Eluant) and the native binaries for Lua and targets version 5.1.5 of the native project.
</description>
<copyright>
- Copyright (c) 2013 Chris Howie
- Copyright (c) The OpenRA Developers and Contributors
</copyright>
<license type="expression">MIT</license>
<tags>OpenRA natives Lua scripting</tags>
<dependencies>
<group targetFramework=".NETStandard2.0" />
</dependencies>
<releaseNotes>
</releaseNotes>
</metadata>
<files>
<file src="OpenRA-Eluant.targets" target="build" />
<file src="bin/netstandard2.0/Eluant.*" target="lib/netstandard2.0" />
<file src="native/win/x86/lua51.dll" target="native/win-x86" />
<file src="native/win/x64/lua51.dll" target="native/win-x64" />
<file src="native/linux/x64/lua51.so" target="native/linux-x64" />
<file src="native/linux/arm64/lua51.so" target="native/linux-arm64" />
<file src="native/osx/x86_64/lua51.dylib" target="native/osx-x64" />
<file src="native/osx/arm64/lua51.dylib" target="native/osx-arm64" />
</files>
</package>