* Installers/Zip/Build.Installer.Zip.csproj: Do not zip documentation
source, vshost.exe or copies of the source tree. Make sure zip always operates on a fresh copy of the source tree.
This commit is contained in:
parent
c0e883bb9a
commit
9ac3624258
1 changed files with 8 additions and 3 deletions
|
@ -21,15 +21,20 @@
|
|||
<OutputPath>.\opentk\</OutputPath>
|
||||
</PropertyGroup>
|
||||
<Target Name="Build">
|
||||
<DelTree Path="$(OutputPath)" />
|
||||
<CreateItem
|
||||
Include="$(InputPath)**\*.*"
|
||||
Exclude="$(InputPath)**\.svn\**\*.*;
|
||||
Exclude="$(InputPath)**\.svn\**\*.*;
|
||||
$(InputPath)**\obj\**\*.*;
|
||||
$(InputPath)**\OpenTK*.xml;
|
||||
$(InputPath)**\opentk\**\*.*;
|
||||
$(InputPath)Documentation\Source\**\*.*;
|
||||
$(InputPath)**\OpenTK*.xml;
|
||||
$(InputPath)**\*.suo;
|
||||
$(InputPath)**\*.pidb;
|
||||
$(InputPath)**\*.userprefs;
|
||||
$(InputPath)**\opentk*.zip">
|
||||
$(InputPath)**\opentk*.zip;
|
||||
$(InputPath)**\vshost*.exe;
|
||||
">
|
||||
<Output TaskParameter="Include" ItemName="FileList" />
|
||||
</CreateItem>
|
||||
<DateStamp>
|
||||
|
|
Loading…
Reference in a new issue