Skip to content

Commit 53891b5

Browse files
Copy files for MSI layout from the post-crossgen'd location (#49096)
Co-authored-by: Viktor Hofer <[email protected]>
1 parent 106e893 commit 53891b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Layout/redist/targets/GenerateInstallerLayout.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,14 @@
8787

8888
<!-- Copy the sdk layout into a temporary folder so that it's nested under "sdk\$(Version)\" which is
8989
necessary for the msi/pkg to install correctly and put the content under that sub path. -->
90-
<Target Name="PrepareIntermediateSdkInstallerOutput" DependsOnTargets="GenerateSdkLayout">
90+
<Target Name="PrepareIntermediateSdkInstallerOutput" DependsOnTargets="GenerateInstallerLayout">
9191
<PropertyGroup>
9292
<IntermediateSdkInstallerOutputPath>$([MSBuild]::NormalizeDirectory('$(ArtifactsObjDir)', 'sdk-installer', '$(Configuration)'))</IntermediateSdkInstallerOutputPath>
9393
</PropertyGroup>
9494

9595
<!-- Create "SDK Internal" layout. -->
9696
<ItemGroup>
97-
<SdkOutputFile Include="$(OutputPath)**\*" />
97+
<SdkOutputFile Include="$(InstallerOutputDirectory)**\*" />
9898
</ItemGroup>
9999

100100
<Copy SourceFiles="@(SdkOutputFile)"

0 commit comments

Comments
 (0)