Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>I have found the answer in this blog post. It works perfectly: <a href="http://sedodream.com/2010/05/01/WebDeploymentToolMSDeployBuildPackageIncludingExtraFilesOrExcludingSpecificFiles.aspx" rel="nofollow">http://sedodream.com/2010/05/01/WebDeploymentToolMSDeployBuildPackageIncludingExtraFilesOrExcludingSpecificFiles.aspx</a></p> <p>Basically here's the code I added to my project file.</p> <pre><code>&lt;!-- Added by RSL to deal with deploying the plugins folder Followed tutorial here: http://sedodream.com/2010/05/01/WebDeploymentToolMSDeployBuildPackageIncludingExtraFilesOrExcludingSpecificFiles.aspx --&gt; &lt;PropertyGroup&gt; &lt;CopyAllFilesToSingleFolderForPackageDependsOn&gt; CollectExtensionDLLs; CollectExtensionViews; $(CopyAllFilesToSingleFolderForPackageDependsOn); &lt;/CopyAllFilesToSingleFolderForPackageDependsOn&gt; &lt;/PropertyGroup&gt; &lt;Target Name="CollectExtensionDLLs"&gt; &lt;ItemGroup&gt; &lt;_CustomFiles Include="bin\Extensions\**\*"/&gt; &lt;FilesForPackagingFromProject Include="%(_CustomFiles.Identity)"&gt; &lt;DestinationRelativePath&gt;bin\Extensions\%(RecursiveDir)%(Filename)%(Extension)&lt;/DestinationRelativePath&gt; &lt;/FilesForPackagingFromProject&gt; &lt;/ItemGroup&gt; &lt;/Target&gt; &lt;Target Name="CollectExtensionViews"&gt; &lt;ItemGroup&gt; &lt;_CustomFiles Include="Views\Extensions\**\*"/&gt; &lt;FilesForPackagingFromProject Include="%(_CustomFiles.Identity)"&gt; &lt;DestinationRelativePath&gt;Views\Extensions\%(RecursiveDir)%(Filename)%(Extension)&lt;/DestinationRelativePath&gt; &lt;/FilesForPackagingFromProject&gt; &lt;/ItemGroup&gt; &lt;/Target&gt; &lt;!-- //// End Rob's modifications --&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload