Add missing copyright headers to all cs files

This commit is contained in:
Piotr Puszkiewicz 2017-03-02 21:04:03 -08:00
parent bc5a53ed35
commit d55a8f8188
326 changed files with 1287 additions and 313 deletions

View file

@ -1,3 +1,6 @@
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Collections.Generic;
using System.Diagnostics;
@ -44,7 +47,7 @@ namespace Microsoft.DotNet.Cli.Build
private CloudBlobContainer GetDotnetBlobContainer(string connectionString, string containerName)
{
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(connectionString);
return GetDotnetBlobContainer(storageAccount, containerName);
}
@ -58,7 +61,7 @@ namespace Microsoft.DotNet.Cli.Build
private CloudBlobContainer GetDotnetBlobContainer(CloudStorageAccount storageAccount, string containerName)
{
CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
return blobClient.GetContainerReference(containerName);
}