Fix workload manifest generation to handle case sensitive file systems
This commit is contained in:
parent
39c605e56d
commit
efe1496340
1 changed files with 6 additions and 4 deletions
|
@ -18,6 +18,12 @@
|
||||||
<PackageDownload Include="@(BundledManifestsForPackageDownload)" />
|
<PackageDownload Include="@(BundledManifestsForPackageDownload)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<BundledManifests Update="@(BundledManifests)" >
|
||||||
|
<RestoredNupkgContentPath>$(NuGetPackageRoot)$([MSBuild]::ValueOrDefault('%(Identity)', '').ToLower())/$([MSBuild]::ValueOrDefault('%(Version)', '').ToLower())</RestoredNupkgContentPath>
|
||||||
|
</BundledManifests>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
<Target Name="LayoutManifests"
|
<Target Name="LayoutManifests"
|
||||||
DependsOnTargets="LayoutManifestsForSDK;LayoutManifestsForMSI" />
|
DependsOnTargets="LayoutManifestsForSDK;LayoutManifestsForMSI" />
|
||||||
|
|
||||||
|
@ -60,10 +66,6 @@
|
||||||
</GenerateGuidFromName>
|
</GenerateGuidFromName>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<BundledManifests Update="@(BundledManifests)" >
|
|
||||||
<RestoredNupkgContentPath>$(NuGetPackageRoot)%(Identity)/%(Version)</RestoredNupkgContentPath>
|
|
||||||
</BundledManifests>
|
|
||||||
|
|
||||||
<ManifestContent Include="%(BundledManifests.RestoredNupkgContentPath)\**\*.json;%(BundledManifests.RestoredNupkgContentPath)\**\*.targets"
|
<ManifestContent Include="%(BundledManifests.RestoredNupkgContentPath)\**\*.json;%(BundledManifests.RestoredNupkgContentPath)\**\*.targets"
|
||||||
DestinationPath="%(WorkloadManifestId)/"/>
|
DestinationPath="%(WorkloadManifestId)/"/>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
Loading…
Add table
Reference in a new issue