Skip to content

Commit

Permalink
Merge pull request #1613 from amarzavery/AutoRest
Browse files Browse the repository at this point in the history
updated AAD endpoint url
  • Loading branch information
amarzavery committed Nov 25, 2015
2 parents 38d783f + d4b6e60 commit db6785f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Microsoft.Azure.Common.Authentication
-->
<SdkNuGetPackage Include="Microsoft.Azure.Common.Authentication">
<PackageVersion>1.4.0-preview</PackageVersion>
<PackageVersion>1.4.1-preview</PackageVersion>
<Folder>$(MSBuildThisFileDirectory)</Folder>
</SdkNuGetPackage>
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ public static class AzureEnvironmentConstants

public const string USGovernmentSqlDatabaseDnsSuffix = ".database.usgovcloudapi.net";

public const string AzureActiveDirectoryEndpoint = "https://login.windows.net/";
public const string AzureActiveDirectoryEndpoint = "https://login.microsoftonline.com/";

public const string ChinaActiveDirectoryEndpoint = "https://login.chinacloudapi.cn/";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
[assembly: CLSCompliant(false)]
[assembly: Guid("4f3ab2e4-cc7a-43ac-bb15-f481fcf94d58")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.4.0.0")]
[assembly: AssemblyFileVersion("1.4.1.0")]
#if CODESIGN
[assembly: InternalsVisibleTo("Common.Authentication.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2, PublicKey=0024000004800000940000000602000000240000525341310004000001000100c547cac37abd99c8db225ef2f6c8a3602f3b3606cc9891605d02baa56104f4cfc0734aa39b93bf7852f7d9266654753cc297e7d2edfe0bac1cdcf9f717241550e0a7b191195b7667bb4f64bcb8e2121380fd1d9d46ad2d92d2d15605093924cceaf74c4861eff62abf69b9291ed0a340e113be11e6a7d3113e92484cf7045cc7")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class AADClientHelper
{
public const string AadAuthDogfoodEnpoint = "https://login.windows-ppe.net/";

public const string AadAuthProductionEnpoint = "https://login.windows.net/";
public const string AadAuthProductionEnpoint = "https://login.microsoftonline.com/";

public const string AadGraphDogfoodEnpoint = "https://graph.ppe.windows.net/";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ static TestEnvironment()
EnvEndpoints.Add(EnvironmentNames.Prod, new TestEndpoints
{
Name = EnvironmentNames.Prod,
AADAuthUri = new Uri("https://login.windows.net"),
AADAuthUri = new Uri("https://login.microsoftonline.com"),
GalleryUri = new Uri("https://gallery.azure.com/"),
GraphUri = new Uri("https://graph.windows.net/"),
IbizaPortalUri = new Uri("https://portal.azure.com/"),
Expand Down

0 comments on commit db6785f

Please sign in to comment.