diff options
author | Rob Mensching <rob@firegiant.com> | 2024-01-11 18:26:20 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2024-03-06 18:03:38 -0800 |
commit | 0d3d54992104288e9ee0c834d0b96e8502fd2d42 (patch) | |
tree | 9efa49c4983cd2ba1becab64bd1f2faccac88acf /src/ext/Bal/wixiuiba/wixiuiba.vcxproj | |
parent | 2824298d9dd817a47527c920363556b54ead5d5d (diff) | |
download | wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.tar.gz wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.tar.bz2 wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.zip |
Move the BootstrapperApplication out of proc
Diffstat (limited to 'src/ext/Bal/wixiuiba/wixiuiba.vcxproj')
-rw-r--r-- | src/ext/Bal/wixiuiba/wixiuiba.vcxproj | 43 |
1 files changed, 31 insertions, 12 deletions
diff --git a/src/ext/Bal/wixiuiba/wixiuiba.vcxproj b/src/ext/Bal/wixiuiba/wixiuiba.vcxproj index 29c7cb50..6b20db30 100644 --- a/src/ext/Bal/wixiuiba/wixiuiba.vcxproj +++ b/src/ext/Bal/wixiuiba/wixiuiba.vcxproj | |||
@@ -1,7 +1,7 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <!-- 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 | <!-- 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. --> |
3 | 3 | ||
4 | <Project DefaultTargets="Build" Toolsxmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | 4 | <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
5 | <ItemGroup Label="ProjectConfigurations"> | 5 | <ItemGroup Label="ProjectConfigurations"> |
6 | <ProjectConfiguration Include="Debug|ARM64"> | 6 | <ProjectConfiguration Include="Debug|ARM64"> |
7 | <Configuration>Debug</Configuration> | 7 | <Configuration>Debug</Configuration> |
@@ -31,39 +31,58 @@ | |||
31 | 31 | ||
32 | <PropertyGroup Label="Globals"> | 32 | <PropertyGroup Label="Globals"> |
33 | <ProjectGuid>{0F73E566-925C-448D-99CB-3A7F5DF399C8}</ProjectGuid> | 33 | <ProjectGuid>{0F73E566-925C-448D-99CB-3A7F5DF399C8}</ProjectGuid> |
34 | <ConfigurationType>DynamicLibrary</ConfigurationType> | 34 | <Keyword>Win32Proj</Keyword> |
35 | <ConfigurationType>Application</ConfigurationType> | ||
36 | <ProjectSubSystem>Windows</ProjectSubSystem> | ||
35 | <CharacterSet>Unicode</CharacterSet> | 37 | <CharacterSet>Unicode</CharacterSet> |
36 | <TargetName>wixiuiba</TargetName> | 38 | <Description>WiX Internal UI Bootstrapper Application</Description> |
37 | <ProjectModuleDefinitionFile>wixiuiba.def</ProjectModuleDefinitionFile> | ||
38 | </PropertyGroup> | 39 | </PropertyGroup> |
39 | 40 | ||
40 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | 41 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
41 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | 42 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
42 | 43 | ||
44 | <ImportGroup Label="ExtensionSettings"> | ||
45 | </ImportGroup> | ||
46 | |||
47 | <ImportGroup Label="Shared"> | ||
48 | </ImportGroup> | ||
49 | |||
43 | <PropertyGroup> | 50 | <PropertyGroup> |
44 | <ProjectAdditionalIncludeDirectories>..\wixstdba\inc</ProjectAdditionalIncludeDirectories> | 51 | <ProjectAdditionalIncludeDirectories>$(ProjectDir)..\stdbas\inc</ProjectAdditionalIncludeDirectories> |
45 | <ProjectAdditionalLinkLibraries>shlwapi.lib</ProjectAdditionalLinkLibraries> | 52 | <ProjectAdditionalLinkLibraries>stdbas.res</ProjectAdditionalLinkLibraries> |
46 | </PropertyGroup> | 53 | </PropertyGroup> |
47 | 54 | ||
55 | <ItemDefinitionGroup> | ||
56 | <Link> | ||
57 | <DelayLoadDLLs>version.dll</DelayLoadDLLs> | ||
58 | <AdditionalOptions>/DEPENDENTLOADFLAG:0x800 %(AdditionalOptions)</AdditionalOptions> | ||
59 | </Link> | ||
60 | </ItemDefinitionGroup> | ||
61 | |||
62 | <ItemGroup> | ||
63 | <ClInclude Include="precomp.h" /> | ||
64 | <ClInclude Include="wixiuiba.h" /> | ||
65 | </ItemGroup> | ||
48 | <ItemGroup> | 66 | <ItemGroup> |
49 | <ClCompile Include="precomp.cpp"> | 67 | <ClCompile Include="precomp.cpp"> |
50 | <PrecompiledHeader>Create</PrecompiledHeader> | 68 | <PrecompiledHeader>Create</PrecompiledHeader> |
51 | </ClCompile> | 69 | </ClCompile> |
52 | <ClCompile Include="WixInternalUIBootstrapperApplication.cpp" /> | ||
53 | <ClCompile Include="wixiuiba.cpp" /> | 70 | <ClCompile Include="wixiuiba.cpp" /> |
54 | </ItemGroup> | 71 | </ItemGroup> |
72 | |||
55 | <ItemGroup> | 73 | <ItemGroup> |
56 | <ClInclude Include="precomp.h" /> | 74 | <Manifest Include="..\stdbas\stdbas.manifest" /> |
57 | <ClInclude Include="WixInternalUIBootstrapperApplication.h" /> | 75 | <ResourceCompile Include="wixiuiba.rc" /> |
58 | <ClInclude Include="wixiuiba.h" /> | ||
59 | </ItemGroup> | 76 | </ItemGroup> |
77 | |||
60 | <ItemGroup> | 78 | <ItemGroup> |
61 | <None Include="wixiuiba.def" /> | 79 | <ProjectReference Include="..\stdbas\stdbas.vcxproj"> |
80 | <Project>{DBBF5F32-BAEA-46A8-99A0-17277A906456}</Project> | ||
81 | </ProjectReference> | ||
62 | </ItemGroup> | 82 | </ItemGroup> |
63 | 83 | ||
64 | <ItemGroup> | 84 | <ItemGroup> |
65 | <PackageReference Include="WixToolset.BalUtil" /> | 85 | <PackageReference Include="WixToolset.BalUtil" /> |
66 | |||
67 | <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> | 86 | <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> |
68 | </ItemGroup> | 87 | </ItemGroup> |
69 | 88 | ||