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 e190fe7 commit e16193fCopy full SHA for e16193f
src/HUDMerger.Core/App.cs
@@ -0,0 +1,10 @@
1
+using System;
2
+using System.Text.RegularExpressions;
3
+
4
+namespace HUDMerger.Core;
5
6
+public partial class App
7
+{
8
+ [GeneratedRegex(@"[/\\]+", RegexOptions.Compiled)]
9
+ public static partial Regex PathSeparatorRegex();
10
+}
src/HUDMerger/App.xaml.cs
@@ -17,9 +17,6 @@ namespace HUDMerger;
17
/// </summary>
18
public partial class App : Application
19
{
20
- [GeneratedRegex(@"[/\\]+")]
21
- public static partial Regex PathSeparatorRegex();
22
-
23
public Lazy<Settings> Settings = new(() =>
24
25
string? teamFortress2Folder = null;
0 commit comments