Merge pull request #5228 from eerhardt/FixBuild

Fix official build break by referencing WindowsAzure.Storage 7.2.1 everywhere
This commit is contained in:
Livar 2017-01-05 23:26:40 -08:00 committed by GitHub
commit 839bc2394e
2 changed files with 5 additions and 2 deletions

View file

@ -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;
} }

View file

@ -28,11 +28,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>