mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
Adding extra files during publish process
--HG-- branch : 1.x
This commit is contained in:
@@ -173,23 +173,37 @@
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target> -->
|
||||
<ItemGroup>
|
||||
<Orchard-Web-Bins Include="bin\*"/>
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<CopyAllFilesToSingleFolderForPackageDependsOn>
|
||||
CustomCollectFiles;
|
||||
$(CopyAllFilesToSingleFolderForPackageDependsOn);
|
||||
</CopyAllFilesToSingleFolderForPackageDependsOn>
|
||||
|
||||
</PropertyGroup>
|
||||
<Target Name="CustomCollectFiles">
|
||||
<ItemGroup>
|
||||
<ItemGroup>
|
||||
<Orchard-Web-Bins Include="bin\*" />
|
||||
<SqlCeBinariesx86 Include="..\..\lib\sqlce\x86\**\*" />
|
||||
<SqlCeBinariesx64 Include="..\..\lib\sqlce\amd64\**\*" />
|
||||
|
||||
<_CustomFiles
|
||||
Include="Modules\**\*;Themes\**\*;Core\**\*;**\*.po"
|
||||
Exclude="**\obj\**;@(Orchard-Web-Bins -> '**\%(Filename)%(Extension)');**\*.csproj.user;**\*.hg*"/>
|
||||
<FilesForPackagingFromProject Include="%(_CustomFiles.Identity)">
|
||||
Exclude="**\obj\**;@(Orchard-Web-Bins -> '**\%(Filename)%(Extension)');**\*.csproj.user;**\*.hg*"
|
||||
/>
|
||||
<FilesForPackagingFromProject Include="%(_CustomFiles.Identity)">
|
||||
<DestinationRelativePath>%(RelativeDir)%(Filename)%(Extension)</DestinationRelativePath>
|
||||
</FilesForPackagingFromProject>
|
||||
|
||||
<_SqlCeBinariesx86Files Include="@(SqlCeBinariesx86);" />
|
||||
<FilesForPackagingFromProject Include="%(_SqlCeBinariesx86Files.Identity)">
|
||||
<DestinationRelativePath>bin\x86\%(RecursiveDir)%(Filename)%(Extension)</DestinationRelativePath>
|
||||
</FilesForPackagingFromProject>
|
||||
|
||||
<_SqlCeBinariesx64Files Include="@(SqlCeBinariesx64);" />
|
||||
<FilesForPackagingFromProject Include="%(_SqlCeBinariesx64Files.Identity)">
|
||||
<DestinationRelativePath>bin\amd64\%(RecursiveDir)%(Filename)%(Extension)</DestinationRelativePath>
|
||||
</FilesForPackagingFromProject>
|
||||
|
||||
</ItemGroup>
|
||||
</Target>
|
||||
<Target Name="CopySqlCeBinaries">
|
||||
|
@@ -88,10 +88,6 @@
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\lib\fluentnhibernate\FluentNHibernate.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="ICSharpCode.SharpZipLib, Version=0.85.5.452, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\lib\sharpziplib\ICSharpCode.SharpZipLib.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\lib\fluentnhibernate\log4net.dll</HintPath>
|
||||
|
Reference in New Issue
Block a user