Skip to content

Commit a68efab

Browse files
committed
Rebase onto main
2 parents 25a9e4b + b836757 commit a68efab

File tree

2 files changed

+10
-14
lines changed

2 files changed

+10
-14
lines changed

3-WebApp-multi-APIs/appsettings.json

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,17 @@
11
{
22
"AzureAd": {
33
"Instance": "https://login.microsoftonline.com/",
4-
"Domain": "[Enter the domain of your tenant, e.g. contoso.onmicrosoft.com]",
5-
"TenantId": "[Enter 'common', or 'organizations' or the Tenant Id (Obtained from the Azure portal. Select 'Endpoints' from the 'App registrations' blade and use the GUID in any of the URLs), e.g. da41245a5-11b3-996c-00a8-4d99re19f292]",
6-
"ClientId": "[Enter the Client Id (Application ID obtained from the Azure portal), e.g. ba74781c2-53c2-442a-97c2-3d60re42f403]",
4+
"Domain": "msidlab3.onmicrosoft.com",
5+
"TenantId": "8e44f19d-bbab-4a82-b76b-4cd0a6fbc97a",
6+
"ClientId": "d9cde0be-ad97-41e6-855e-2f85136671c1",
77
"CallbackPath": "/signin-oidc",
8-
"SignedOutCallbackPath": "/signout-callback-oidc",
9-
10-
// To call an API
11-
"ClientSecret": "[Copy the client secret added to the app from the Azure portal]"
12-
8+
"SignedOutCallbackPath": "/signout-callback-oidc"
139
},
1410
"Logging": {
1511
"LogLevel": {
16-
"Default": "Information",
17-
"Microsoft": "Warning",
18-
"Microsoft.Hosting.Lifetime": "Information"
12+
"Default": "Information",
13+
"Microsoft": "Warning",
14+
"Microsoft.Hosting.Lifetime": "Information"
1915
}
2016
},
2117
"AllowedHosts": "*",

UiTests/Common/UiTestHelpers.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ public static bool StartAndVerifyProcessesAreRunning(List<ProcessStartOptions> p
420420
{
421421
if (!UiTestHelpers.ProcessesAreAlive(processes.Values.ToList())) { RestartProcesses(processes, processDataEntries); }
422422
else { break; }
423-
}
423+
}
424424
}
425425

426426
if (!UiTestHelpers.ProcessesAreAlive(processes.Values.ToList()))
@@ -489,7 +489,7 @@ private static void SwapFiles(string path1, string path2)
489489
{
490490
// Write the contents of file1 to file2
491491
File.WriteAllText(path2, file1Contents);
492-
}
492+
}
493493
catch (Exception)
494494
{
495495
// If the second write fails, revert the first write
@@ -500,7 +500,7 @@ private static void SwapFiles(string path1, string path2)
500500
Console.WriteLine("File contents swapped successfully.");
501501
}
502502

503-
/// <summary>
503+
/// <summary>
504504
/// Builds the solution at the given path.
505505
/// </summary>
506506
/// <param name="solutionPath">Absolute path to the sln file to be built</param>

0 commit comments

Comments
 (0)