Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Layout/redist/targets/GenerateInstallerLayout.targets
Original file line number Diff line number Diff line change
Expand Up @@ -87,14 +87,14 @@

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

<!-- Create "SDK Internal" layout. -->
<ItemGroup>
<SdkOutputFile Include="$(OutputPath)**\*" />
<SdkOutputFile Include="$(InstallerOutputDirectory)**\*" />
</ItemGroup>

<Copy SourceFiles="@(SdkOutputFile)"
Expand Down
Loading