- Ignore .vs directory (new Dev14 directory for IDE cache/.suo files).
- Add project reference for multiproc build.
- Don't build compressed bundle in debug (save cabbing time)
This commit is contained in:
Bob Arnson 2015-01-30 14:27:33 -05:00
Родитель c472a291ab
Коммит 1e749b0eed
3 изменённых файлов: 6 добавлений и 1 удалений

1
.gitignore поставляемый
Просмотреть файл

@ -1,6 +1,7 @@
[Bb]uild/
[Pp]ackages/
ipch/
.vs/
*.chw
*.suo

Просмотреть файл

@ -40,6 +40,7 @@
<ItemGroup>
<ProjectReference Include="..\..\..\DTF\Libraries\WindowsInstaller\WindowsInstaller.csproj" />
<ProjectReference Include="..\..\..\DTF\Tools\MakeSfxCA\MakeSfxCA.csproj" />
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), wix.proj))\tools\WixBuild.targets" />

Просмотреть файл

@ -239,7 +239,10 @@
</PropertyGroup>
<!-- Global setting to control when the bundle is compressed. -->
<PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<WixBundleCompressed>no</WixBundleCompressed>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<WixBundleCompressed>yes</WixBundleCompressed>
</PropertyGroup>