-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
41 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
using System.Reflection; | ||
using System.Text.RegularExpressions; | ||
|
||
namespace Microsoft.Identity.Web.Diagnostics | ||
namespace Microsoft.Identity.Web | ||
{ | ||
internal static class IdHelper | ||
Check failure on line 11 in src/Microsoft.Identity.Web.Diagnostics/IdHelper.cs GitHub Actions / Build and run unit tests
|
||
{ | ||
|
@@ -36,14 +36,14 @@ internal static class IdHelper | |
return version[1]; | ||
}); | ||
|
||
public static string GetIdWebVersion() | ||
internal static string GetIdWebVersion() | ||
Check failure on line 39 in src/Microsoft.Identity.Web.Diagnostics/IdHelper.cs GitHub Actions / Build and run unit tests
|
||
{ | ||
return s_idWebVersion.Value; | ||
} | ||
|
||
public static string CreateTelemetryInfo() | ||
internal static string CreateTelemetryInfo() | ||
Check failure on line 44 in src/Microsoft.Identity.Web.Diagnostics/IdHelper.cs GitHub Actions / Build and run unit tests
|
||
{ | ||
return string.Format(CultureInfo.InvariantCulture, IDWebSku + GetIdWebVersion()); | ||
return string.Format(CultureInfo.InvariantCulture, IDWebSku + s_idWebVersion.Value); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters