Commit 66606d3f authored by Vinicius Jarina's avatar Vinicius Jarina
Browse files

Fix #25 Added NuGet Package (https://www.nuget.org/packages/NLua/)

parent a4f6f234
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>NLua</id>
<version>1.2.2.14</version>
<title>NLua is the bind between Lua and the .NET</title>
<authors>viniciusjarina</authors>
<owners>viniciusjarina</owners>
<projectUrl>http://nlua.org</projectUrl>
<iconUrl>https://secure.gravatar.com/avatar/77ecf0fb9d8419be7715c6e822e66562?s=32</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>NLua Package.</description>
<summary>NLua allow use Lua from C#, using Windows, Linux, Mac, iOS , Android, Windows Phone 7 and Windows Phone 8.</summary>
<releaseNotes>NLua 1.2.0
Port to Android 15+ (armeabi, v7a, x86)
Updated Lua 5.2.2 (patch 7)
Lot of Bug fixes.
NLua 1.1.0
Port to WP7 (Thanks to Mangatome)
NLua now using Lua 5.2.2
Bug fixes.</releaseNotes>
<copyright>Copyright (c) 2013 Vinicius Jarina (viniciusjarina@gmail.com)</copyright>
<language />
<tags>Lua Script NLua LuaInterface</tags>
</metadata>
<files>
<file src="lib\MonoAndroid\KeraLua.Android.dll" target="lib\MonoAndroid\KeraLua.Android.dll" />
<file src="lib\MonoAndroid\KeraLua.Android.dll.mdb" target="lib\MonoAndroid\KeraLua.Android.dll.mdb" />
<file src="lib\MonoAndroid\NLua.Android.dll" target="lib\MonoAndroid\NLua.Android.dll" />
<file src="lib\MonoMac\KeraLua.dll" target="lib\MonoMac\KeraLua.dll" />
<file src="lib\MonoMac\liblua52.dylib" target="lib\MonoMac\liblua52.dylib" />
<file src="lib\MonoMac\NLua.dll" target="lib\MonoMac\NLua.dll" />
<file src="lib\MonoTouch\KeraLua.iOS.dll" target="lib\MonoTouch\KeraLua.iOS.dll" />
<file src="lib\MonoTouch\NLua.iOS.dll" target="lib\MonoTouch\NLua.iOS.dll" />
<file src="lib\native\x64\lua52.dll" target="lib\native\x64\lua52.dll" />
<file src="lib\native\x86\lua52.dll" target="lib\native\x86\lua52.dll" />
<file src="lib\net35\x64\KeraLua.dll" target="lib\net35\x64\KeraLua.dll" />
<file src="lib\net35\x64\NLua.dll" target="lib\net35\x64\NLua.dll" />
<file src="lib\net35\x86\KeraLua.dll" target="lib\net35\x86\KeraLua.dll" />
<file src="lib\net35\x86\NLua.dll" target="lib\net35\x86\NLua.dll" />
<file src="lib\net40\x64\KeraLua.dll" target="lib\net40\x64\KeraLua.dll" />
<file src="lib\net40\x64\NLua.dll" target="lib\net40\x64\NLua.dll" />
<file src="lib\net40\x86\KeraLua.dll" target="lib\net40\x86\KeraLua.dll" />
<file src="lib\net40\x86\NLua.dll" target="lib\net40\x86\NLua.dll" />
<file src="lib\net45\x64\KeraLua.dll" target="lib\net45\x64\KeraLua.dll" />
<file src="lib\net45\x64\NLua.dll" target="lib\net45\x64\NLua.dll" />
<file src="lib\net45\x86\KeraLua.dll" target="lib\net45\x86\KeraLua.dll" />
<file src="lib\net45\x86\NLua.dll" target="lib\net45\x86\NLua.dll" />
<file src="lib\sl4-wp71\KopiLua-wp7.dll" target="lib\sl4-wp71\KopiLua-wp7.dll" />
<file src="lib\sl4-wp71\NLua.WP7.dll" target="lib\sl4-wp71\NLua.WP7.dll" />
<file src="tools\net35\GetLibLuaPostBuildCmd.ps1" target="tools\net35\GetLibLuaPostBuildCmd.ps1" />
<file src="tools\net35\install.ps1" target="tools\net35\install.ps1" />
<file src="tools\net35\uninstall.ps1" target="tools\net35\uninstall.ps1" />
<file src="tools\net40\GetLibLuaPostBuildCmd.ps1" target="tools\net40\GetLibLuaPostBuildCmd.ps1" />
<file src="tools\net40\install.ps1" target="tools\net40\install.ps1" />
<file src="tools\net40\uninstall.ps1" target="tools\net40\uninstall.ps1" />
<file src="tools\net45\GetLibLuaPostBuildCmd.ps1" target="tools\net45\GetLibLuaPostBuildCmd.ps1" />
<file src="tools\net45\install.ps1" target="tools\net45\install.ps1" />
<file src="tools\net45\uninstall.ps1" target="tools\net45\uninstall.ps1" />
</files>
</package>
\ No newline at end of file

if( [System.IntPtr]::Size -ne 8) {
$arch = "x86\*.*"
} else {
$arch = "x64\*.*"
}
$nativePath = $(Join-Path $installPath "lib\native")
$nativePath = $(Join-Path $nativePath $arch)
$LibLuaPostBuildCmd = "
xcopy /s /y `"$nativePath`" `"`$(TargetDir)`""
\ No newline at end of file
param($installPath, $toolsPath, $package, $project)
. (Join-Path $toolsPath "GetLibLuaPostBuildCmd.ps1")
# Get the current Post Build Event cmd
$currentPostBuildCmd = $project.Properties.Item("PostBuildEvent").Value
# Append our post build command if it's not already there
if (!$currentPostBuildCmd.Contains($LibLuaPostBuildCmd)) {
$project.Properties.Item("PostBuildEvent").Value += $LibLuaPostBuildCmd
}
\ No newline at end of file
param($installPath, $toolsPath, $package, $project)
. (Join-Path $toolsPath "GetLibLuaPostBuildCmd.ps1")
# Get the current Post Build Event cmd
$currentPostBuildCmd = $project.Properties.Item("PostBuildEvent").Value
# Remove our post build command from it (if it's there)
$project.Properties.Item("PostBuildEvent").Value = $currentPostBuildCmd.Replace($LibLuaPostBuildCmd, "")
\ No newline at end of file

if( [System.IntPtr]::Size -ne 8) {
$arch = "x86\*.*"
} else {
$arch = "x64\*.*"
}
$nativePath = $(Join-Path $installPath "lib\native")
$nativePath = $(Join-Path $nativePath $arch)
$LibLuaPostBuildCmd = "
xcopy /s /y `"$nativePath`" `"`$(TargetDir)`""
\ No newline at end of file
param($installPath, $toolsPath, $package, $project)
. (Join-Path $toolsPath "GetLibLuaPostBuildCmd.ps1")
# Get the current Post Build Event cmd
$currentPostBuildCmd = $project.Properties.Item("PostBuildEvent").Value
# Append our post build command if it's not already there
if (!$currentPostBuildCmd.Contains($LibLuaPostBuildCmd)) {
$project.Properties.Item("PostBuildEvent").Value += $LibLuaPostBuildCmd
}
\ No newline at end of file
param($installPath, $toolsPath, $package, $project)
. (Join-Path $toolsPath "GetLibLuaPostBuildCmd.ps1")
# Get the current Post Build Event cmd
$currentPostBuildCmd = $project.Properties.Item("PostBuildEvent").Value
# Remove our post build command from it (if it's there)
$project.Properties.Item("PostBuildEvent").Value = $currentPostBuildCmd.Replace($LibLuaPostBuildCmd, "")
\ No newline at end of file

if( [System.IntPtr]::Size -ne 8) {
$arch = "x86\*.*"
} else {
$arch = "x64\*.*"
}
$nativePath = $(Join-Path $installPath "lib\native")
$nativePath = $(Join-Path $nativePath $arch)
$LibLuaPostBuildCmd = "
xcopy /s /y `"$nativePath`" `"`$(TargetDir)`""
\ No newline at end of file
param($installPath, $toolsPath, $package, $project)
. (Join-Path $toolsPath "GetLibLuaPostBuildCmd.ps1")
# Get the current Post Build Event cmd
$currentPostBuildCmd = $project.Properties.Item("PostBuildEvent").Value
# Append our post build command if it's not already there
if (!$currentPostBuildCmd.Contains($LibLuaPostBuildCmd)) {
$project.Properties.Item("PostBuildEvent").Value += $LibLuaPostBuildCmd
}
\ No newline at end of file
param($installPath, $toolsPath, $package, $project)
. (Join-Path $toolsPath "GetLibLuaPostBuildCmd.ps1")
# Get the current Post Build Event cmd
$currentPostBuildCmd = $project.Properties.Item("PostBuildEvent").Value
# Remove our post build command from it (if it's there)
$project.Properties.Item("PostBuildEvent").Value = $currentPostBuildCmd.Replace($LibLuaPostBuildCmd, "")
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment