You are viewing a plain text version of this content. The canonical link for it is here.
Posted to npanday-commits@incubator.apache.org by br...@apache.org on 2013/03/06 08:03:37 UTC

svn commit: r1453189 - /incubator/npanday/trunk/plugins/aspnet-maven-plugin/src/main/resources/assemblies/components/aspnet-webapp-binaries.xml

Author: brett
Date: Wed Mar  6 08:03:37 2013
New Revision: 1453189

URL: http://svn.apache.org/r1453189
Log:
[NPANDAY-254] include satellite assemblies

Currently, satellite assemblies are only generated if MSBuild is used.
Include those in the package. This will likely need to be adjusted once they
are generated normally, to ensure they end up in the right directory for each
culture.

Modified:
    incubator/npanday/trunk/plugins/aspnet-maven-plugin/src/main/resources/assemblies/components/aspnet-webapp-binaries.xml

Modified: incubator/npanday/trunk/plugins/aspnet-maven-plugin/src/main/resources/assemblies/components/aspnet-webapp-binaries.xml
URL: http://svn.apache.org/viewvc/incubator/npanday/trunk/plugins/aspnet-maven-plugin/src/main/resources/assemblies/components/aspnet-webapp-binaries.xml?rev=1453189&r1=1453188&r2=1453189&view=diff
==============================================================================
--- incubator/npanday/trunk/plugins/aspnet-maven-plugin/src/main/resources/assemblies/components/aspnet-webapp-binaries.xml (original)
+++ incubator/npanday/trunk/plugins/aspnet-maven-plugin/src/main/resources/assemblies/components/aspnet-webapp-binaries.xml Wed Mar  6 08:03:37 2013
@@ -41,4 +41,14 @@
       <outputDirectory>ClientBin</outputDirectory>
     </dependencySet>
   </dependencySets>
-</component>
\ No newline at end of file
+  <fileSets>
+    <fileSet>
+      <useDefaultExcludes>true</useDefaultExcludes>
+      <directory>${project.basedir}/bin</directory>
+      <outputDirectory>/bin</outputDirectory>
+      <includes>
+        <include>*/${project.artifactId}.resources.dll</include>
+      </includes>
+    </fileSet>
+  </fileSets>
+</component>