blob: 57111c40cb9cc6b64aedc0bc54363227c9e0bdfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
<Project>
<PropertyGroup>
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)wix.snk))</AssemblyOriginatorKeyFile>
<CreateDocumentation Condition=" '$(CreateDocumentationFile)'!='true' ">false</CreateDocumentation>
<DocumentationFile Condition=" '$(CreateDocumentationFile)'=='true' ">$(OutputPath)\$(AssemblyName).xml</DocumentationFile>
<DebugType Condition=" '$(DebugType)'=='' ">embedded</DebugType>
</PropertyGroup>
<ItemGroup Condition=" '$(IsWixTestProject)'!='true' ">
<Content Include="$(MSBuildThisFileDirectory)internal\images\wix.png" PackagePath="/" />
</ItemGroup>
</Project>
|