diff --git a/LuaInterface/LuaInterface/CheckType.cs b/LuaInterface/LuaInterface/CheckType.cs index d994e71bd7..4ac891b4d0 100644 --- a/LuaInterface/LuaInterface/CheckType.cs +++ b/LuaInterface/LuaInterface/CheckType.cs @@ -4,7 +4,7 @@ using System.Drawing; using System.Reflection; using Lua511; -namespace LuaInterface +namespace NLua { /* * Type checking and conversion functions. diff --git a/LuaInterface/LuaInterface/GenerateEventAssembly.cs b/LuaInterface/LuaInterface/GenerateEventAssembly.cs index bb4df22bfa..14166fca45 100644 --- a/LuaInterface/LuaInterface/GenerateEventAssembly.cs +++ b/LuaInterface/LuaInterface/GenerateEventAssembly.cs @@ -5,7 +5,7 @@ using System.Reflection; using System.Reflection.Emit; using System.Threading; -namespace LuaInterface +namespace NLua { /* * Structure to store a type and the return types of diff --git a/LuaInterface/LuaInterface/Lua.cs b/LuaInterface/LuaInterface/Lua.cs index 0a15fd59f0..b80e5b93f9 100644 --- a/LuaInterface/LuaInterface/Lua.cs +++ b/LuaInterface/LuaInterface/Lua.cs @@ -1,5 +1,5 @@ -namespace LuaInterface +namespace NLua { using System; using System.IO; diff --git a/LuaInterface/LuaInterface/LuaBase.cs b/LuaInterface/LuaInterface/LuaBase.cs index dca7041420..edec2017cd 100644 --- a/LuaInterface/LuaInterface/LuaBase.cs +++ b/LuaInterface/LuaInterface/LuaBase.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using System.Text; -namespace LuaInterface +namespace NLua { /// /// Base class to provide consistent disposal flow across lua objects. Uses code provided by Yves Duhoux and suggestions by Hans Schmeidenbacher and Qingrui Li diff --git a/LuaInterface/LuaInterface/LuaException.cs b/LuaInterface/LuaInterface/LuaException.cs index 90d53df8eb..6b053cba8f 100644 --- a/LuaInterface/LuaInterface/LuaException.cs +++ b/LuaInterface/LuaInterface/LuaException.cs @@ -1,7 +1,7 @@ using System; using System.Runtime.Serialization; -namespace LuaInterface +namespace NLua { /// /// Exceptions thrown by the Lua runtime diff --git a/LuaInterface/LuaInterface/LuaFunction.cs b/LuaInterface/LuaInterface/LuaFunction.cs index 4904cdfd88..00ed42f63c 100644 --- a/LuaInterface/LuaInterface/LuaFunction.cs +++ b/LuaInterface/LuaInterface/LuaFunction.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Text; using Lua511; -namespace LuaInterface +namespace NLua { public class LuaFunction : LuaBase { diff --git a/LuaInterface/LuaInterface/LuaGlobalAttribute.cs b/LuaInterface/LuaInterface/LuaGlobalAttribute.cs index 4c4efcb30e..6b43729735 100644 --- a/LuaInterface/LuaInterface/LuaGlobalAttribute.cs +++ b/LuaInterface/LuaInterface/LuaGlobalAttribute.cs @@ -1,6 +1,6 @@ using System; -namespace LuaInterface +namespace NLua { /// /// Marks a method for global usage in Lua scripts diff --git a/LuaInterface/LuaInterface/LuaHideAttribute.cs b/LuaInterface/LuaInterface/LuaHideAttribute.cs index f199577283..e629f499d3 100644 --- a/LuaInterface/LuaInterface/LuaHideAttribute.cs +++ b/LuaInterface/LuaInterface/LuaHideAttribute.cs @@ -1,6 +1,6 @@ using System; -namespace LuaInterface +namespace NLua { /// /// Marks a method, field or property to be hidden from Lua auto-completion diff --git a/LuaInterface/LuaInterface/LuaRegistrationHelper.cs b/LuaInterface/LuaInterface/LuaRegistrationHelper.cs index dd86059c71..5939787d59 100644 --- a/LuaInterface/LuaInterface/LuaRegistrationHelper.cs +++ b/LuaInterface/LuaInterface/LuaRegistrationHelper.cs @@ -2,7 +2,7 @@ using System.Diagnostics.CodeAnalysis; using System.Reflection; -namespace LuaInterface +namespace NLua { public static class LuaRegistrationHelper { diff --git a/LuaInterface/LuaInterface/LuaScriptException.cs b/LuaInterface/LuaInterface/LuaScriptException.cs index fa0548618f..7ba355fd24 100644 --- a/LuaInterface/LuaInterface/LuaScriptException.cs +++ b/LuaInterface/LuaInterface/LuaScriptException.cs @@ -1,6 +1,6 @@ using System; -namespace LuaInterface +namespace NLua { /// /// Exceptions thrown by the Lua runtime because of errors in the script diff --git a/LuaInterface/LuaInterface/LuaTable.cs b/LuaInterface/LuaInterface/LuaTable.cs index 4e5714a5dc..85fca15c05 100644 --- a/LuaInterface/LuaInterface/LuaTable.cs +++ b/LuaInterface/LuaInterface/LuaTable.cs @@ -4,7 +4,7 @@ using System.Text; using Lua511; using System.Collections; -namespace LuaInterface +namespace NLua { /* * Wrapper class for Lua tables diff --git a/LuaInterface/LuaInterface/LuaUserData.cs b/LuaInterface/LuaInterface/LuaUserData.cs index ff4abfb8fa..93c66b496d 100644 --- a/LuaInterface/LuaInterface/LuaUserData.cs +++ b/LuaInterface/LuaInterface/LuaUserData.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Text; using Lua511; -namespace LuaInterface +namespace NLua { public class LuaUserData : LuaBase { diff --git a/LuaInterface/LuaInterface/Metatables.cs b/LuaInterface/LuaInterface/Metatables.cs index 3a543d861c..9f114ded5a 100644 --- a/LuaInterface/LuaInterface/Metatables.cs +++ b/LuaInterface/LuaInterface/Metatables.cs @@ -1,4 +1,4 @@ -namespace LuaInterface +namespace NLua { using System; using System.IO; diff --git a/LuaInterface/LuaInterface/MethodWrapper.cs b/LuaInterface/LuaInterface/MethodWrapper.cs index 90625e6780..9be1ccfc30 100644 --- a/LuaInterface/LuaInterface/MethodWrapper.cs +++ b/LuaInterface/LuaInterface/MethodWrapper.cs @@ -1,4 +1,4 @@ -namespace LuaInterface +namespace NLua { using System; using System.IO; diff --git a/LuaInterface/LuaInterface/ObjectTranslator.cs b/LuaInterface/LuaInterface/ObjectTranslator.cs index c047d0471f..7488e2699c 100644 --- a/LuaInterface/LuaInterface/ObjectTranslator.cs +++ b/LuaInterface/LuaInterface/ObjectTranslator.cs @@ -1,4 +1,4 @@ -namespace LuaInterface +namespace NLua { using System; using System.IO; diff --git a/LuaInterface/LuaInterface/ProxyType.cs b/LuaInterface/LuaInterface/ProxyType.cs index 6160dc2fb8..2355f9d43d 100644 --- a/LuaInterface/LuaInterface/ProxyType.cs +++ b/LuaInterface/LuaInterface/ProxyType.cs @@ -2,7 +2,7 @@ using System; using System.Globalization; using System.Reflection; -namespace LuaInterface +namespace NLua { /// /// Summary description for ProxyType.