aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Prebuild/ChangeLog3
-rw-r--r--Prebuild/src/Core/Targets/VSGenericTarget.cs3
-rw-r--r--Prebuild/src/Properties/AssemblyInfo.cs3
3 files changed, 7 insertions, 2 deletions
diff --git a/Prebuild/ChangeLog b/Prebuild/ChangeLog
index 8092999..c1c8be1 100644
--- a/Prebuild/ChangeLog
+++ b/Prebuild/ChangeLog
@@ -1,3 +1,6 @@
12017, August Unit Umarov
2 * add Freak Tech patch for prefer32bit default to false
3
12015, June Fly-Man- <fly.man.opensim@gmail.com> 42015, June Fly-Man- <fly.man.opensim@gmail.com>
2 * V2.0.7 (WhiteCore Build) 5 * V2.0.7 (WhiteCore Build)
3 * Added the VS2012/VS2013 targets so .Net 4.5 can be used for WhiteCore 6 * Added the VS2012/VS2013 targets so .Net 4.5 can be used for WhiteCore
diff --git a/Prebuild/src/Core/Targets/VSGenericTarget.cs b/Prebuild/src/Core/Targets/VSGenericTarget.cs
index b8904ad..570c3a4 100644
--- a/Prebuild/src/Core/Targets/VSGenericTarget.cs
+++ b/Prebuild/src/Core/Targets/VSGenericTarget.cs
@@ -235,7 +235,7 @@ namespace Prebuild.Core.Targets
235 ps.WriteLine(" <ConfigurationOverrideFile>"); 235 ps.WriteLine(" <ConfigurationOverrideFile>");
236 ps.WriteLine(" </ConfigurationOverrideFile>"); 236 ps.WriteLine(" </ConfigurationOverrideFile>");
237 ps.WriteLine(" <DefineConstants>{0}</DefineConstants>", 237 ps.WriteLine(" <DefineConstants>{0}</DefineConstants>",
238 conf.Options["CompilerDefines"] == "" ? this.kernel.ForcedConditionals : conf.Options["CompilerDefines"] + ";" + kernel.ForcedConditionals); 238 conf.Options["CompilerDefines"].ToString() == "" ? this.kernel.ForcedConditionals : conf.Options["CompilerDefines"] + ";" + kernel.ForcedConditionals);
239 ps.WriteLine(" <DocumentationFile>{0}</DocumentationFile>", Helper.NormalizePath(conf.Options["XmlDocFile"].ToString())); 239 ps.WriteLine(" <DocumentationFile>{0}</DocumentationFile>", Helper.NormalizePath(conf.Options["XmlDocFile"].ToString()));
240 ps.WriteLine(" <DebugSymbols>{0}</DebugSymbols>", conf.Options["DebugInformation"]); 240 ps.WriteLine(" <DebugSymbols>{0}</DebugSymbols>", conf.Options["DebugInformation"]);
241 ps.WriteLine(" <FileAlignment>{0}</FileAlignment>", conf.Options["FileAlignment"]); 241 ps.WriteLine(" <FileAlignment>{0}</FileAlignment>", conf.Options["FileAlignment"]);
@@ -254,6 +254,7 @@ namespace Prebuild.Core.Targets
254 ps.WriteLine(" <NoStdLib>{0}</NoStdLib>", conf.Options["NoStdLib"]); 254 ps.WriteLine(" <NoStdLib>{0}</NoStdLib>", conf.Options["NoStdLib"]);
255 ps.WriteLine(" <NoWarn>{0}</NoWarn>", conf.Options["SuppressWarnings"]); 255 ps.WriteLine(" <NoWarn>{0}</NoWarn>", conf.Options["SuppressWarnings"]);
256 ps.WriteLine(" <PlatformTarget>{0}</PlatformTarget>", conf.Platform); 256 ps.WriteLine(" <PlatformTarget>{0}</PlatformTarget>", conf.Platform);
257 ps.WriteLine(" <Prefer32Bit>false</Prefer32Bit>");
257 ps.WriteLine(" </PropertyGroup>"); 258 ps.WriteLine(" </PropertyGroup>");
258 } 259 }
259 260
diff --git a/Prebuild/src/Properties/AssemblyInfo.cs b/Prebuild/src/Properties/AssemblyInfo.cs
index ebb832a..079d6a5 100644
--- a/Prebuild/src/Properties/AssemblyInfo.cs
+++ b/Prebuild/src/Properties/AssemblyInfo.cs
@@ -68,7 +68,8 @@ using System.Resources;
68 "Rob Loach, " + 68 "Rob Loach, " +
69 "David Hudson," + 69 "David Hudson," +
70 "John Hurliman" + 70 "John Hurliman" +
71 "WhiteCore Development")] 71 "WhiteCore Development" +
72 "OpenSimulator developers")]
72[assembly: AssemblyTrademark("")] 73[assembly: AssemblyTrademark("")]
73[assembly: AssemblyCulture("")] 74[assembly: AssemblyCulture("")]
74[assembly: NeutralResourcesLanguageAttribute("en-US")] 75[assembly: NeutralResourcesLanguageAttribute("en-US")]