Skip to content

Commit d15f968

Browse files
author
Maddie Clayton
authored
Merge branch 'master' into erroraction
2 parents ce7aaf9 + 9f6a5f9 commit d15f968

File tree

219 files changed

+50380
-26372
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

219 files changed

+50380
-26372
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ before_install:
2424

2525
# https://github.com/travis-ci/travis-ci/issues/1066#issuecomment-383489298
2626
script:
27-
- sudo dotnet msbuild build.proj /t:Full /p:Configuration=$CONFIG || travis_terminate 1
27+
- sudo dotnet msbuild build.proj /t:Full /p:ExcludeAuthenticators=true /p:Configuration=$CONFIG || travis_terminate 1
2828

2929
after_success:
3030
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then

ChangeLog.md

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,82 @@
1+
## 1.2.0 - January 2019
2+
#### Az.Accounts
3+
* Add interactive and username/password authentication for Windows PowerShell 5.1 only
4+
* Update incorrect online help URLs
5+
* Add warning message in PS Core for Uninstall-AzureRm
6+
7+
#### Az.Aks
8+
* Update incorrect online help URLs
9+
10+
#### Az.Automation
11+
* Added support for Python 2 runbooks
12+
* Update incorrect online help URLs
13+
14+
#### Az.Cdn
15+
* Update incorrect online help URLs
16+
17+
#### Az.Compute
18+
* Add Invoke-AzVMReimage cmdlet
19+
* Add TempDisk parameter to Set-AzVmss
20+
* Fix the warning message of New-AzVM
21+
22+
#### Az.ContainerRegistry
23+
* Update incorrect online help URLs
24+
25+
#### Az.DataFactory
26+
* Updated ADF .Net SDK version to 3.0.0
27+
28+
#### Az.DataLakeStore
29+
* Fix issue with ADLS endpoint when using MSI
30+
- More information here: https://github.com/Azure/azure-powershell/issues/7462
31+
* Update incorrect online help URLs
32+
33+
#### Az.IotHub
34+
* Add Encoding format to Add-IotHubRoutingEndpoint cmdlet.
35+
36+
#### Az.KeyVault
37+
* Update incorrect online help URLs
38+
39+
#### Az.Network
40+
* Update incorrect online help URLs
41+
42+
#### Az.Resources
43+
* Fix incorrect examples in 'New-AzADAppCredential' and 'New-AzADSpCredential' reference documentation
44+
* Fix issue where path for '-TemplateFile' parameter was not being resolved before executing resource group deployment cmdlets
45+
* Az.Resources: Correct documentation for New-AzureRmPolicyDefinition -Mode default value
46+
* Az.Resources: Fix for issue https://github.com/Azure/azure-powershell/issues/7522
47+
* Az.Resources: Fix for issue https://github.com/Azure/azure-powershell/issues/5747
48+
* Fix formatting issue with 'PSResourceGroupDeployment' object
49+
- More information here: https://github.com/Azure/azure-powershell/issues/2123
50+
51+
#### Az.ServiceFabric
52+
* Rollback when a certificate is added to VMSS model but an exception is thrown this is to fix bug: https://github.com/Azure/service-fabric-issues/issues/932
53+
* Fix some error messages.
54+
* Fix create cluster with default ARM template for New-AzServiceFabriCluster which was not working with migration to Az.
55+
* Fix add cluster/application certificate to only add to VM Scale Sets that correspond to the cluster by checking cluster id in the extension.
56+
57+
#### Az.SignalR
58+
* Update incorrect online help URLs
59+
60+
#### Az.Sql
61+
* Update incorrect online help URLs
62+
* Updated parameter description for LicenseType parameter with possible values
63+
* Fix for updating managed instance identity not working when it is the only updated property
64+
* Support for custom collation on managed instance
65+
66+
#### Az.Storage
67+
* Update incorrect online help URLs
68+
* Give detail error message when get/set classic Logging/Metric on Premium Storage Account, since Premium Storage Account not supoort classic Logging/Metric.
69+
- Get/Set-AzStorageServiceLoggingProperty
70+
- Get/Set-AzStorageServiceMetricsProperty
71+
72+
#### Az.TrafficManager
73+
* Update incorrect online help URLs
74+
75+
#### Az.Websites
76+
* Update incorrect online help URLs
77+
* Fixes 'New-AzWebAppSSLBinding' to upload the certificate to the correct resourcegroup+location if the app is hosted on an ASE.
78+
* Fixes 'New-AzWebAppSSLBinding' to not overwrite the tags on binding an SSL certificate to an app
79+
180
## 1.1.0 - January 2019
281
#### Az.Accounts
382
* Add 'Local' Scope to Enable-AzureRmAlias

CodeSign.targets

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
<ItemGroup Condition="'$(Scope)' == 'All' or '$(Scope)' == 'Latest' or '$(Scope)' == 'Netcore'">
2222
<DelaySignedAssembliesToSign Include="$(PackageDirectory)\$(Configuration)\**\Microsoft*Azure*PowerShell*Cmdlets*.dll;
2323
$(PackageDirectory)\$(Configuration)\Az.Accounts\Microsoft.Azure.PowerShell.Authentication.ResourceManager.dll;
24+
$(PackageDirectory)\$(Configuration)\**\Microsoft.Azure.PowerShell.Authenticators.dll;
2425
$(PackageDirectory)\$(Configuration)\Az.Accounts\Microsoft.Azure.PowerShell.Authentication.dll" />
2526
</ItemGroup>
2627

build.proj

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,11 @@
218218
<!-- Build and create package content -->
219219
<Exec Command="dotnet --version" />
220220
<Exec Command="dotnet new sln -n Azure.PowerShell --force" />
221+
<PropertyGroup Condition="'$(ExcludeAuthenticators)' == 'true'">
222+
<AuthenticatorExclusions>$(LibraryRoot)src/**/Authenticators.csproj;</AuthenticatorExclusions>
223+
</PropertyGroup>
221224
<ItemGroup>
222-
<ModuleCsprojFiles Include="$(LibraryRoot)src/**/*.csproj" Exclude="$(LibraryRoot)src/**/*.Test.csproj" />
225+
<ModuleCsprojFiles Include="$(LibraryRoot)src/**/*.csproj" Exclude="$(AuthenticatorExclusions)$(LibraryRoot)src/**/*.Test.csproj" />
223226
</ItemGroup>
224227
<!-- https://stackoverflow.com/a/35477012/294804 -->
225228
<ItemGroup>
@@ -372,14 +375,17 @@
372375

373376
<Target Name="Test">
374377
<Message Importance="high" Text="Running check in tests..." />
378+
<PropertyGroup Condition="'$(ExcludeAuthenticators)' == 'true'">
379+
<AuthenticatorExclusions>$(LibraryRoot)src/**/Authenticators.csproj;</AuthenticatorExclusions>
380+
</PropertyGroup>
375381

376382
<CallTarget Targets="BinScopeCheck" Condition="'$(OnPremiseBuild)'" />
377383
<CallTarget Targets="RunPoliCheck" Condition="'$(OnPremiseBuild)'" />
378384

379385
<MakeDir Directories="$(TestOutputDirectory)" ContinueOnError="false" />
380386
<Exec Command="dotnet new sln -n Azure.PowerShell --force" />
381387
<ItemGroup>
382-
<ModuleCsprojFiles Include="$(LibraryRoot)src/**/*.csproj" />
388+
<ModuleCsprojFiles Include="$(LibraryRoot)src/**/*.csproj" Exclude="$(AuthenticatorExclusions)"/>
383389
</ItemGroup>
384390
<!-- https://stackoverflow.com/a/35477012/294804 -->
385391
<ItemGroup>

src/Accounts/Accounts.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestFx", "..\..\tools\TestF
1818
EndProject
1919
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication.Test", "Authentication.Test\Authentication.Test.csproj", "{78D9B754-6A18-4125-80CC-63437BDE3244}"
2020
EndProject
21+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authenticators", "Authenticators\Authenticators.csproj", "{6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}"
22+
EndProject
2123
Global
2224
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2325
Debug|Any CPU = Debug|Any CPU
@@ -52,6 +54,10 @@ Global
5254
{78D9B754-6A18-4125-80CC-63437BDE3244}.Debug|Any CPU.Build.0 = Debug|Any CPU
5355
{78D9B754-6A18-4125-80CC-63437BDE3244}.Release|Any CPU.ActiveCfg = Release|Any CPU
5456
{78D9B754-6A18-4125-80CC-63437BDE3244}.Release|Any CPU.Build.0 = Release|Any CPU
57+
{6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
58+
{6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Debug|Any CPU.Build.0 = Debug|Any CPU
59+
{6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Release|Any CPU.ActiveCfg = Release|Any CPU
60+
{6BD6B80A-06AF-4B5B-9230-69CCFC6C8D64}.Release|Any CPU.Build.0 = Release|Any CPU
5561
EndGlobalSection
5662
GlobalSection(SolutionProperties) = preSolution
5763
HideSolutionNode = FALSE

src/Accounts/Accounts/Account/ConnectAzureRmAccount.cs

Lines changed: 23 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,10 @@
1414

1515
using Microsoft.Azure.Commands.Common.Authentication;
1616
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
17-
// TODO: Remove IfDef
18-
#if NETSTANDARD
1917
using Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core;
20-
#endif
2118
using Microsoft.Azure.Commands.Common.Authentication.Models;
2219
using Microsoft.Azure.Commands.Profile.Models;
23-
// TODO: Remove IfDef
24-
#if NETSTANDARD
2520
using Microsoft.Azure.Commands.Profile.Models.Core;
26-
#endif
2721
using Microsoft.Azure.Commands.ResourceManager.Common;
2822
using Microsoft.WindowsAzure.Commands.Utilities.Common;
2923
using System;
@@ -45,6 +39,7 @@ namespace Microsoft.Azure.Commands.Profile
4539
public class ConnectAzureRmAccountCommand : AzureContextModificationCmdlet, IModuleAssemblyInitializer
4640
{
4741
public const string UserParameterSet = "UserWithSubscriptionId";
42+
public const string UserWithCredentialParameterSet = "UserWithCredential";
4843
public const string ServicePrincipalParameterSet = "ServicePrincipalWithSubscriptionId";
4944
public const string ServicePrincipalCertificateParameterSet= "ServicePrincipalCertificateWithSubscriptionId";
5045
public const string AccessTokenParameterSet = "AccessTokenWithSubscriptionId";
@@ -59,13 +54,10 @@ public class ConnectAzureRmAccountCommand : AzureContextModificationCmdlet, IMod
5954
[ValidateNotNullOrEmpty]
6055
public string Environment { get; set; }
6156

62-
// TODO: Remove IfDef code
63-
#if !NETSTANDARD
64-
[Parameter(ParameterSetName = UserParameterSet,
65-
Mandatory = false, HelpMessage = "Optional credential", Position = 0)]
66-
#endif
6757
[Parameter(ParameterSetName = ServicePrincipalParameterSet,
68-
Mandatory = true, HelpMessage = "Credential")]
58+
Mandatory = true, HelpMessage = "Service Principal Secret")]
59+
[Parameter(ParameterSetName = UserWithCredentialParameterSet,
60+
Mandatory = true, HelpMessage = "User Password Credential: this is only supported in Windows PowerShell 5.1")]
6961
public PSCredential Credential { get; set; }
7062

7163
[Parameter(ParameterSetName = ServicePrincipalCertificateParameterSet,
@@ -84,6 +76,8 @@ public class ConnectAzureRmAccountCommand : AzureContextModificationCmdlet, IMod
8476

8577
[Parameter(ParameterSetName = UserParameterSet,
8678
Mandatory = false, HelpMessage = "Optional tenant name or ID")]
79+
[Parameter(ParameterSetName = UserWithCredentialParameterSet,
80+
Mandatory = false, HelpMessage = "Optional tenant name or ID")]
8781
[Parameter(ParameterSetName = ServicePrincipalParameterSet,
8882
Mandatory = true, HelpMessage = "Tenant name or ID")]
8983
[Parameter(ParameterSetName = AccessTokenParameterSet,
@@ -138,6 +132,8 @@ public class ConnectAzureRmAccountCommand : AzureContextModificationCmdlet, IMod
138132
[Alias("SubscriptionName", "SubscriptionId")]
139133
[Parameter(ParameterSetName = UserParameterSet,
140134
Mandatory = false, HelpMessage = "Subscription Name or ID", ValueFromPipeline = true)]
135+
[Parameter(ParameterSetName = UserWithCredentialParameterSet,
136+
Mandatory = false, HelpMessage = "Subscription Name or ID", ValueFromPipeline = true)]
141137
[Parameter(ParameterSetName = ServicePrincipalParameterSet,
142138
Mandatory = false, HelpMessage = "Subscription Name or ID", ValueFromPipeline = true)]
143139
[Parameter(ParameterSetName = ServicePrincipalCertificateParameterSet,
@@ -160,6 +156,11 @@ public class ConnectAzureRmAccountCommand : AzureContextModificationCmdlet, IMod
160156
[Parameter(Mandatory = false, HelpMessage = "Skips context population if no contexts are found.")]
161157
public SwitchParameter SkipContextPopulation { get; set; }
162158

159+
[Parameter(ParameterSetName = UserParameterSet,
160+
Mandatory = false, HelpMessage = "Use device code authentication instead of a browser control")]
161+
[Alias("DeviceCode", "DeviceAuth", "Device")]
162+
public SwitchParameter UseDeviceAuthentication { get; set; }
163+
163164
[Parameter(Mandatory = false, HelpMessage = "Overwrite the existing context with the same name, if any.")]
164165
public SwitchParameter Force { get; set; }
165166

@@ -254,6 +255,11 @@ public override void ExecuteCmdlet()
254255
azureAccount.Id = this.IsBound(nameof(AccountId)) ? AccountId : string.Format("MSI@{0}", ManagedServicePort);
255256
break;
256257
default:
258+
if (ParameterSetName == UserWithCredentialParameterSet && string.Equals(SessionState?.PSVariable?.GetValue("PSEdition") as string, "Core"))
259+
{
260+
throw new InvalidOperationException(Resources.PasswordNotSupported);
261+
}
262+
257263
azureAccount.Type = AzureAccount.AccountType.User;
258264
break;
259265
}
@@ -265,6 +271,11 @@ public override void ExecuteCmdlet()
265271
password = Credential.Password;
266272
}
267273

274+
if (UseDeviceAuthentication.IsPresent)
275+
{
276+
azureAccount.SetProperty("UseDeviceAuth", "true");
277+
}
278+
268279
if (!string.IsNullOrEmpty(ApplicationId))
269280
{
270281
azureAccount.Id = ApplicationId;
@@ -280,8 +291,6 @@ public override void ExecuteCmdlet()
280291
azureAccount.SetProperty(AzureAccount.Property.Tenants, Tenant);
281292
}
282293

283-
// TODO: Remove IfDef
284-
#if NETSTANDARD
285294
if (azureAccount.Type == AzureAccount.AccountType.ServicePrincipal && string.IsNullOrEmpty(CertificateThumbprint))
286295
{
287296
azureAccount.SetProperty(AzureAccount.Property.ServicePrincipalSecret, password.ConvertToString());
@@ -292,7 +301,6 @@ public override void ExecuteCmdlet()
292301
WriteWarning(string.Format(Resources.ServicePrincipalWarning, file, directory));
293302
}
294303
}
295-
#endif
296304

297305
if (ShouldProcess(string.Format(Resources.LoginTarget, azureAccount.Type, _environment.Name), "log in"))
298306
{

src/Accounts/Accounts/Accounts.csproj

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
<PreLoadAssemblies Include="$(RepoSrc)lib\System.Security.Permissions.dll" />
1919
<PreLoadAssemblies Include="$(RepoSrc)lib\System.Private.ServiceModel.dll" />
2020
<PreLoadAssemblies Include="$(RepoSrc)lib\System.Net.Http.WinHttpHandler.dll" />
21-
<PreLoadAssemblies Include="$(RepoSrc)lib\Microsoft.IdentityModel.Clients.ActiveDirectory\3.14.0\Microsoft.IdentityModel.Clients.ActiveDirectory.dll" />
22-
<PreLoadAssemblies Include="$(RepoSrc)lib\Microsoft.IdentityModel.Clients.ActiveDirectory\3.14.0\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll" />
23-
<NetCoreAssemblies Include="$(RepoSrc)lib\Microsoft.IdentityModel.Clients.ActiveDirectory\3.19.2\Microsoft.IdentityModel.Clients.ActiveDirectory.dll" />
24-
<NetCoreAssemblies Include="$(RepoSrc)lib\Microsoft.IdentityModel.Clients.ActiveDirectory\3.19.2\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll" />
21+
<PreLoadAssemblies Include="$(RepoSrc)lib\Microsoft.IdentityModel.Clients.ActiveDirectory\NetFx\Microsoft.IdentityModel.Clients.ActiveDirectory.dll" />
22+
<PreLoadAssemblies Include="$(RepoSrc)lib\Microsoft.IdentityModel.Clients.ActiveDirectory\NetFx\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll" />
23+
<NetCoreAssemblies Include="$(RepoSrc)lib\Microsoft.IdentityModel.Clients.ActiveDirectory\NetCore\Microsoft.IdentityModel.Clients.ActiveDirectory.dll" />
24+
<NetCoreAssemblies Include="$(RepoSrc)lib\Microsoft.IdentityModel.Clients.ActiveDirectory\NetCore\Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll" />
2525
<StorageDependencies Include="$(RepoSrc)lib\WindowsAzure.Storage\9.3.0\Microsoft.WindowsAzure.Storage.dll" />
2626
<StorageDependencies Include="$(RepoSrc)lib\WindowsAzure.Storage\9.3.0\Microsoft.WindowsAzure.Storage.DataMovement.dll" />
2727
</ItemGroup>
@@ -39,14 +39,17 @@
3939
<ItemGroup>
4040
<None Update="StartupScripts\AzError.ps1" CopyToOutputDirectory="PreserveNewest" />
4141
</ItemGroup>
42+
<ItemGroup>
43+
<None Update="PostImportScripts\LoadAuthenticators.ps1" CopyToOutputDirectory="PreserveNewest" />
44+
</ItemGroup>
4245

4346
<ItemGroup>
4447
<EmbeddedResource Include="AzureRmAlias\Mappings.json" />
4548
</ItemGroup>
46-
49+
4750
<ItemGroup>
4851
<ProjectReference Include="..\Authentication.ResourceManager\Authentication.ResourceManager.csproj" />
49-
<ProjectReference Include="..\Authentication\Authentication.csproj" />
52+
<ProjectReference Include="..\Authentication\Authentication.csproj" />
5053
</ItemGroup>
5154

5255
</Project>

src/Accounts/Accounts/Az.Accounts.psd1

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 1/8/2019
6+
# Generated on: 1/23/2019
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.1.0'
15+
ModuleVersion = '1.2.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = 'Core', 'Desktop'
@@ -141,7 +141,9 @@ PrivateData = @{
141141
# IconUri = ''
142142

143143
# ReleaseNotes of this module
144-
ReleaseNotes = '* Add ''Local'' Scope to Enable-AzureRmAlias'
144+
ReleaseNotes = '* Add interactive and username/password authentication for Windows PowerShell 5.1 only
145+
* Update incorrect online help URLs
146+
* Add warning message in PS Core for Uninstall-AzureRm'
145147

146148
# Prerelease string of this module
147149
# Prerelease = ''
@@ -153,7 +155,7 @@ PrivateData = @{
153155
# ExternalModuleDependencies = @()
154156

155157
} # End of PSData hashtable
156-
158+
157159
} # End of PrivateData hashtable
158160

159161
# HelpInfo URI of this module

src/Accounts/Accounts/AzureRmAlias/Mappings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2200,6 +2200,8 @@
22002200
"New-AzSqlDatabaseImport": "New-AzureRmSqlDatabaseImport",
22012201
"Get-AzSqlDatabaseGeoBackupPolicy": "Get-AzureRmSqlDatabaseGeoBackupPolicy",
22022202
"Set-AzSqlDatabaseGeoBackupPolicy": "Set-AzureRmSqlDatabaseGeoBackupPolicy",
2203+
"Get-AzSqlDatabaseBackupShortTermRetentionPolicy": "Get-AzureRmSqlDatabaseBackupShortTermRetentionPolicy",
2204+
"Set-AzSqlDatabaseBackupShortTermRetentionPolicy": "Set-AzureRmSqlDatabaseBackupShortTermRetentionPolicy",
22032205
"Get-AzSqlDatabaseBackupLongTermRetentionPolicy": "Get-AzureRmSqlDatabaseBackupLongTermRetentionPolicy",
22042206
"Set-AzSqlDatabaseBackupLongTermRetentionPolicy": "Set-AzureRmSqlDatabaseBackupLongTermRetentionPolicy",
22052207
"Get-AzSqlDatabaseLongTermRetentionBackup": "Get-AzureRmSqlDatabaseLongTermRetentionBackup",

src/Accounts/Accounts/ChangeLog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
22+
## Version 1.2.0
23+
* Add interactive and username/password authentication for Windows PowerShell 5.1 only
2124
* Update incorrect online help URLs
2225
* Add warning message in PS Core for Uninstall-AzureRm
2326

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
if ($PSEdition -eq 'Desktop') {
2+
try {
3+
[Microsoft.Azure.PowerShell.Authenticators.DesktopAuthenticatorBuilder]::Apply([Microsoft.Azure.Commands.Common.Authentication.AzureSession]::Instance)
4+
} catch {}
5+
}

src/Accounts/Accounts/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@
4343
// You can specify all the values or you can default the Build and Revision Numbers
4444
// by using the '*' as shown below:
4545

46-
[assembly: AssemblyVersion("1.1.0")]
47-
[assembly: AssemblyFileVersion("1.1.0")]
46+
[assembly: AssemblyVersion("1.2.0")]
47+
[assembly: AssemblyFileVersion("1.2.0")]
4848
#if SIGN
4949
[assembly: InternalsVisibleTo("Microsoft.Azure.PowerShell.Cmdlets.Accounts.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
5050
[assembly: InternalsVisibleTo("Microsoft.WindowsAzure.Commands.Test, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]

src/Accounts/Accounts/Properties/Resources.Designer.cs

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)