Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Commit

Permalink
fix typography
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio Millas committed Aug 27, 2020
1 parent faec82e commit 95749f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion iwa-console/AuthenticationConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public static SampleConfiguration ReadFromJsonFile(string path)
// .NET configuration
IConfigurationRoot Configuration;
var builder = new ConfigurationBuilder()
.SetBasePath(Path.GetDirectoryName(Assembly.GetEntryAssembly().Location))
.SetBasePath(Path.GetDirectoryName(Assembly.GetEntryAssembly().Location))
.AddJsonFile(path);
Configuration = builder.Build();

Expand Down
2 changes: 1 addition & 1 deletion iwa-console/MyInformation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public MyInformation(IPublicClientApplication app, HttpClient client, string mic
{
tokenAcquisitionHelper = new PublicAppUsingIntegratedWindowsAuthentication(app);
protectedApiCallHelper = new ProtectedApiCallHelper(client);
this.MicrosoftGraphBaseEndpoint = microsoftGraphBaseEndpoint;
MicrosoftGraphBaseEndpoint = microsoftGraphBaseEndpoint;
}

protected PublicAppUsingIntegratedWindowsAuthentication tokenAcquisitionHelper;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public async Task<AuthenticationResult> AcquireATokenFromCacheOrIntegratedWindow
/// <returns>An authentication result, or null if the user canceled sign-in</returns>
private async Task<AuthenticationResult> GetTokenForWebApiUsingIntegratedWindowsAuthenticationAsync(IEnumerable<string> scopes)
{
AuthenticationResult result=null;
AuthenticationResult result;
try
{
result = await App.AcquireTokenByIntegratedWindowsAuth(scopes)
Expand Down

0 comments on commit 95749f3

Please sign in to comment.