| 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. --> |
| 3 | |
| 4 | <Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
| 5 | <ItemGroup Label="ProjectConfigurations"> |
| 6 | <ProjectConfiguration Include="Debug|Win32"> |
| 7 | <Configuration>Debug</Configuration> |
| 8 | <Platform>Win32</Platform> |
| 9 | </ProjectConfiguration> |
| 10 | <ProjectConfiguration Include="Release|Win32"> |
| 11 | <Configuration>Release</Configuration> |
| 12 | <Platform>Win32</Platform> |
| 13 | </ProjectConfiguration> |
| 14 | <ProjectConfiguration Include="Debug|x64"> |
| 15 | <Configuration>Debug</Configuration> |
| 16 | <Platform>x64</Platform> |
| 17 | </ProjectConfiguration> |
| 18 | <ProjectConfiguration Include="Release|x64"> |
| 19 | <Configuration>Release</Configuration> |
| 20 | <Platform>x64</Platform> |
| 21 | </ProjectConfiguration> |
| 22 | <ProjectConfiguration Include="Debug|ARM64"> |
| 23 | <Configuration>Debug</Configuration> |
| 24 | <Platform>ARM64</Platform> |
| 25 | </ProjectConfiguration> |
| 26 | <ProjectConfiguration Include="Release|ARM64"> |
| 27 | <Configuration>Release</Configuration> |
| 28 | <Platform>ARM64</Platform> |
| 29 | </ProjectConfiguration> |
| 30 | </ItemGroup> |
| 31 | |
| 32 | <PropertyGroup Label="Globals"> |
| 33 | <ProjectGuid>{C38373AA-882F-4F55-B03F-2AAB4BFBE3F1}</ProjectGuid> |
| 34 | <ConfigurationType>Application</ConfigurationType> |
| 35 | <ProjectSubSystem>Windows</ProjectSubSystem> |
| 36 | <TargetName>burn</TargetName> |
| 37 | <CharacterSet>Unicode</CharacterSet> |
| 38 | <Description>Native component of WixToolset.Burn</Description> |
| 39 | <!-- NBGV properties --> |
| 40 | <AssemblyLanguage>1033</AssemblyLanguage> |
| 41 | <AssemblyProduct>Burn</AssemblyProduct> |
| 42 | <PackageId>WixToolset.Burn</PackageId> |
| 43 | <SignOutput>false</SignOutput> |
| 44 | </PropertyGroup> |
| 45 | |
| 46 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
| 47 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
| 48 | |
| 49 | <ImportGroup Label="ExtensionSettings"> |
| 50 | </ImportGroup> |
| 51 | |
| 52 | <ImportGroup Label="Shared"> |
| 53 | </ImportGroup> |
| 54 | |
| 55 | <PropertyGroup> |
| 56 | <ProjectAdditionalIncludeDirectories>$(ProjectDir)..\engine\inc</ProjectAdditionalIncludeDirectories> |
| 57 | <ProjectAdditionalLinkLibraries>cabinet.lib;crypt32.lib;msi.lib;rpcrt4.lib;shlwapi.lib;userenv.lib;wininet.lib;wintrust.lib;wuguid.lib;engine.res</ProjectAdditionalLinkLibraries> |
| 58 | </PropertyGroup> |
| 59 | |
| 60 | <ItemDefinitionGroup> |
| 61 | <Link> |
| 62 | <SwapRunFromCD>true</SwapRunFromCD> |
| 63 | <SwapRunFromNET>true</SwapRunFromNET> |
| 64 | <DelayLoadDLLs>cabinet.dll;crypt32.dll;msi.dll;rpcrt4.dll;shlwapi.dll;userenv.dll;version.dll;wininet.dll;wintrust.dll</DelayLoadDLLs> |
| 65 | <AdditionalOptions>/DEPENDENTLOADFLAG:0x800 %(AdditionalOptions)</AdditionalOptions> |
| 66 | </Link> |
| 67 | </ItemDefinitionGroup> |
| 68 | |
| 69 | <ItemGroup> |
| 70 | <ClInclude Include="precomp.h" /> |
| 71 | </ItemGroup> |
| 72 | <ItemGroup> |
| 73 | <ClCompile Include="precomp.cpp"> |
| 74 | <PrecompiledHeader>Create</PrecompiledHeader> |
| 75 | </ClCompile> |
| 76 | <ClCompile Include="stub.cpp" /> |
| 77 | <ClCompile Include="StubSection.cpp"> |
| 78 | <!-- Workaround for VS2015 behavior change that omits the .wixburn section. --> |
| 79 | <RemoveUnreferencedCodeData>false</RemoveUnreferencedCodeData> |
| 80 | </ClCompile> |
| 81 | </ItemGroup> |
| 82 | <ItemGroup> |
| 83 | <Manifest Include="stub.manifest" /> |
| 84 | <ResourceCompile Include="stub.rc" /> |
| 85 | </ItemGroup> |
| 86 | |
| 87 | <ItemGroup> |
| 88 | <ProjectReference Include="..\engine\engine.vcxproj"> |
| 89 | <Project>{8119537D-E1D9-6591-D51A-49768A2F9C37}</Project> |
| 90 | </ProjectReference> |
| 91 | </ItemGroup> |
| 92 | |
| 93 | <ItemGroup> |
| 94 | <PackageReference Include="WixToolset.DUtil" /> |
| 95 | <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> |
| 96 | </ItemGroup> |
| 97 | |
| 98 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
| 99 | </Project> |