Disable workload bundled manifests for source-build (#12231)
This commit is contained in:
parent
81a59580a7
commit
056d280d35
1 changed files with 3 additions and 2 deletions
|
@ -11,7 +11,7 @@
|
|||
</ItemGroup>
|
||||
|
||||
<!-- Restore workload manifests via PackageReference -->
|
||||
<ItemGroup>
|
||||
<ItemGroup Condition="'$(DotNetBuildFromSource)' != 'true'">
|
||||
<BundledManifestsForPackageDownload Include="@(BundledManifests)" >
|
||||
<Version>[%(Version)]</Version>
|
||||
</BundledManifestsForPackageDownload>
|
||||
|
@ -26,7 +26,8 @@
|
|||
</ItemGroup>
|
||||
|
||||
<Target Name="LayoutManifests"
|
||||
DependsOnTargets="LayoutManifestsForSDK;LayoutManifestsForMSI" />
|
||||
DependsOnTargets="LayoutManifestsForSDK;LayoutManifestsForMSI"
|
||||
Condition="'$(DotNetBuildFromSource)' != 'true'"/>
|
||||
|
||||
<Target Name="LayoutManifestsForSDK"
|
||||
DependsOnTargets="SetupBundledComponents;GenerateManifestVersions">
|
||||
|
|
Loading…
Add table
Reference in a new issue