summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Mitz <mitza-oci@users.noreply.github.com>2010-10-04 15:34:27 +0000
committerAdam Mitz <mitza-oci@users.noreply.github.com>2010-10-04 15:34:27 +0000
commit4c12769e2c0745f961538657ac8e5a7dfddedb2a (patch)
tree3ba7da0e22ba5f34af3d2449e0aaea6bf6a429ab
parentd1fe9155e3b740e9755b0458adf073165184782a (diff)
downloadMPC-4c12769e2c0745f961538657ac8e5a7dfddedb2a.tar.gz
ChangeLogTag: Mon Oct 4 15:32:05 UTC 2010 Adam Mitz <mitza@ociweb.com>
-rw-r--r--ChangeLog8
-rw-r--r--modules/ProjectCreator.pm1
-rw-r--r--templates/vc8csharp.mpd3
3 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e3f73f50..e1e24272 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Mon Oct 4 15:32:05 UTC 2010 Adam Mitz <mitza@ociweb.com>
+
+ * modules/ProjectCreator.pm:
+ * templates/vc8csharp.mpd:
+
+ Added "Embedded_Resource_Files" as a component name for C#.
+ From Charles Calkins (calkinsc at ociweb dot com).
+
Mon Sep 27 11:44:08 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* config/wireshark.mpb:
diff --git a/modules/ProjectCreator.pm b/modules/ProjectCreator.pm
index c1cf837e..1084290b 100644
--- a/modules/ProjectCreator.pm
+++ b/modules/ProjectCreator.pm
@@ -203,6 +203,7 @@ my %csvc = ('source_files' => [ "\\.cs" ],
'aspx_files' => [ "\\.aspx" ],
'ico_files' => [ "\\.ico" ],
'documentation_files' => [ "README", "readme", "\\.doc", "\\.txt", "\\.html" ],
+ 'embedded_resource_files' => [],
);
my %csma = ('source_files' => [ 'dependent_upon',
diff --git a/templates/vc8csharp.mpd b/templates/vc8csharp.mpd
index e6a4b48b..9f5cc751 100644
--- a/templates/vc8csharp.mpd
+++ b/templates/vc8csharp.mpd
@@ -207,6 +207,9 @@
</Compile>
<%endif%>
<%endfor%>
+<%foreach(embedded_resource_files)%>
+ <EmbeddedResource Include="<%embedded_resource_file%>" />
+<%endfor%>
<%foreach(ico_files)%>
<Content Include="<%ico_file%>" />
<%endfor%>