2017-10-12 00:17:28 +00:00
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
2018-02-23 21:36:50 +00:00
<ToolsetCompressedFileName>$(ArtifactNameSdk)-$(ToolsetVersion)$(ArchiveExtension)</ToolsetCompressedFileName>
2017-10-12 00:17:28 +00:00
</PropertyGroup>
<PropertyGroup>
<!-- licavalc: we could publish the tool set to a toolset folder in the blob storage to disambiguate it from the crossgenned toolsets we need to produce for Antares -->
<ToolsetRootUrl>$(DotnetBlobRootUrl)/Sdk/$(ToolsetVersion)/</ToolsetRootUrl>
<ToolsetDownloadUrl>$(ToolsetRootUrl)$(ToolsetCompressedFileName)$(CoreSetupBlobAccessTokenParam)</ToolsetDownloadUrl>
<ToolsetDownloadDirectory>$(IntermediateDirectory)/toolsetDownload/$(ToolsetVersion)/</ToolsetDownloadDirectory>
<ToolsetArchive>$(ToolsetDownloadDirectory)$(ToolsetCompressedFileName)</ToolsetArchive>
</PropertyGroup>
<ItemGroup>
<_DownloadAndExtractItem Include="ToolsetArchive"
Condition="!Exists('$(ToolsetArchive)')">
<Url>$(ToolsetDownloadUrl)</Url>
<DownloadFileName>$(ToolsetArchive)</DownloadFileName>
<ExtractDestination>$(ToolsetPublishDirectory)</ExtractDestination>
</_DownloadAndExtractItem>
</ItemGroup>
</Project>