Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
NLua
Commits
be9f0df6
"vscode:/vscode.git/clone" did not exist on "a6721a31884d7b3a5be9ebfdc71eb5475d56cf59"
Commit
be9f0df6
authored
Mar 12, 2013
by
Vinicius Jarina
Browse files
Renamed LuaInterface -> NLua
parent
2e203153
Changes
89
Hide whitespace changes
Inline
Side-by-side
Core/Lua
Interface
/Method/LuaClassHelper.cs
→
Core/
N
Lua/Method/LuaClassHelper.cs
View file @
be9f0df6
/*
/*
* This file is part of Lua
Interface
.
* This file is part of
N
Lua.
*
*
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
...
@@ -24,7 +24,7 @@
...
@@ -24,7 +24,7 @@
*/
*/
using
System
;
using
System
;
namespace
Lua
Interface
.Method
namespace
N
Lua.Method
{
{
/*
/*
* Static helper methods for Lua tables acting as CLR objects.
* Static helper methods for Lua tables acting as CLR objects.
...
...
Core/Lua
Interface
/Method/LuaDelegate.cs
→
Core/
N
Lua/Method/LuaDelegate.cs
View file @
be9f0df6
/*
/*
* This file is part of Lua
Interface
.
* This file is part of
N
Lua.
*
*
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
...
@@ -24,7 +24,7 @@
...
@@ -24,7 +24,7 @@
*/
*/
using
System
;
using
System
;
namespace
Lua
Interface
.Method
namespace
N
Lua.Method
{
{
/*
/*
* Wrapper class for Lua functions as delegates
* Wrapper class for Lua functions as delegates
...
...
Core/Lua
Interface
/Method/LuaEventHandler.cs
→
Core/
N
Lua/Method/LuaEventHandler.cs
View file @
be9f0df6
/*
/*
* This file is part of Lua
Interface
.
* This file is part of
N
Lua.
*
*
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
...
@@ -24,7 +24,7 @@
...
@@ -24,7 +24,7 @@
*/
*/
using
System
;
using
System
;
namespace
Lua
Interface
.Method
namespace
N
Lua.Method
{
{
/*
/*
* Base wrapper class for Lua function event handlers.
* Base wrapper class for Lua function event handlers.
...
...
Core/Lua
Interface
/Method/LuaMethodWrapper.cs
→
Core/
N
Lua/Method/LuaMethodWrapper.cs
View file @
be9f0df6
/*
/*
* This file is part of Lua
Interface
.
* This file is part of
N
Lua.
*
*
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
...
@@ -25,10 +25,10 @@
...
@@ -25,10 +25,10 @@
using
System
;
using
System
;
using
System.Reflection
;
using
System.Reflection
;
using
System.Collections.Generic
;
using
System.Collections.Generic
;
using
Lua
Interface
.Exceptions
;
using
N
Lua.Exceptions
;
using
Lua
Interface
.Extensions
;
using
N
Lua.Extensions
;
namespace
Lua
Interface
.Method
namespace
N
Lua.Method
{
{
#
if
USE_KOPILUA
#
if
USE_KOPILUA
using
LuaCore
=
KopiLua
.
Lua
;
using
LuaCore
=
KopiLua
.
Lua
;
...
...
Core/Lua
Interface
/Method/MethodArgs.cs
→
Core/
N
Lua/Method/MethodArgs.cs
View file @
be9f0df6
/*
/*
* This file is part of Lua
Interface
.
* This file is part of
N
Lua.
*
*
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
...
@@ -24,7 +24,7 @@
...
@@ -24,7 +24,7 @@
*/
*/
using
System
;
using
System
;
namespace
Lua
Interface
.Method
namespace
N
Lua.Method
{
{
/*
/*
* Parameter information
* Parameter information
...
...
Core/Lua
Interface
/Method/MethodCache.cs
→
Core/
N
Lua/Method/MethodCache.cs
View file @
be9f0df6
/*
/*
* This file is part of Lua
Interface
.
* This file is part of
N
Lua.
*
*
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
...
@@ -24,9 +24,9 @@
...
@@ -24,9 +24,9 @@
*/
*/
using
System
;
using
System
;
using
System.Reflection
;
using
System.Reflection
;
using
Lua
Interface
.Extensions
;
using
N
Lua.Extensions
;
namespace
Lua
Interface
.Method
namespace
N
Lua.Method
{
{
/*
/*
* Cached method
* Cached method
...
...
Core/Lua
Interface
/Method/RegisterEventHandler.cs
→
Core/
N
Lua/Method/RegisterEventHandler.cs
View file @
be9f0df6
/*
/*
* This file is part of Lua
Interface
.
* This file is part of
N
Lua.
*
*
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
using
System
;
using
System
;
using
System.Reflection
;
using
System.Reflection
;
namespace
Lua
Interface
.Method
namespace
N
Lua.Method
{
{
/*
/*
* Wrapper class for events that does registration/deregistration
* Wrapper class for events that does registration/deregistration
...
...
Core/Lua
Interface/LuaInterface
.IOS.csproj
→
Core/
N
Lua
/NLua
.IOS.csproj
View file @
be9f0df6
...
@@ -8,9 +8,9 @@
...
@@ -8,9 +8,9 @@
<ProjectGuid>
{7064B157-DD57-4828-94C5-CA149B25CB40}
</ProjectGuid>
<ProjectGuid>
{7064B157-DD57-4828-94C5-CA149B25CB40}
</ProjectGuid>
<ProjectTypeGuids>
{6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
</ProjectTypeGuids>
<ProjectTypeGuids>
{6BC8ED88-2882-458C-8E55-DFD12B67127B};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
</ProjectTypeGuids>
<OutputType>
Library
</OutputType>
<OutputType>
Library
</OutputType>
<RootNamespace>
Lua
Interface
.IOS
</RootNamespace>
<RootNamespace>
N
Lua.IOS
</RootNamespace>
<IPhoneResourcePrefix>
Resources
</IPhoneResourcePrefix>
<IPhoneResourcePrefix>
Resources
</IPhoneResourcePrefix>
<AssemblyName>
Lua
Interface
.IOS
</AssemblyName>
<AssemblyName>
N
Lua.IOS
</AssemblyName>
</PropertyGroup>
</PropertyGroup>
<PropertyGroup
Condition=
" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "
>
<PropertyGroup
Condition=
" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "
>
<DebugSymbols>
True
</DebugSymbols>
<DebugSymbols>
True
</DebugSymbols>
...
@@ -51,7 +51,7 @@
...
@@ -51,7 +51,7 @@
<Folder
Include=
"GenerateEventAssembly\ios\"
/>
<Folder
Include=
"GenerateEventAssembly\ios\"
/>
</ItemGroup>
</ItemGroup>
<ItemGroup>
<ItemGroup>
<Compile
Include=
"Config\Lua
Interface
Config.cs"
/>
<Compile
Include=
"Config\
N
LuaConfig.cs"
/>
<Compile
Include=
"Event\DebugHookEventArgs.cs"
/>
<Compile
Include=
"Event\DebugHookEventArgs.cs"
/>
<Compile
Include=
"Event\EventCodes.cs"
/>
<Compile
Include=
"Event\EventCodes.cs"
/>
<Compile
Include=
"Event\EventMasks.cs"
/>
<Compile
Include=
"Event\EventMasks.cs"
/>
...
...
Core/Lua
Interface/LuaInterface
.csproj
→
Core/
N
Lua
/NLua
.csproj
View file @
be9f0df6
...
@@ -8,8 +8,8 @@
...
@@ -8,8 +8,8 @@
<ProjectGuid>
{F55CABBB-4108-4A39-94E1-581FD46DC021}
</ProjectGuid>
<ProjectGuid>
{F55CABBB-4108-4A39-94E1-581FD46DC021}
</ProjectGuid>
<OutputType>
Library
</OutputType>
<OutputType>
Library
</OutputType>
<AppDesignerFolder>
Properties
</AppDesignerFolder>
<AppDesignerFolder>
Properties
</AppDesignerFolder>
<RootNamespace>
Lua
Interface
</RootNamespace>
<RootNamespace>
N
Lua
</RootNamespace>
<AssemblyName>
Lua
Interface
</AssemblyName>
<AssemblyName>
N
Lua
</AssemblyName>
<ReleaseVersion>
2.x
</ReleaseVersion>
<ReleaseVersion>
2.x
</ReleaseVersion>
<TargetFrameworkVersion>
v3.5
</TargetFrameworkVersion>
<TargetFrameworkVersion>
v3.5
</TargetFrameworkVersion>
</PropertyGroup>
</PropertyGroup>
...
@@ -77,7 +77,7 @@
...
@@ -77,7 +77,7 @@
<Compile
Include=
"LuaLib\LuaIndexes.cs"
/>
<Compile
Include=
"LuaLib\LuaIndexes.cs"
/>
<Compile
Include=
"LuaLib\GCOptions.cs"
/>
<Compile
Include=
"LuaLib\GCOptions.cs"
/>
<Compile
Include=
"LuaLib\LuaLib.cs"
/>
<Compile
Include=
"LuaLib\LuaLib.cs"
/>
<Compile
Include=
"Config\Lua
Interface
Config.cs"
/>
<Compile
Include=
"Config\
N
LuaConfig.cs"
/>
<Compile
Include=
"ObjectTranslatorPool.cs"
/>
<Compile
Include=
"ObjectTranslatorPool.cs"
/>
</ItemGroup>
</ItemGroup>
<Import
Project=
"$(MSBuildBinPath)\Microsoft.CSharp.targets"
/>
<Import
Project=
"$(MSBuildBinPath)\Microsoft.CSharp.targets"
/>
...
...
Core/Lua
Interface
/ObjectTranslator.cs
→
Core/
N
Lua/ObjectTranslator.cs
View file @
be9f0df6
/*
/*
* This file is part of Lua
Interface
.
* This file is part of
N
Lua.
*
*
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
...
@@ -28,11 +28,11 @@ using System.Reflection;
...
@@ -28,11 +28,11 @@ using System.Reflection;
using
System.Diagnostics
;
using
System.Diagnostics
;
using
System.Collections
;
using
System.Collections
;
using
System.Collections.Generic
;
using
System.Collections.Generic
;
using
Lua
Interface
.Method
;
using
N
Lua.Method
;
using
Lua
Interface
.Exceptions
;
using
N
Lua.Exceptions
;
using
Lua
Interface
.Extensions
;
using
N
Lua.Extensions
;
namespace
Lua
Interface
namespace
N
Lua
{
{
#
if
USE_KOPILUA
#
if
USE_KOPILUA
using
LuaCore
=
KopiLua
.
Lua
;
using
LuaCore
=
KopiLua
.
Lua
;
...
@@ -172,7 +172,7 @@ namespace LuaInterface
...
@@ -172,7 +172,7 @@ namespace LuaInterface
}
}
/*
/*
* Registers the global functions used by Lua
Interface
* Registers the global functions used by
N
Lua
*/
*/
private
void
setGlobalFunctions
(
LuaCore
.
lua_State
luaState
)
private
void
setGlobalFunctions
(
LuaCore
.
lua_State
luaState
)
{
{
...
...
Core/Lua
Interface
/ObjectTranslatorPool.cs
→
Core/
N
Lua/ObjectTranslatorPool.cs
View file @
be9f0df6
using
System
;
using
System
;
using
System.Collections.Generic
;
using
System.Collections.Generic
;
namespace
Lua
Interface
namespace
N
Lua
{
{
#
if
USE_KOPILUA
#
if
USE_KOPILUA
using
LuaCore
=
KopiLua
.
Lua
;
using
LuaCore
=
KopiLua
.
Lua
;
...
...
Core/Lua
Interface
/Properties/AssemblyInfo.cs
→
Core/
N
Lua/Properties/AssemblyInfo.cs
View file @
be9f0df6
/*
/*
* This file is part of Lua
Interface
.
* This file is part of
N
Lua.
*
*
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
...
@@ -26,18 +26,18 @@ using System;
...
@@ -26,18 +26,18 @@ using System;
using
System.Reflection
;
using
System.Reflection
;
using
System.Runtime.CompilerServices
;
using
System.Runtime.CompilerServices
;
using
System.Runtime.InteropServices
;
using
System.Runtime.InteropServices
;
using
Lua
Interface
.Config
;
using
N
Lua.Config
;
// Information about this assembly is defined by the following attributes.
// Information about this assembly is defined by the following attributes.
// Change them to the values specific to your project.
// Change them to the values specific to your project.
[
assembly
:
AssemblyTitle
(
"Lua
Interface
"
)]
[
assembly
:
AssemblyTitle
(
"
N
Lua"
)]
[
assembly
:
AssemblyDescription
(
Consts
.
Lua
Interface
Description
)]
[
assembly
:
AssemblyDescription
(
Consts
.
N
LuaDescription
)]
[
assembly
:
AssemblyConfiguration
(
Consts
.
Lua
Interface
Configuration
)]
[
assembly
:
AssemblyConfiguration
(
Consts
.
N
LuaConfiguration
)]
[
assembly
:
AssemblyCompany
(
Consts
.
Lua
Interface
Company
)]
[
assembly
:
AssemblyCompany
(
Consts
.
N
LuaCompany
)]
[
assembly
:
AssemblyProduct
(
Consts
.
Lua
Interface
Product
)]
[
assembly
:
AssemblyProduct
(
Consts
.
N
LuaProduct
)]
[
assembly
:
AssemblyCopyright
(
Consts
.
Lua
Interface
Copyright
)]
[
assembly
:
AssemblyCopyright
(
Consts
.
N
LuaCopyright
)]
[
assembly
:
AssemblyTrademark
(
Consts
.
Lua
Interface
Trademark
)]
[
assembly
:
AssemblyTrademark
(
Consts
.
N
LuaTrademark
)]
[
assembly
:
CLSCompliant
(
true
)]
[
assembly
:
CLSCompliant
(
true
)]
...
@@ -56,5 +56,5 @@ using LuaInterface.Config;
...
@@ -56,5 +56,5 @@ using LuaInterface.Config;
// You can specify all the values or you can default the Build and Revision Numbers
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
// [assembly: AssemblyVersion("1.0.*")]
[
assembly
:
AssemblyVersion
(
Consts
.
LuaInterfaceVersion
)]
[
assembly
:
AssemblyVersion
(
Consts
.
NLuaVersion
)]
[
assembly
:
AssemblyFileVersion
(
Consts
.
LuaInterfaceFileVersion
)]
[
assembly
:
AssemblyFileVersion
(
Consts
.
NLuaFileVersion
)]
\ No newline at end of file
\ No newline at end of file
Core/Lua
Interface
/ProxyType.cs
→
Core/
N
Lua/ProxyType.cs
View file @
be9f0df6
/*
/*
* This file is part of Lua
Interface
.
* This file is part of
N
Lua.
*
*
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2003-2005 Fabio Mascarenhas de Queiroz.
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
* Copyright (C) 2012 Megax <http://megax.yeahunter.hu/>
...
@@ -26,7 +26,7 @@ using System;
...
@@ -26,7 +26,7 @@ using System;
using
System.Globalization
;
using
System.Globalization
;
using
System.Reflection
;
using
System.Reflection
;
namespace
Lua
Interface
namespace
N
Lua
{
{
/// <summary>
/// <summary>
/// Summary description for ProxyType.
/// Summary description for ProxyType.
...
...
Core/NLua/nlua.pc.in
0 → 100644
View file @
be9f0df6
Name: NLua
Description: NLua
Version: 2.x
Requires:
Libs: -r:@expanded_libdir@/@PACKAGE@/NLua.dll
Makefile.am
View file @
be9f0df6
...
@@ -3,14 +3,14 @@ EXTRA_DIST = expansions.m4
...
@@ -3,14 +3,14 @@ EXTRA_DIST = expansions.m4
#Warning: This is an automatically generated file, do not edit!
#Warning: This is an automatically generated file, do not edit!
if
ENABLE_DEBUG_X86
if
ENABLE_DEBUG_X86
SUBDIRS
=
Core Test/TestLua
Interface
Applications/LuaRunner
SUBDIRS
=
Core Test/Test
N
Lua Applications/LuaRunner
endif
endif
if
ENABLE_RELEASE_X86
if
ENABLE_RELEASE_X86
SUBDIRS
=
Core Test/TestLua
Interface
Applications/LuaRunner
SUBDIRS
=
Core Test/Test
N
Lua Applications/LuaRunner
endif
endif
if
ENABLE_DEBUG_X64
if
ENABLE_DEBUG_X64
SUBDIRS
=
Core Test/TestLua
Interface
Applications/LuaRunner
SUBDIRS
=
Core Test/Test
N
Lua Applications/LuaRunner
endif
endif
if
ENABLE_RELEASE_X64
if
ENABLE_RELEASE_X64
SUBDIRS
=
Core Test/TestLua
Interface
Applications/LuaRunner
SUBDIRS
=
Core Test/Test
N
Lua Applications/LuaRunner
endif
endif
Makefile.iOS
View file @
be9f0df6
PROJECT
=
Lua
Interface
.iOS.sln
PROJECT
=
N
Lua.iOS.sln
MDTOOL
=
/Applications/MonoDevelop.app/Contents/MacOS/mdtool
MDTOOL
=
/Applications/MonoDevelop.app/Contents/MacOS/mdtool
MTOUCH
=
/Developer/MonoTouch/usr/bin/mtouch
MTOUCH
=
/Developer/MonoTouch/usr/bin/mtouch
TOUCH_SERVER
=
./Touch.Server/bin/Debug/Touch.Server.exe
TOUCH_SERVER
=
./Touch.Server/bin/Debug/Touch.Server.exe
...
@@ -15,14 +15,14 @@ build-simulator:
...
@@ -15,14 +15,14 @@ build-simulator:
run-simulator
:
build-simulator touch-server
run-simulator
:
build-simulator touch-server
rm
-f
sim-results.log
rm
-f
sim-results.log
mono
--debug
$(TOUCH_SERVER)
--launchsim
ios/Lua
Interface
TestsiOS/bin/iPhoneSimulator/Release/Lua
Interface
Test.app
-autoexit
-logfile
=
sim-results.log
mono
--debug
$(TOUCH_SERVER)
--launchsim
ios/
N
LuaTestsiOS/bin/iPhoneSimulator/Release/
N
LuaTest.app
-autoexit
-logfile
=
sim-results.log
cat
sim-results.log
cat
sim-results.log
build-device
:
build-device
:
$(MDTOOL)
-v
build
-t
:Build
"-c:Release|iPhone"
$(PROJECT)
$(MDTOOL)
-v
build
-t
:Build
"-c:Release|iPhone"
$(PROJECT)
run-device
:
build-device touch-server
run-device
:
build-device touch-server
$(MTOUCH)
--installdev
ios/Lua
Interface
TestsiOS/bin/iPhone/Release/Lua
Interface
Test.app
$(MTOUCH)
--installdev
ios/
N
LuaTestsiOS/bin/iPhone/Release/
N
LuaTest.app
# kill an existing instance
(
based on the bundle
id
)
# kill an existing instance
(
based on the bundle
id
)
$(MTOUCH)
--killdev
org.nlua.nluatest
$(MTOUCH)
--killdev
org.nlua.nluatest
rm
-f
dev-results.log
rm
-f
dev-results.log
...
...
Lua
Interface
.IOS.sln
→
N
Lua.IOS.sln
View file @
be9f0df6
Microsoft Visual Studio Solution File, Format Version 11.00
Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lua
Interface
.IOS", "Core\Lua
Interface\LuaInterface
.IOS.csproj", "{7064B157-DD57-4828-94C5-CA149B25CB40}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "
N
Lua.IOS", "Core\
N
Lua
\NLua
.IOS.csproj", "{7064B157-DD57-4828-94C5-CA149B25CB40}"
EndProject
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KopiLua.IOS", "Core\KopiLua\KopiLua.IOS.csproj", "{44DA9778-C0B0-4C6F-8617-79BA2E0F1361}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KopiLua.IOS", "Core\KopiLua\KopiLua.IOS.csproj", "{44DA9778-C0B0-4C6F-8617-79BA2E0F1361}"
EndProject
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KeraLua.iOS", "Core\KeraLua\KeraLua.iOS.csproj", "{3F57C208-AA13-4B67-B3E7-ED41307F00A0}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KeraLua.iOS", "Core\KeraLua\KeraLua.iOS.csproj", "{3F57C208-AA13-4B67-B3E7-ED41307F00A0}"
EndProject
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lua
Interface
Test", "ios\Lua
Interface
TestsiOS\Lua
Interface
Test.csproj", "{2DC0E43A-21B8-41FF-8793-60AB50350977}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "
N
LuaTest", "ios\
N
LuaTestsiOS\
N
LuaTest.csproj", "{2DC0E43A-21B8-41FF-8793-60AB50350977}"
EndProject
EndProject
Global
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
GlobalSection(SolutionConfigurationPlatforms) = preSolution
...
@@ -87,6 +87,6 @@ Global
...
@@ -87,6 +87,6 @@ Global
{7064B157-DD57-4828-94C5-CA149B25CB40}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{7064B157-DD57-4828-94C5-CA149B25CB40}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = ios\Lua
Interface
TestsiOS\Lua
Interface
Test.csproj
StartupItem = ios\
N
LuaTestsiOS\
N
LuaTest.csproj
EndGlobalSection
EndGlobalSection
EndGlobal
EndGlobal
Lua
Interface
.sln
→
N
Lua.sln
View file @
be9f0df6
...
@@ -11,9 +11,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Core", "Core", "{B8664957-C
...
@@ -11,9 +11,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Core", "Core", "{B8664957-C
EndProject
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KopiLua", "Core\KopiLua\KopiLua.csproj", "{E8DDBC21-EF74-4ABA-9C49-BFC702BE25D8}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KopiLua", "Core\KopiLua\KopiLua.csproj", "{E8DDBC21-EF74-4ABA-9C49-BFC702BE25D8}"
EndProject
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lua
Interface
", "Core\Lua
Interface\LuaInterface
.csproj", "{F55CABBB-4108-4A39-94E1-581FD46DC021}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "
N
Lua", "Core\
N
Lua
\NLua
.csproj", "{F55CABBB-4108-4A39-94E1-581FD46DC021}"
EndProject
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lua
Interface
Test", "Lua
Interface
Test\Lua
Interface
Test.csproj", "{D5FCADFA-5047-40C2-B392-256875862920}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "
N
LuaTest", "
N
LuaTest\
N
LuaTest.csproj", "{D5FCADFA-5047-40C2-B392-256875862920}"
EndProject
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KeraLua", "Core\KeraLua\KeraLua.csproj", "{47153754-10F5-44D8-B578-F5A32B69061A}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "KeraLua", "Core\KeraLua\KeraLua.csproj", "{47153754-10F5-44D8-B578-F5A32B69061A}"
EndProject
EndProject
...
@@ -62,7 +62,7 @@ Global
...
@@ -62,7 +62,7 @@ Global
{47153754-10F5-44D8-B578-F5A32B69061A} = {B8664957-CB71-4F11-A4DB-59E7514BC5F3}
{47153754-10F5-44D8-B578-F5A32B69061A} = {B8664957-CB71-4F11-A4DB-59E7514BC5F3}
EndGlobalSection
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
GlobalSection(MonoDevelopProperties) = preSolution
StartupItem = Lua
Interface
Test\Lua
Interface
Test.csproj
StartupItem =
N
LuaTest\
N
LuaTest.csproj
Policies = $0
Policies = $0
$0.TextStylePolicy = $3
$0.TextStylePolicy = $3
$1.inheritsSet = null
$1.inheritsSet = null
...
@@ -190,7 +190,7 @@ Global
...
@@ -190,7 +190,7 @@ Global
$0.DotNetNamingPolicy = $28
$0.DotNetNamingPolicy = $28
$28.DirectoryNamespaceAssociation = None
$28.DirectoryNamespaceAssociation = None
$28.ResourceNamePolicy = FileFormatDefault
$28.ResourceNamePolicy = FileFormatDefault
description = Lua
Interface
description =
N
Lua
version = 2.x
version = 2.x
EndGlobalSection
EndGlobalSection
EndGlobal
EndGlobal
Lua
Interface
Test/Lua
Interface
Test.csproj
→
N
LuaTest/
N
LuaTest.csproj
View file @
be9f0df6
...
@@ -8,8 +8,8 @@
...
@@ -8,8 +8,8 @@
<ProjectGuid>
{D5FCADFA-5047-40C2-B392-256875862920}
</ProjectGuid>
<ProjectGuid>
{D5FCADFA-5047-40C2-B392-256875862920}
</ProjectGuid>
<OutputType>
Library
</OutputType>
<OutputType>
Library
</OutputType>
<AppDesignerFolder>
Properties
</AppDesignerFolder>
<AppDesignerFolder>
Properties
</AppDesignerFolder>
<RootNamespace>
Lua
Interface
Test
</RootNamespace>
<RootNamespace>
N
LuaTest
</RootNamespace>
<AssemblyName>
Lua
Interface
Test
</AssemblyName>
<AssemblyName>
N
LuaTest
</AssemblyName>
<FileAlignment>
512
</FileAlignment>
<FileAlignment>
512
</FileAlignment>
<ReleaseVersion>
2.x
</ReleaseVersion>
<ReleaseVersion>
2.x
</ReleaseVersion>
<TargetFrameworkVersion>
v3.5
</TargetFrameworkVersion>
<TargetFrameworkVersion>
v3.5
</TargetFrameworkVersion>
...
@@ -61,9 +61,9 @@
...
@@ -61,9 +61,9 @@
<Project>
{E8DDBC21-EF74-4ABA-9C49-BFC702BE25D8}
</Project>
<Project>
{E8DDBC21-EF74-4ABA-9C49-BFC702BE25D8}
</Project>
<Name>
KopiLua
</Name>
<Name>
KopiLua
</Name>
</ProjectReference>
</ProjectReference>
<ProjectReference
Include=
"..\Core\Lua
Interface\LuaInterface
.csproj"
>
<ProjectReference
Include=
"..\Core\
N
Lua
\NLua
.csproj"
>
<Project>
{F55CABBB-4108-4A39-94E1-581FD46DC021}
</Project>
<Project>
{F55CABBB-4108-4A39-94E1-581FD46DC021}
</Project>
<Name>
Lua
Interface
</Name>
<Name>
N
Lua
</Name>
</ProjectReference>
</ProjectReference>
</ItemGroup>
</ItemGroup>
<Import
Project=
"$(MSBuildToolsPath)\Microsoft.CSharp.targets"
/>
<Import
Project=
"$(MSBuildToolsPath)\Microsoft.CSharp.targets"
/>
...
...
Lua
Interface
Test/Properties/AssemblyInfo.cs
→
N
LuaTest/Properties/AssemblyInfo.cs
View file @
be9f0df6
...
@@ -5,11 +5,11 @@ using System.Runtime.InteropServices;
...
@@ -5,11 +5,11 @@ using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
// associated with an assembly.
[
assembly
:
AssemblyTitle
(
"Lua
Interface
Test"
)]
[
assembly
:
AssemblyTitle
(
"
N
LuaTest"
)]
[
assembly
:
AssemblyDescription
(
""
)]
[
assembly
:
AssemblyDescription
(
""
)]
[
assembly
:
AssemblyConfiguration
(
""
)]
[
assembly
:
AssemblyConfiguration
(
""
)]
[
assembly
:
AssemblyCompany
(
""
)]
[
assembly
:
AssemblyCompany
(
""
)]
[
assembly
:
AssemblyProduct
(
"Lua
Interface
Test"
)]
[
assembly
:
AssemblyProduct
(
"
N
LuaTest"
)]
[
assembly
:
AssemblyCopyright
(
"Copyright © 2013"
)]
[
assembly
:
AssemblyCopyright
(
"Copyright © 2013"
)]
[
assembly
:
AssemblyTrademark
(
""
)]
[
assembly
:
AssemblyTrademark
(
""
)]
[
assembly
:
AssemblyCulture
(
""
)]
[
assembly
:
AssemblyCulture
(
""
)]
...
...
Prev
1
2
3
4
5
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment