535cac7f55
It's difficult to tell today whether the package version props is correctly passed and used in some scenarios. Make it more explicit.
11 lines
558 B
XML
11 lines
558 B
XML
<Project ToolsVersion="15.0">
|
|
<Target Name="DownloadPackageVersionsProps"
|
|
DependsOnTargets="BuildDotnetCliBuildFramework">
|
|
|
|
<Message Importance="High" Text="Overriding repository dependency versions with $(PB_PackageVersionPropsUrl)"
|
|
Condition=" '$(PB_PackageVersionPropsUrl)' != '' " />
|
|
<DownloadFile Uri="$(PB_PackageVersionPropsUrl)$(CoreSetupBlobAccessTokenParam)"
|
|
DestinationPath="$(OrchestratedPackageVersionsProps)"
|
|
Condition=" '$(PB_PackageVersionPropsUrl)' != '' " />
|
|
</Target>
|
|
</Project>
|