summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Mitz <mitza-oci@users.noreply.github.com>2011-03-18 15:08:09 +0000
committerAdam Mitz <mitza-oci@users.noreply.github.com>2011-03-18 15:08:09 +0000
commit12ed022370211de2bfadf015a8ff2de6d9a3ea60 (patch)
tree0e4bca540b5fbf35cc93b09581d58932a0b921a3
parent879989c267a35ef1584cc62ea66301d80378e107 (diff)
downloadMPC-12ed022370211de2bfadf015a8ff2de6d9a3ea60.tar.gz
ChangeLogTag: Fri Mar 18 15:07:53 UTC 2011 Adam Mitz <mitza@ociweb.com>
-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 4300441a..cf38eba5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Fri Mar 18 15:07:53 UTC 2011 Adam Mitz <mitza@ociweb.com>
+
+ * docs/templates/vc8csharp.txt:
+ * templates/vc8csharp.mpd:
+
+ Added the "PlatformTarget" template variable for C#.
+
Tue Mar 15 14:54:48 UTC 2011 Adam Mitz <mitza@ociweb.com>
* templates/vc10.mpd:
diff --git a/docs/templates/vc8csharp.txt b/docs/templates/vc8csharp.txt
index b62cfb26..f396740e 100644
--- a/docs/templates/vc8csharp.txt
+++ b/docs/templates/vc8csharp.txt
@@ -11,6 +11,7 @@ defines = Macros that are specific to a particular configuration.
disablespecificwarnings = A space separated list of warning numbers to be disabled.
guid = The value for this variable is generated during project generation.
keyfile = Indicate the keyfile to use when signing the assembly.
+platformtarget = Set the Platform Target, for example x86 to force a 32-bit .NET framework.
prversion = This setting specifies the ProductVersion in the generated .csproj file.
registerforcominterop = This setting corresponds to the Build Output property "Register for COM interop". The boolean values true and false correspond to enabling or disabling the feature in the IDE.
schemaversion = This setting specifies the SchemaVersion in the generated .csproj file.
diff --git a/templates/vc8csharp.mpd b/templates/vc8csharp.mpd
index 9f5cc751..5acd4346 100644
--- a/templates/vc8csharp.mpd
+++ b/templates/vc8csharp.mpd
@@ -80,6 +80,9 @@
<WarningLevel><%warning_level("4")%></WarningLevel>
<DebugType><%if(optimize)%>none<%else%>full<%endif%></DebugType>
<ErrorReport>prompt</ErrorReport>
+<%if(PlatformTarget)%>
+ <PlatformTarget><%PlatformTarget%></PlatformTarget>
+<%endif%>
</PropertyGroup>
<%endfor%>
<%endfor%>