summaryrefslogtreecommitdiff
path: root/templates/vc8csharp.mpd
diff options
context:
space:
mode:
authorAdam Mitz <mitza-oci@users.noreply.github.com>2010-08-23 22:30:28 +0000
committerAdam Mitz <mitza-oci@users.noreply.github.com>2010-08-23 22:30:28 +0000
commit48b88ac30382b5a5898295f25af34de28604d269 (patch)
tree1669640ad7b41dff996c63289d686f6f9649b277 /templates/vc8csharp.mpd
parentecc0910063acadb220dcab6b80edc768402a9685 (diff)
downloadMPC-48b88ac30382b5a5898295f25af34de28604d269.tar.gz
ChangeLogTag: Mon Aug 23 22:29:24 UTC 2010 Adam Mitz <mitza@ociweb.com>
Diffstat (limited to 'templates/vc8csharp.mpd')
-rw-r--r--templates/vc8csharp.mpd13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/vc8csharp.mpd b/templates/vc8csharp.mpd
index da29da9e..b6edc535 100644
--- a/templates/vc8csharp.mpd
+++ b/templates/vc8csharp.mpd
@@ -82,6 +82,15 @@
</PropertyGroup>
<%endfor%>
<%endfor%>
+<%if(!compares(vcversion, 8.00))%>
+<%foreach(source_files)%>
+<%if(ends_with(source_file, \.manifest))%>
+ <PropertyGroup>
+ <ApplicationManifest><%source_file%></ApplicationManifest>
+ </PropertyGroup>
+<%endif%>
+<%endfor%>
+<%endif%>
<ItemGroup>
<%if(after)%>
<!-- MPC ADD DEPENDENCIES -->
@@ -146,12 +155,16 @@
<%endfor%>
<%foreach(source_files)%>
<%if(!contains(flag_overrides(source_file, subtype), ^(Form|Component)$))%>
+<%if(!compares(vcversion, 8.00) && ends_with(source_file, \.manifest))%>
+ <None Include="<%source_file%>" />
+<%else%>
<Compile Include="<%source_file%>">
<%if(flag_overrides(source_file, dependent_upon))%>
<DependentUpon><%flag_overrides(source_file, dependent_upon)%></DependentUpon>
<%endif%>
</Compile>
<%endif%>
+<%endif%>
<%endfor%>
<%foreach(custom_types)%>
<%foreach(custom_type->input_files)%>