We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7612db8 commit 8f17d90Copy full SHA for 8f17d90
src/Aspire.Hosting.Maui/Utilities/MauiEnvironmentHelper.cs
@@ -203,7 +203,7 @@ private static string SanitizeFileName(string name)
203
204
private static string EncodeSemicolons(string value, out bool wasEncoded)
205
{
206
- wasEncoded = value.Contains(';', StringComparison.Ordinal);
+ wasEncoded = value.IndexOf(';') >= 0;
207
if (!wasEncoded)
208
209
return value;
0 commit comments