From 5e4def3ee7ce4a5a5a606b7ec92ef6313bb7c116 Mon Sep 17 00:00:00 2001 From: Homer Horwitz Date: Sat, 8 Nov 2008 21:18:23 +0000 Subject: Mantis#2589: Thanks StrawberryFride, for a patch that fixes the build on VS2005. --- .../ScriptEngine/Components/DotNetEngine/Compilers/CILCompiler.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'OpenSim/ScriptEngine/Components') 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 internal static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); private string ScriptEnginesPath = "ScriptEngines"; private string Name { get { return "SECS.DotNetEngine.CILCompiler"; } } - internal string ScriptAssemblyName { get; set; } - + private string m_scriptAssemblyName; + internal string ScriptAssemblyName { get { return m_scriptAssemblyName; } set { m_scriptAssemblyName = value; } } + // Default inherit protected string ScriptInheritFrom = typeof(ScriptAssemblies.ScriptBase).Name; private readonly System.Security.Cryptography.MD5CryptoServiceProvider MD5Sum = new System.Security.Cryptography.MD5CryptoServiceProvider(); -- cgit v1.1