Skip to content

Commit d32647f

Browse files
committed
Revert "Work."
This reverts commit 01ac9ef.
1 parent 01ac9ef commit d32647f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

ProjectTemplates/configuration.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"B2C_Authority": "https://fabrikamb2c.b2clogin.com/fabrikamb2c.onmicrosoft.com/b2c_1_susi",
66

77
"B2C_Client_ClientId": "fdb91ff5-5ce6-41f3-bdbd-8267c817015d",
8-
"B2C_Client_ClientSecret": "X330F3#92!z614M4",
8+
"B2C_Client_ClientSecret": "[Copy the client secret added to the app from the Azure portal]",
99
"B2C_Client_Port": "44365",
1010

1111
"B2C_WebApi_ClientId": "90c0fe63-bcf2-44d5-8fb7-b8bbc0b29dc6",
@@ -19,12 +19,12 @@
1919
"AAD_Authority": "https://login.microsoftonline.com/msidentitysamplestesting.onmicrosoft.com",
2020

2121
"AAD_Client_ClientId": "86699d80-dd21-476a-bcd1-7c1a3d471f75",
22-
"AAD_Client_ClientSecret": "fvHwfoLA8Zls6Huj5MBUQUDrJ5HXrauFQKDd2CacxJQ=",
22+
"AAD_Client_ClientSecret": "[Copy the client secret added to the app from the Azure portal]",
2323
"AAD_Client_Port": "44357",
2424

2525
"AAD_WebApi_ClientId": "a4c2469b-cf84-4145-8f5f-cb7bacf814bc",
2626
"AAD_WebApi_Port": "44351",
27-
"AAD_WebApi_ClientSecret": "DuJFu_DB_L_MiR5c4cEuv_d.VGr3WZ~9gS"
27+
"AAD_WebApi_ClientSecret": "[Copy the client secret added to the app from the Azure portal]"
2828
},
2929
"Projects": [
3030
{

tests/IntegrationTests/WebAppUiTests/WebAppIntegrationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ private static void EnterUsername(
6161
UserInformationFieldIds fields)
6262
{
6363
// Lab user needs to be a guest in the msidentity-samples-testing tenant
64-
Trace.WriteLine(string.Format(System.Globalization.CultureInfo.InvariantCulture, "Logging in ... Entering user name: {0}", user.Upn));
64+
Trace.WriteLine(string.Format("Logging in ... Entering user name: {0}", user.Upn));
6565

6666
driver.FindElement(By.Id(fields.AADUsernameInputId)).SendKeys(user.Upn.Contains("EXT") ? user.HomeUPN : user.Upn);
6767

tools/ConfigureGeneratedApplications/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ private static void ProcessFile(Configuration configuration, string filePath, Fi
9696
element = prop.Value;
9797
}
9898

99-
string replaceFrom = element.ValueKind == JsonValueKind.Number ? element.GetInt32().ToString(System.Globalization.CultureInfo.InvariantCulture) : element.ToString();
99+
string replaceFrom = element.ValueKind == JsonValueKind.Number ? element.GetInt32().ToString() : element.ToString();
100100
int index = GetIndex(element);
101101
int length = replaceFrom.Length;
102102
string replaceBy = configuration.GetParameterValue(propertyMapping.SetFrom);

0 commit comments

Comments
 (0)