2 writes to AccountName
Microsoft.DotNet.Build.Tasks.Feed (2)
src\BlobFeedAction.cs (1)
163AccountName = AccountName,
src\common\AzureConnectionStringBuildTask.cs (1)
45AccountName = matches[0].Groups["name"].Value;
9 references to AccountName
Microsoft.DotNet.Build.Tasks.Feed (9)
src\common\AzureConnectionStringBuildTask.cs (2)
33if (!(string.IsNullOrEmpty(AccountKey) && string.IsNullOrEmpty(AccountName))) 54else if (string.IsNullOrEmpty(AccountKey) || string.IsNullOrEmpty(AccountName))
src\common\CreateAzureContainerIfNotExists.cs (3)
21new AzureStorageUtils(AccountName, new AzureCliCredential(), ContainerName) : 22new AzureStorageUtils(AccountName, AccountKey, ContainerName); 26throw new System.InvalidOperationException($"Container {ContainerName} already exists in storage account {AccountName}.");
src\common\CreateNewAzureContainer.cs (2)
28new AzureStorageUtils(AccountName, new AzureCliCredential(), versionedContainerName) : 29new AzureStorageUtils(AccountName, AccountKey, versionedContainerName);
src\common\UploadToAzure.cs (2)
77AccountName, 82AzureStorageUtils blobUtils = new AzureStorageUtils(AccountName, AccountKey, ContainerName);