blob: c926f263792c396c449060bac64d0fd0611f55d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!-- 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="$(PackageEulaSource)" Pack="true" PackagePath="/" />
<Content Include="$(PackageIconSource)" Pack="true" PackagePath="/" />
</ItemGroup>
</Project>
|