| 1 | <!-- 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. --> |
| 2 | |
| 3 | <Project> |
| 4 | <PropertyGroup> |
| 5 | <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow> |
| 6 | <SignAssembly>true</SignAssembly> |
| 7 | <AssemblyOriginatorKeyFile>$([System.IO.Path]::GetFullPath($(MSBuildThisFileDirectory)wix.snk))</AssemblyOriginatorKeyFile> |
| 8 | <CreateDocumentation Condition=" '$(CreateDocumentationFile)'!='true' ">false</CreateDocumentation> |
| 9 | <DocumentationFile Condition=" '$(CreateDocumentationFile)'=='true' ">$(OutputPath)\$(AssemblyName).xml</DocumentationFile> |
| 10 | <DebugType Condition=" '$(DebugType)'=='' ">embedded</DebugType> |
| 11 | </PropertyGroup> |
| 12 | |
| 13 | <ItemGroup Condition=" '$(IsWixTestProject)'!='true' "> |
| 14 | <Content Include="$(MSBuildThisFileDirectory)internal\images\wix.png" PackagePath="/" /> |
| 15 | </ItemGroup> |
| 16 | </Project> |