diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2018-12-29 22:18:45 -0600 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2018-12-29 22:20:26 -0600 |
| commit | 3480ec56611d6c8784b7610dcac818133318f675 (patch) | |
| tree | a80517a5ad1997b94527f81cfb81fa86e12a0927 /src/engine/engine.vcxproj | |
| parent | 61847dddd4fd497057c780658e383c4627de19ec (diff) | |
| download | wix-3480ec56611d6c8784b7610dcac818133318f675.tar.gz wix-3480ec56611d6c8784b7610dcac818133318f675.tar.bz2 wix-3480ec56611d6c8784b7610dcac818133318f675.zip | |
Integrate into latest v4
Diffstat (limited to 'src/engine/engine.vcxproj')
| -rw-r--r-- | src/engine/engine.vcxproj | 174 |
1 files changed, 174 insertions, 0 deletions
diff --git a/src/engine/engine.vcxproj b/src/engine/engine.vcxproj new file mode 100644 index 00000000..169c47fa --- /dev/null +++ b/src/engine/engine.vcxproj | |||
| @@ -0,0 +1,174 @@ | |||
| 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 | <Import Project="..\..\packages\WixToolset.BootstrapperCore.4.0.1\build\WixToolset.BootstrapperCore.props" Condition="Exists('..\..\packages\WixToolset.BootstrapperCore.4.0.1\build\WixToolset.BootstrapperCore.props')" /> | ||
| 6 | <Import Project="..\..\packages\WixToolset.DUtil.4.0.13\build\WixToolset.DUtil.props" Condition="Exists('..\..\packages\WixToolset.DUtil.4.0.13\build\WixToolset.DUtil.props')" /> | ||
| 7 | |||
| 8 | <ItemGroup Label="ProjectConfigurations"> | ||
| 9 | <ProjectConfiguration Include="Debug|Win32"> | ||
| 10 | <Configuration>Debug</Configuration> | ||
| 11 | <Platform>Win32</Platform> | ||
| 12 | </ProjectConfiguration> | ||
| 13 | <ProjectConfiguration Include="Release|Win32"> | ||
| 14 | <Configuration>Release</Configuration> | ||
| 15 | <Platform>Win32</Platform> | ||
| 16 | </ProjectConfiguration> | ||
| 17 | <ProjectConfiguration Include="Debug|x64"> | ||
| 18 | <Configuration>Debug</Configuration> | ||
| 19 | <Platform>x64</Platform> | ||
| 20 | </ProjectConfiguration> | ||
| 21 | <ProjectConfiguration Include="Release|x64"> | ||
| 22 | <Configuration>Release</Configuration> | ||
| 23 | <Platform>x64</Platform> | ||
| 24 | </ProjectConfiguration> | ||
| 25 | </ItemGroup> | ||
| 26 | |||
| 27 | <PropertyGroup Label="Globals"> | ||
| 28 | <ProjectGuid>{8119537D-E1D9-6591-D51A-49768A2F9C37}</ProjectGuid> | ||
| 29 | <ConfigurationType>StaticLibrary</ConfigurationType> | ||
| 30 | <TargetName>engine</TargetName> | ||
| 31 | <PlatformToolset>v141</PlatformToolset> | ||
| 32 | <CharacterSet>Unicode</CharacterSet> | ||
| 33 | <Description>Native component of WixToolset.Burn</Description> | ||
| 34 | </PropertyGroup> | ||
| 35 | |||
| 36 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> | ||
| 37 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> | ||
| 38 | |||
| 39 | <ImportGroup Label="ExtensionSettings"> | ||
| 40 | </ImportGroup> | ||
| 41 | |||
| 42 | <ImportGroup Label="Shared"> | ||
| 43 | </ImportGroup> | ||
| 44 | |||
| 45 | <PropertyGroup> | ||
| 46 | <ProjectAdditionalIncludeDirectories>$(ProjectDir)..\inc</ProjectAdditionalIncludeDirectories> | ||
| 47 | </PropertyGroup> | ||
| 48 | |||
| 49 | <ItemGroup> | ||
| 50 | <ClCompile Include="apply.cpp" /> | ||
| 51 | <ClCompile Include="approvedexe.cpp" /> | ||
| 52 | <ClCompile Include="bitsengine.cpp" /> | ||
| 53 | <ClCompile Include="catalog.cpp" /> | ||
| 54 | <ClCompile Include="detect.cpp" /> | ||
| 55 | <ClCompile Include="embedded.cpp" /> | ||
| 56 | <ClCompile Include="EngineForApplication.cpp" /> | ||
| 57 | <ClCompile Include="cabextract.cpp" /> | ||
| 58 | <ClCompile Include="cache.cpp" /> | ||
| 59 | <ClCompile Include="condition.cpp" /> | ||
| 60 | <ClCompile Include="container.cpp" /> | ||
| 61 | <ClCompile Include="core.cpp" /> | ||
| 62 | <ClCompile Include="dependency.cpp" /> | ||
| 63 | <ClCompile Include="elevation.cpp" /> | ||
| 64 | <ClCompile Include="engine.cpp" /> | ||
| 65 | <ClCompile Include="exeengine.cpp" /> | ||
| 66 | <ClCompile Include="logging.cpp" /> | ||
| 67 | <ClCompile Include="manifest.cpp" /> | ||
| 68 | <ClCompile Include="msiengine.cpp" /> | ||
| 69 | <ClCompile Include="mspengine.cpp" /> | ||
| 70 | <ClCompile Include="msuengine.cpp" /> | ||
| 71 | <ClCompile Include="NetFxChainer.cpp" /> | ||
| 72 | <ClCompile Include="package.cpp" /> | ||
| 73 | <ClCompile Include="payload.cpp" /> | ||
| 74 | <ClCompile Include="pipe.cpp" /> | ||
| 75 | <ClCompile Include="plan.cpp" /> | ||
| 76 | <ClCompile Include="platform.cpp" /> | ||
| 77 | <ClCompile Include="precomp.cpp"> | ||
| 78 | <PrecompiledHeader>Create</PrecompiledHeader> | ||
| 79 | </ClCompile> | ||
| 80 | <ClCompile Include="pseudobundle.cpp" /> | ||
| 81 | <ClCompile Include="registration.cpp" /> | ||
| 82 | <ClCompile Include="relatedbundle.cpp" /> | ||
| 83 | <ClCompile Include="search.cpp" /> | ||
| 84 | <ClCompile Include="section.cpp" /> | ||
| 85 | <ClCompile Include="splashscreen.cpp" /> | ||
| 86 | <ClCompile Include="uithread.cpp" /> | ||
| 87 | <ClCompile Include="update.cpp" /> | ||
| 88 | <ClCompile Include="userexperience.cpp" /> | ||
| 89 | <ClCompile Include="variable.cpp" /> | ||
| 90 | <ClCompile Include="variant.cpp" /> | ||
| 91 | </ItemGroup> | ||
| 92 | |||
| 93 | <ItemGroup> | ||
| 94 | <ClInclude Include="..\inc\BootstrapperApplication.h" /> | ||
| 95 | <ClInclude Include="..\inc\BootstrapperEngine.h" /> | ||
| 96 | </ItemGroup> | ||
| 97 | |||
| 98 | <ItemGroup> | ||
| 99 | <ClInclude Include="apply.h" /> | ||
| 100 | <ClInclude Include="approvedexe.h" /> | ||
| 101 | <ClInclude Include="bitsengine.h" /> | ||
| 102 | <ClInclude Include="cabextract.h" /> | ||
| 103 | <ClInclude Include="cache.h" /> | ||
| 104 | <ClInclude Include="catalog.h" /> | ||
| 105 | <ClInclude Include="condition.h" /> | ||
| 106 | <ClInclude Include="container.h" /> | ||
| 107 | <ClInclude Include="core.h" /> | ||
| 108 | <ClInclude Include="dependency.h" /> | ||
| 109 | <ClInclude Include="detect.h" /> | ||
| 110 | <ClInclude Include="elevation.h" /> | ||
| 111 | <ClInclude Include="embedded.h" /> | ||
| 112 | <ClInclude Include="EngineForApplication.h" /> | ||
| 113 | <ClInclude Include="exeengine.h" /> | ||
| 114 | <ClInclude Include="inc\engine.h" /> | ||
| 115 | <ClInclude Include="logging.h" /> | ||
| 116 | <ClInclude Include="manifest.h" /> | ||
| 117 | <ClInclude Include="msiengine.h" /> | ||
| 118 | <ClInclude Include="mspengine.h" /> | ||
| 119 | <ClInclude Include="msuengine.h" /> | ||
| 120 | <ClInclude Include="netfxchainer.h" /> | ||
| 121 | <ClInclude Include="package.h" /> | ||
| 122 | <ClInclude Include="payload.h" /> | ||
| 123 | <ClInclude Include="pipe.h" /> | ||
| 124 | <ClInclude Include="plan.h" /> | ||
| 125 | <ClInclude Include="platform.h" /> | ||
| 126 | <ClInclude Include="precomp.h" /> | ||
| 127 | <ClInclude Include="pseudobundle.h" /> | ||
| 128 | <ClInclude Include="registration.h" /> | ||
| 129 | <ClInclude Include="relatedbundle.h" /> | ||
| 130 | <ClInclude Include="search.h" /> | ||
| 131 | <ClInclude Include="section.h" /> | ||
| 132 | <ClInclude Include="splashscreen.h" /> | ||
| 133 | <ClInclude Include="uithread.h" /> | ||
| 134 | <ClInclude Include="update.h" /> | ||
| 135 | <ClInclude Include="userexperience.h" /> | ||
| 136 | <ClInclude Include="variable.h" /> | ||
| 137 | <ClInclude Include="variant.h" /> | ||
| 138 | </ItemGroup> | ||
| 139 | |||
| 140 | <ItemGroup> | ||
| 141 | <None Include="packages.config" /> | ||
| 142 | </ItemGroup> | ||
| 143 | |||
| 144 | <ItemGroup> | ||
| 145 | <CustomBuild Include="engine.mc"> | ||
| 146 | <Message>Compiling message file...</Message> | ||
| 147 | <Command>mc.exe -h "$(IntDir)." -r "$(IntDir)." -A -c -z engine.messages "$(InputDir)engine.mc" | ||
| 148 | rc.exe -fo "$(OutDir)engine.res" "$(IntDir)engine.messages.rc"</Command> | ||
| 149 | <Outputs>$(IntDir)engine.messages.h;$(OutDir)engine.messages.rc</Outputs> | ||
| 150 | </CustomBuild> | ||
| 151 | </ItemGroup> | ||
| 152 | |||
| 153 | <Target Name="SetWixVersion" | ||
| 154 | DependsOnTargets="GetBuildVersion" | ||
| 155 | BeforeTargets="ClCompile"> | ||
| 156 | <ItemGroup> | ||
| 157 | <ClCompile> | ||
| 158 | <!-- TODO: get rmj and rmm dynamically --> | ||
| 159 | <PreprocessorDefinitions>rmj=4;rmm=0;rup=$(BuildNumber);szVerMajorMinorBuild="$(BuildVersion)";%(PreprocessorDefinitions)</PreprocessorDefinitions> | ||
| 160 | </ClCompile> | ||
| 161 | </ItemGroup> | ||
| 162 | </Target> | ||
| 163 | |||
| 164 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> | ||
| 165 | <Import Project="..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets" Condition="Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" /> | ||
| 166 | <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> | ||
| 167 | <PropertyGroup> | ||
| 168 | <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText> | ||
| 169 | </PropertyGroup> | ||
| 170 | <Error Condition="!Exists('..\..\packages\WixToolset.BootstrapperCore.4.0.1\build\WixToolset.BootstrapperCore.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.BootstrapperCore.4.0.1\build\WixToolset.BootstrapperCore.props'))" /> | ||
| 171 | <Error Condition="!Exists('..\..\packages\WixToolset.DUtil.4.0.13\build\WixToolset.DUtil.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WixToolset.DUtil.4.0.13\build\WixToolset.DUtil.props'))" /> | ||
| 172 | <Error Condition="!Exists('..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\Nerdbank.GitVersioning.2.1.65\build\Nerdbank.GitVersioning.targets'))" /> | ||
| 173 | </Target> | ||
| 174 | </Project> | ||
