This repository was archived by the owner on Jan 23, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +11
-10
lines changed Expand file tree Collapse file tree 6 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 4
4
<Target Name =" ReattachAllEnginesToBundles"
5
5
BeforeTargets =" RunArcadeSigning" >
6
6
<MSBuild
7
- Projects =" @(ProjectToBuild -> WithMetadataValue('SignPhase', 'Bundle '))"
7
+ Projects =" @(ProjectToBuild -> WithMetadataValue('SignPhase', 'BundleInstallerFiles '))"
8
8
Targets =" ReattachEngineToBundle" />
9
9
</Target >
10
10
Original file line number Diff line number Diff line change 12
12
DependsOnTargets =" GetSharedFrameworkProjects"
13
13
BeforeTargets =" EnsureProjectsBuilt" >
14
14
<ItemGroup >
15
- <StageProject Include =" @(SharedFrameworkProjects )" />
15
+ <StageProject Include =" @(SharedFrameworkProject )" />
16
16
</ItemGroup >
17
17
</Target >
18
18
Original file line number Diff line number Diff line change 80
80
<InstallerFileNameWithoutExtension >$(InstallerName)-$(InstallerBuildPart)</InstallerFileNameWithoutExtension >
81
81
<InstallerFile Condition =" '$(InstallerFile)' == ''" >$(AssetOutputPath)$(InstallerFileNameWithoutExtension)$(InstallerExtension)</InstallerFile >
82
82
<ExeBundleInstallerFile >$(AssetOutputPath)$(InstallerFileNameWithoutExtension).exe</ExeBundleInstallerFile >
83
+ <ExeBundleInstallerEngineFile >$(AssetOutputPath)$(InstallerFileNameWithoutExtension)-engine.exe</ExeBundleInstallerEngineFile >
83
84
<CompressedArchiveFile >$(AssetOutputPath)$(InstallerFileNameWithoutExtension)$(CompressedFileExtension)</CompressedArchiveFile >
84
85
</PropertyGroup >
85
86
Original file line number Diff line number Diff line change 346
346
</Target >
347
347
348
348
<Target Name =" ExtractEngineBundle"
349
- DependsOnTargets =" GetInstallerGenerationFlags" >
349
+ DependsOnTargets ="
350
+ GetInstallerGenerationFlags;
351
+ GetWixBuildConfiguration" >
350
352
<Exec
351
353
Condition =" '$(GenerateExeBundle)' == 'true'"
352
- Command =" insignia.exe -ib $(CombinedInstallerFile ) -o $(CombinedInstallerEngine )"
354
+ Command =" insignia.exe -ib $(OutInstallerFile ) -o $(ExeBundleInstallerEngineFile )"
353
355
WorkingDirectory =" $(WixToolsDir)" />
354
356
</Target >
355
357
356
358
<Target Name =" ReattachEngineToBundle"
357
- DependsOnTargets =" GetInstallerGenerationFlags" >
359
+ DependsOnTargets ="
360
+ GetInstallerGenerationFlags;
361
+ GetWixBuildConfiguration" >
358
362
<Exec
359
363
Condition =" '$(GenerateExeBundle)' == 'true'"
360
- Command =" insignia.exe -ab $(CombinedInstallerEngine ) $(CombinedInstallerFile ) -o $(CombinedInstallerFile )"
364
+ Command =" insignia.exe -ab $(ExeBundleInstallerEngineFile ) $(OutInstallerFile ) -o $(OutInstallerFile )"
361
365
WorkingDirectory =" $(WixToolsDir)" />
362
366
</Target >
363
367
Original file line number Diff line number Diff line change 27
27
<PkgProjectReference Include="..\..\Microsoft.NETCore.DotNetHost\Microsoft.NETCore.DotNetHost.pkgproj" />
28
28
<PkgProjectReference Include="..\..\Microsoft.NETCore.DotNetHostPolicy\Microsoft.NETCore.DotNetHostPolicy.pkgproj" />
29
29
<PkgProjectReference Include="..\..\Microsoft.NETCore.DotNetHostResolver\Microsoft.NETCore.DotNetHostResolver.pkgproj" />
30
-
31
- <OrderProjectReference Include="$(RepoRoot)signing\SignMsiFiles.proj" />
32
30
</ItemGroup>
33
31
34
32
<!--
Original file line number Diff line number Diff line change 8
8
9
9
<ItemGroup>
10
10
<PkgProjectReference Include="..\pkg\Microsoft.WindowsDesktop.App.pkgproj" />
11
-
12
- <OrderProjectReference Include="$(RepoRoot)signing\SignMsiFiles.proj" />
13
11
</ItemGroup>
14
12
15
13
</Project>
You can’t perform that action at this time.
0 commit comments