2017-10-12 00:17:28 +00:00
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
2018-06-26 05:38:01 +00:00
<ToolsetCompressedFileName>dotnet-toolset-internal-$(ToolsetVersion).zip</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 -->
2018-06-26 05:38:01 +00:00
<ToolsetRootUrl>$(CoreSetupBlobRootUrl)Sdk/$(ToolsetVersion)/</ToolsetRootUrl>
2017-10-12 00:17:28 +00:00
<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>