aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Bal/stdbas/stdbas.vcxproj
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/ext/Bal/stdbas/stdbas.vcxproj (renamed from src/ext/Bal/dnchost/dnchost.vcxproj)58
1 files changed, 24 insertions, 34 deletions
diff --git a/src/ext/Bal/dnchost/dnchost.vcxproj b/src/ext/Bal/stdbas/stdbas.vcxproj
index 5860e968..3722b40a 100644
--- a/src/ext/Bal/dnchost/dnchost.vcxproj
+++ b/src/ext/Bal/stdbas/stdbas.vcxproj
@@ -1,5 +1,6 @@
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<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 4<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
4 <ItemGroup Label="ProjectConfigurations"> 5 <ItemGroup Label="ProjectConfigurations">
5 <ProjectConfiguration Include="Debug|ARM64"> 6 <ProjectConfiguration Include="Debug|ARM64">
@@ -29,59 +30,48 @@
29 </ItemGroup> 30 </ItemGroup>
30 31
31 <PropertyGroup Label="Globals"> 32 <PropertyGroup Label="Globals">
32 <ProjectGuid>{B6F70281-6583-4138-BB7F-AABFEBBB3CA2}</ProjectGuid> 33 <ProjectGuid>{DBBF5F32-BAEA-46A8-99A0-17277A906456}</ProjectGuid>
33 <ConfigurationType>DynamicLibrary</ConfigurationType> 34 <Keyword>Win32Proj</Keyword>
35 <ConfigurationType>StaticLibrary</ConfigurationType>
34 <CharacterSet>Unicode</CharacterSet> 36 <CharacterSet>Unicode</CharacterSet>
35 <TargetName>dnchost</TargetName> 37 <Description>WiX Standard Bootstrapper Applications</Description>
36 <ProjectModuleDefinitionFile>dnchost.def</ProjectModuleDefinitionFile> 38 <CustomBuildBeforeTargets>ClCompile</CustomBuildBeforeTargets>
37 </PropertyGroup> 39 </PropertyGroup>
38 40
39 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 41 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
40 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 42 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
41 43
42 <ItemDefinitionGroup Condition=" '$(Configuration)'=='Debug' "> 44 <ImportGroup Label="ExtensionSettings">
43 <ClCompile> 45 </ImportGroup>
44 <!-- libnethost.lib is currently only available in Release mode, so can't use debug runtime -->
45 <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
46 </ClCompile>
47 </ItemDefinitionGroup>
48 46
49 <PropertyGroup> 47 <ImportGroup Label="Shared">
50 <NetHostPlatform>$(Platform)</NetHostPlatform> 48 </ImportGroup>
51 <NetHostPlatform Condition=" '$(NetHostPlatform)'=='Win32' ">x86</NetHostPlatform>
52 <NetHostPath>..\..\..\..\packages\runtime.win-$(NetHostPlatform).Microsoft.NETCore.DotNetAppHost.6.0.4\runtimes\win-$(NetHostPlatform)\native\</NetHostPath>
53 <ProjectAdditionalIncludeDirectories>$(BaseOutputPath)obj;$(NetHostPath);..\wixstdba\inc</ProjectAdditionalIncludeDirectories>
54 <ProjectAdditionalLinkLibraries>shlwapi.lib;$(NetHostPath)libnethost.lib</ProjectAdditionalLinkLibraries>
55 </PropertyGroup>
56 49
57 <ItemGroup> 50 <ItemGroup>
58 <ClCompile Include="dnchost.cpp" /> 51 <ClInclude Include="inc\WixInternalUIBootstrapperApplication.h" />
59 <ClCompile Include="dncutil.cpp" /> 52 <ClInclude Include="inc\WixStandardBootstrapperApplication.h" />
60 <ClCompile Include="precomp.cpp">
61 <PrecompiledHeader>Create</PrecompiledHeader>
62 </ClCompile>
63 </ItemGroup>
64
65 <ItemGroup>
66 <ClInclude Include="dnchost.h" />
67 <ClInclude Include="dncutil.h" />
68 <ClInclude Include="precomp.h" /> 53 <ClInclude Include="precomp.h" />
69 </ItemGroup> 54 </ItemGroup>
70
71 <ItemGroup> 55 <ItemGroup>
72 <None Include="dnchost.def" /> 56 <ClCompile Include="precomp.cpp">
57 <PrecompiledHeader>Create</PrecompiledHeader>
58 </ClCompile>
59 <ClCompile Include="WixInternalUIBootstrapperApplication.cpp" />
60 <ClCompile Include="WixStandardBootstrapperApplication.cpp" />
73 </ItemGroup> 61 </ItemGroup>
74 62
75 <ItemDefinitionGroup> 63 <ItemDefinitionGroup>
76 <Link> 64 <CustomBuildStep>
77 <!-- libnethost.lib is currently compiled with /GL, so must use linker option /LTCG --> 65 <Message>Compiling message file...</Message>
78 <AdditionalOptions>/LTCG %(AdditionalOptions)</AdditionalOptions> 66 <Command>mc.exe -h "$(IntDir)." -r "$(IntDir)." -A -c -z stdbas.messages "$(InputDir)stdbas.mc"
79 </Link> 67rc.exe -fo "$(OutDir)stdbas.res" "$(IntDir)stdbas.messages.rc"</Command>
68 <Inputs>$(InputDir)stdbas.mc</Inputs>
69 <Outputs>$(IntDir)stdbas.messages.h;$(IntDir)stdbas.messages.rc</Outputs>
70 </CustomBuildStep>
80 </ItemDefinitionGroup> 71 </ItemDefinitionGroup>
81 72
82 <ItemGroup> 73 <ItemGroup>
83 <PackageReference Include="WixToolset.BalUtil" /> 74 <PackageReference Include="WixToolset.BalUtil" />
84
85 <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> 75 <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
86 </ItemGroup> 76 </ItemGroup>
87 77