summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--docs/templates/vc8csharp.txt1
-rw-r--r--templates/vc8csharp.mpd3
3 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 783f80e8..297216c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Fri Jun 27 15:07:30 UTC 2014 Chad Elliott <elliott_c@ociweb.com>
+
+ * docs/templates/vc8csharp.txt:
+ * templates/vc8csharp.mpd:
+
+ Added support for the UICulture setting.
+
Fri Jun 27 13:55:06 UTC 2014 Chad Elliott <elliott_c@ociweb.com>
* config/pin_base.mpb:
diff --git a/docs/templates/vc8csharp.txt b/docs/templates/vc8csharp.txt
index 0106c1ec..e28fd70f 100644
--- a/docs/templates/vc8csharp.txt
+++ b/docs/templates/vc8csharp.txt
@@ -23,6 +23,7 @@ targetframeworkprofile = Target a certain profile of the .NET framework, such as
targetframeworkversion = The TargetFrameworkVersion attribute. Setting this also enables a reference to the System.Core using the same version number as a requirement.
toolsversion = The ToolsVersion attribute of the Project XML element.
trace = This setting corresponds to the Build General property "Conditional Compilation Constants". If this boolean template variable is set, the TRACE constant will be defined.
+uiculture = This setting indicates the culture for the project.
vcversion = Specifies the version of the generated .csproj file. This value is determined by the VC8ProjectCreator.
warning_level = This corresponds to the Build General property "Warning level". Valid values are 0 through 4.
winapp = This boolean template variable indicates whether the application target is for the Console or Windows subsystem.
diff --git a/templates/vc8csharp.mpd b/templates/vc8csharp.mpd
index 389a7d1c..e06abfef 100644
--- a/templates/vc8csharp.mpd
+++ b/templates/vc8csharp.mpd
@@ -5,6 +5,9 @@
<ProductVersion><%prversion("8.0.50727")%></ProductVersion>
<SchemaVersion><%schemaversion("2.0")%></SchemaVersion>
<ProjectGuid>{<%guid%>}</ProjectGuid>
+<%if(UICulture)%>
+ <UICulture><%UICulture%></UICulture>
+<%endif%>
<%foreach(configurations)%>
<%if(forfirst)%>
<Configuration Condition=" '$(Configuration)' == '' "><%configuration%></Configuration>