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

Commit

Permalink
Merge pull request #31 from smillas/master
Browse files Browse the repository at this point in the history
fix typography
  • Loading branch information
jennyf19 authored Oct 24, 2020
2 parents b06b8f2 + 95749f3 commit 0601cb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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
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 0601cb0

Please sign in to comment.