File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Microsoft.Toolkit.Uwp.UI.Media/Extensions/System Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,15 +11,15 @@ namespace Microsoft.Toolkit.Uwp.UI.Media.Extensions
11
11
/// <summary>
12
12
/// An extension <see langword="class"/> for the <see cref="Guid"/> type
13
13
/// </summary>
14
- public static class GuidExtensions
14
+ internal static class GuidExtensions
15
15
{
16
16
/// <summary>
17
17
/// Returns a <see cref="string"/> representation of a <see cref="Guid"/> only made of uppercase letters
18
18
/// </summary>
19
19
/// <param name="guid">The input <see cref="Guid"/> to process</param>
20
20
/// <returns>A <see cref="string"/> representation of <paramref name="guid"/> only made up of letters in the [A-Z] range</returns>
21
21
[ Pure ]
22
- internal static string ToUppercaseAsciiLetters ( this Guid guid )
22
+ public static string ToUppercaseAsciiLetters ( this Guid guid )
23
23
{
24
24
return new string ( (
25
25
from c in guid . ToString ( "N" )
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ namespace Microsoft.Toolkit.Uwp.UI.Media.Extensions
10
10
/// <summary>
11
11
/// An extension <see langword="class"/> for the <see cref="Uri"/> type
12
12
/// </summary>
13
- public static class UriExtensions
13
+ internal static class UriExtensions
14
14
{
15
15
/// <summary>
16
16
/// Returns an <see cref="Uri"/> that starts with the ms-appx:// prefix
@@ -19,7 +19,7 @@ public static class UriExtensions
19
19
/// <returns>A <see cref="Uri"/> equivalent to the first but relative to ms-appx://</returns>
20
20
/// <remarks>This is needed because the XAML converter doesn't use the ms-appx:// prefix</remarks>
21
21
[ Pure ]
22
- internal static Uri ToAppxUri ( this Uri uri )
22
+ public static Uri ToAppxUri ( this Uri uri )
23
23
{
24
24
if ( uri . Scheme . Equals ( "ms-resource" ) )
25
25
{
You can’t perform that action at this time.
0 commit comments