Fix official build break by referencing WindowsAzure.Storage 7.2.1 in all build assemblies.
This commit is contained in:
parent
61dbfbf228
commit
28ff7c51a1
2 changed files with 5 additions and 2 deletions
|
@ -66,7 +66,7 @@ namespace Microsoft.DotNet.Cli.Build
|
||||||
{
|
{
|
||||||
string url = CalculateRelativePathForFile(file, product, version);
|
string url = CalculateRelativePathForFile(file, product, version);
|
||||||
CloudBlockBlob blob = _blobContainer.GetBlockBlobReference(url);
|
CloudBlockBlob blob = _blobContainer.GetBlockBlobReference(url);
|
||||||
blob.UploadFromFileAsync(file, FileMode.Open).Wait();
|
blob.UploadFromFileAsync(file).Wait();
|
||||||
SetBlobPropertiesBasedOnFileType(blob);
|
SetBlobPropertiesBasedOnFileType(blob);
|
||||||
return url;
|
return url;
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,11 +34,14 @@
|
||||||
<PackageReference Include="System.Runtime.Serialization.Primitives">
|
<PackageReference Include="System.Runtime.Serialization.Primitives">
|
||||||
<Version>4.1.1</Version>
|
<Version>4.1.1</Version>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
|
<PackageReference Include="System.Threading.Thread">
|
||||||
|
<Version>4.0.0</Version>
|
||||||
|
</PackageReference>
|
||||||
<PackageReference Include="System.Xml.XmlSerializer">
|
<PackageReference Include="System.Xml.XmlSerializer">
|
||||||
<Version>4.0.11</Version>
|
<Version>4.0.11</Version>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="WindowsAzure.Storage">
|
<PackageReference Include="WindowsAzure.Storage">
|
||||||
<Version>6.2.2-preview</Version>
|
<Version>7.2.1</Version>
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions">
|
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions">
|
||||||
<Version>1.0.1-beta-000933</Version>
|
<Version>1.0.1-beta-000933</Version>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue