aboutsummaryrefslogtreecommitdiff
path: root/src/ext/UI/wixlib/ui.wixproj
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2022-11-21 16:57:23 -0500
committerBob Arnson <github@bobs.org>2022-12-06 15:16:20 -0500
commitc4ffb9967e4e4f7d67f5925208e3e0a885e903c5 (patch)
tree3f34ca158b1bc39d5b6aaee2a4bb2f93dae0d365 /src/ext/UI/wixlib/ui.wixproj
parent0af946e794ec85801dc542edd9905f9e9e18e7ed (diff)
downloadwix-c4ffb9967e4e4f7d67f5925208e3e0a885e903c5.tar.gz
wix-c4ffb9967e4e4f7d67f5925208e3e0a885e903c5.tar.bz2
wix-c4ffb9967e4e4f7d67f5925208e3e0a885e903c5.zip
Better solution to the UI custom action "problem."
Add platform-specific fragments that are referenced by the compiler extension. That makes it easier to customize: Just copy the dialog set authoring and rename, like in v3.
Diffstat (limited to '')
-rw-r--r--src/ext/UI/wixlib/ui.wixproj16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/ext/UI/wixlib/ui.wixproj b/src/ext/UI/wixlib/ui.wixproj
index d7c6e638..ebac0c79 100644
--- a/src/ext/UI/wixlib/ui.wixproj
+++ b/src/ext/UI/wixlib/ui.wixproj
@@ -1,12 +1,10 @@
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. --> 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"> 2<Project Sdk="WixToolset.Sdk">
3
4 <PropertyGroup> 3 <PropertyGroup>
5 <OutputType>Library</OutputType> 4 <OutputType>Library</OutputType>
6 <BindFiles>true</BindFiles> 5 <BindFiles>true</BindFiles>
7 <Cultures>en-us</Cultures> 6 <Cultures>en-us</Cultures>
8 </PropertyGroup> 7 </PropertyGroup>
9
10 <PropertyGroup> 8 <PropertyGroup>
11 <DefineConstants> 9 <DefineConstants>
12 $(DefineConstants); 10 $(DefineConstants);
@@ -19,20 +17,20 @@
19 upIco=$(MSBuildProjectDirectory)\Bitmaps\up.ico; 17 upIco=$(MSBuildProjectDirectory)\Bitmaps\up.ico;
20 </DefineConstants> 18 </DefineConstants>
21 </PropertyGroup> 19 </PropertyGroup>
22
23 <ItemGroup> 20 <ItemGroup>
24 <BindInputPaths Include="$(OutputPath)x86" BindName='x86' /> 21 <BindInputPaths Include="$(OutputPath)x86" BindName="x86" />
25 <BindInputPaths Include="$(OutputPath)x64" BindName='x64' /> 22 <BindInputPaths Include="$(OutputPath)x64" BindName="x64" />
26 <BindInputPaths Include="$(OutputPath)arm64" BindName='arm64' /> 23 <BindInputPaths Include="$(OutputPath)arm64" BindName="arm64" />
24 </ItemGroup>
25 <ItemGroup>
26 <Content Include="Common_Platform.wxi" />
27 </ItemGroup> 27 </ItemGroup>
28
29 <ItemGroup> 28 <ItemGroup>
30 <ProjectReference Include="..\ca\uica.vcxproj" Properties="Platform=x86" /> 29 <ProjectReference Include="..\ca\uica.vcxproj" Properties="Platform=x86" />
31 <ProjectReference Include="..\ca\uica.vcxproj" Properties="Platform=x64" /> 30 <ProjectReference Include="..\ca\uica.vcxproj" Properties="Platform=x64" />
32 <ProjectReference Include="..\ca\uica.vcxproj" Properties="Platform=ARM64" /> 31 <ProjectReference Include="..\ca\uica.vcxproj" Properties="Platform=ARM64" />
33 </ItemGroup> 32 </ItemGroup>
34
35 <ItemGroup> 33 <ItemGroup>
36 <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> 34 <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
37 </ItemGroup> 35 </ItemGroup>
38</Project> 36</Project> \ No newline at end of file