diff options
Diffstat (limited to 'src/burn/engine/engine.vcxproj')
-rw-r--r-- | src/burn/engine/engine.vcxproj | 33 |
1 files changed, 10 insertions, 23 deletions
diff --git a/src/burn/engine/engine.vcxproj b/src/burn/engine/engine.vcxproj index 152e9cec..7a2447f8 100644 --- a/src/burn/engine/engine.vcxproj +++ b/src/burn/engine/engine.vcxproj | |||
@@ -47,17 +47,20 @@ | |||
47 | 47 | ||
48 | <ImportGroup Label="ExtensionSettings"> | 48 | <ImportGroup Label="ExtensionSettings"> |
49 | </ImportGroup> | 49 | </ImportGroup> |
50 | |||
50 | <ImportGroup Label="Shared"> | 51 | <ImportGroup Label="Shared"> |
51 | </ImportGroup> | 52 | </ImportGroup> |
52 | 53 | ||
53 | <ItemGroup> | 54 | <ItemGroup> |
54 | <ClCompile Include="apply.cpp" /> | 55 | <ClCompile Include="apply.cpp" /> |
55 | <ClCompile Include="approvedexe.cpp" /> | 56 | <ClCompile Include="approvedexe.cpp" /> |
57 | <ClCompile Include="bacallback.cpp" /> | ||
58 | <ClCompile Include="bootstrapperapplication.cpp" /> | ||
56 | <ClCompile Include="bundlepackageengine.cpp" /> | 59 | <ClCompile Include="bundlepackageengine.cpp" /> |
57 | <ClCompile Include="burnextension.cpp" /> | 60 | <ClCompile Include="burnextension.cpp" /> |
58 | <ClCompile Include="detect.cpp" /> | 61 | <ClCompile Include="detect.cpp" /> |
59 | <ClCompile Include="embedded.cpp" /> | 62 | <ClCompile Include="embedded.cpp" /> |
60 | <ClCompile Include="EngineForApplication.cpp" /> | 63 | <ClCompile Include="baengine.cpp" /> |
61 | <ClCompile Include="EngineForExtension.cpp" /> | 64 | <ClCompile Include="EngineForExtension.cpp" /> |
62 | <ClCompile Include="externalengine.cpp" /> | 65 | <ClCompile Include="externalengine.cpp" /> |
63 | <ClCompile Include="cabextract.cpp" /> | 66 | <ClCompile Include="cabextract.cpp" /> |
@@ -99,10 +102,12 @@ | |||
99 | <ItemGroup> | 102 | <ItemGroup> |
100 | <ClInclude Include="apply.h" /> | 103 | <ClInclude Include="apply.h" /> |
101 | <ClInclude Include="approvedexe.h" /> | 104 | <ClInclude Include="approvedexe.h" /> |
102 | <ClInclude Include="..\..\api\burn\WixToolset.BootstrapperCore.Native\inc\BootstrapperApplication.h" /> | 105 | <ClInclude Include="..\..\api\burn\WixToolset.BootstrapperCore.Native\inc\batypes.h" /> |
103 | <ClInclude Include="..\..\api\burn\WixToolset.BootstrapperCore.Native\inc\BootstrapperEngine.h" /> | 106 | <ClInclude Include="..\..\api\burn\WixToolset.BootstrapperCore.Native\inc\baenginetypes.h" /> |
104 | <ClInclude Include="..\..\api\burn\WixToolset.BootstrapperCore.Native\inc\BundleExtension.h" /> | 107 | <ClInclude Include="..\..\api\burn\WixToolset.BootstrapperCore.Native\inc\BundleExtension.h" /> |
105 | <ClInclude Include="..\..\api\burn\WixToolset.BootstrapperCore.Native\inc\BundleExtensionEngine.h" /> | 108 | <ClInclude Include="..\..\api\burn\WixToolset.BootstrapperCore.Native\inc\BundleExtensionEngine.h" /> |
109 | <ClInclude Include="bacallback.h" /> | ||
110 | <ClInclude Include="bootstrapperapplication.h" /> | ||
106 | <ClInclude Include="bundlepackageengine.h" /> | 111 | <ClInclude Include="bundlepackageengine.h" /> |
107 | <ClInclude Include="burnextension.h" /> | 112 | <ClInclude Include="burnextension.h" /> |
108 | <ClInclude Include="cabextract.h" /> | 113 | <ClInclude Include="cabextract.h" /> |
@@ -114,7 +119,7 @@ | |||
114 | <ClInclude Include="detect.h" /> | 119 | <ClInclude Include="detect.h" /> |
115 | <ClInclude Include="elevation.h" /> | 120 | <ClInclude Include="elevation.h" /> |
116 | <ClInclude Include="embedded.h" /> | 121 | <ClInclude Include="embedded.h" /> |
117 | <ClInclude Include="EngineForApplication.h" /> | 122 | <ClInclude Include="baengine.h" /> |
118 | <ClInclude Include="EngineForExtension.h" /> | 123 | <ClInclude Include="EngineForExtension.h" /> |
119 | <ClInclude Include="exeengine.h" /> | 124 | <ClInclude Include="exeengine.h" /> |
120 | <ClInclude Include="externalengine.h" /> | 125 | <ClInclude Include="externalengine.h" /> |
@@ -164,32 +169,14 @@ rc.exe -fo "$(OutDir)engine.res" "$(IntDir)engine.messages.rc"</Command> | |||
164 | <szVerMajorMinorBuild>$(rmj).$(rmm).$(rup).$(rpr)</szVerMajorMinorBuild> | 169 | <szVerMajorMinorBuild>$(rmj).$(rmm).$(rup).$(rpr)</szVerMajorMinorBuild> |
165 | <szInformationalVersion>$(InformationalVersion)</szInformationalVersion> | 170 | <szInformationalVersion>$(InformationalVersion)</szInformationalVersion> |
166 | </PropertyGroup> | 171 | </PropertyGroup> |
167 | |||
168 | <ItemGroup> | 172 | <ItemGroup> |
169 | <BurnVersionLines Include=" | 173 | <BurnVersionLines Include="
// <auto-generated/>
#ifndef _VERSION_FILE_H_
#define _VERSION_FILE_H_

#define szVerMajorMinorBuild "$(szVerMajorMinorBuild)"
#define wzVerMajorMinorBuild L"$(szVerMajorMinorBuild)"
#define rmj $(rmj)
#define rmm $(rmm)
#define rup $(rup)
#define rpr $(rpr)
#define szInformationalVersion "$(szInformationalVersion)"
#define wzInformationalVersion L"$(szInformationalVersion)"

#endif
" /> |
170 | // <auto-generated/> | ||
171 | #ifndef _VERSION_FILE_H_ | ||
172 | #define _VERSION_FILE_H_ | ||
173 | |||
174 | #define szVerMajorMinorBuild "$(szVerMajorMinorBuild)" | ||
175 | #define wzVerMajorMinorBuild L"$(szVerMajorMinorBuild)" | ||
176 | #define rmj $(rmj) | ||
177 | #define rmm $(rmm) | ||
178 | #define rup $(rup) | ||
179 | #define rpr $(rpr) | ||
180 | #define szInformationalVersion "$(szInformationalVersion)" | ||
181 | #define wzInformationalVersion L"$(szInformationalVersion)" | ||
182 | |||
183 | #endif | ||
184 | "/> | ||
185 | </ItemGroup> | 174 | </ItemGroup> |
186 | |||
187 | <WriteLinesToFile Overwrite="true" File="$(BurnGeneratedHeaderDirectory)engine.version.h" Lines="@(BurnVersionLines)" /> | 175 | <WriteLinesToFile Overwrite="true" File="$(BurnGeneratedHeaderDirectory)engine.version.h" Lines="@(BurnVersionLines)" /> |
188 | </Target> | 176 | </Target> |
189 | 177 | ||
190 | <ItemGroup> | 178 | <ItemGroup> |
191 | <PackageReference Include="WixToolset.DUtil" /> | 179 | <PackageReference Include="WixToolset.DUtil" /> |
192 | |||
193 | <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> | 180 | <PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" /> |
194 | </ItemGroup> | 181 | </ItemGroup> |
195 | 182 | ||