| 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 | <Project Sdk="WixToolset.Sdk"> |
| 3 | <PropertyGroup> |
| 4 | <OutputType>Library</OutputType> |
| 5 | <BindFiles>true</BindFiles> |
| 6 | <Cultures>en-us</Cultures> |
| 7 | </PropertyGroup> |
| 8 | |
| 9 | <PropertyGroup> |
| 10 | <DefineConstants> |
| 11 | $(DefineConstants); |
| 12 | bannerBmp=$(MSBuildProjectDirectory)\Bitmaps\bannrbmp.bmp; |
| 13 | dialogBmp=$(MSBuildProjectDirectory)\Bitmaps\dlgbmp.bmp; |
| 14 | exclamationIco=$(MSBuildProjectDirectory)\Bitmaps\exclamic.ico; |
| 15 | infoIco=$(MSBuildProjectDirectory)\Bitmaps\info.ico; |
| 16 | licenseRtf=$(MSBuildProjectDirectory)\license.rtf; |
| 17 | newIco=$(MSBuildProjectDirectory)\Bitmaps\new.ico; |
| 18 | upIco=$(MSBuildProjectDirectory)\Bitmaps\up.ico; |
| 19 | </DefineConstants> |
| 20 | </PropertyGroup> |
| 21 | |
| 22 | <ItemGroup> |
| 23 | <Content Include="Common_Platform.wxi" /> |
| 24 | </ItemGroup> |
| 25 | |
| 26 | <ItemGroup> |
| 27 | <ProjectReference Include="..\ca\uica.vcxproj" Platforms="arm64,x86,x64" /> |
| 28 | </ItemGroup> |
| 29 | |
| 30 | <ItemGroup> |
| 31 | <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> |
| 32 | </ItemGroup> |
| 33 | </Project> |