diff options
author | Homer Horwitz | 2008-11-08 21:18:23 +0000 |
---|---|---|
committer | Homer Horwitz | 2008-11-08 21:18:23 +0000 |
commit | 5e4def3ee7ce4a5a5a606b7ec92ef6313bb7c116 (patch) | |
tree | 4517b9090fca0749ba86cc847144c14638623643 /OpenSim/ScriptEngine | |
parent | * Fixed issue where incorrect braces nesting resulted in a section of PacketQ... (diff) | |
download | opensim-SC_OLD-5e4def3ee7ce4a5a5a606b7ec92ef6313bb7c116.zip opensim-SC_OLD-5e4def3ee7ce4a5a5a606b7ec92ef6313bb7c116.tar.gz opensim-SC_OLD-5e4def3ee7ce4a5a5a606b7ec92ef6313bb7c116.tar.bz2 opensim-SC_OLD-5e4def3ee7ce4a5a5a606b7ec92ef6313bb7c116.tar.xz |
Mantis#2589: Thanks StrawberryFride, for a patch that fixes the build on VS2005.
Diffstat (limited to 'OpenSim/ScriptEngine')
-rw-r--r-- | OpenSim/ScriptEngine/Components/DotNetEngine/Compilers/CILCompiler.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/ScriptEngine/Components/DotNetEngine/Compilers/CILCompiler.cs b/OpenSim/ScriptEngine/Components/DotNetEngine/Compilers/CILCompiler.cs index e221e1b..4b0e679 100644 --- a/OpenSim/ScriptEngine/Components/DotNetEngine/Compilers/CILCompiler.cs +++ b/OpenSim/ScriptEngine/Components/DotNetEngine/Compilers/CILCompiler.cs | |||
@@ -41,8 +41,9 @@ namespace OpenSim.ScriptEngine.Components.DotNetEngine.Compilers | |||
41 | internal static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 41 | internal static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
42 | private string ScriptEnginesPath = "ScriptEngines"; | 42 | private string ScriptEnginesPath = "ScriptEngines"; |
43 | private string Name { get { return "SECS.DotNetEngine.CILCompiler"; } } | 43 | private string Name { get { return "SECS.DotNetEngine.CILCompiler"; } } |
44 | internal string ScriptAssemblyName { get; set; } | 44 | private string m_scriptAssemblyName; |
45 | 45 | internal string ScriptAssemblyName { get { return m_scriptAssemblyName; } set { m_scriptAssemblyName = value; } } | |
46 | |||
46 | // Default inherit | 47 | // Default inherit |
47 | protected string ScriptInheritFrom = typeof(ScriptAssemblies.ScriptBase).Name; | 48 | protected string ScriptInheritFrom = typeof(ScriptAssemblies.ScriptBase).Name; |
48 | private readonly System.Security.Cryptography.MD5CryptoServiceProvider MD5Sum = new System.Security.Cryptography.MD5CryptoServiceProvider(); | 49 | private readonly System.Security.Cryptography.MD5CryptoServiceProvider MD5Sum = new System.Security.Cryptography.MD5CryptoServiceProvider(); |