Upgrade to .NET 8 and code cleanup

This commit is contained in:
Stone_Red
2024-08-07 19:48:03 +02:00
parent 84afe70c96
commit 7078ed5637
33 changed files with 960 additions and 1008 deletions
+10 -11
View File
@@ -1,13 +1,12 @@
namespace YesNt.Interpreter.Enums
namespace YesNt.Interpreter.Enums;
internal enum Priority
{
internal enum Priority
{
PreProcessing,
Highest,
VeryHigh,
High,
Normal,
Low,
VeryLow
}
PreProcessing,
Highest,
VeryHigh,
High,
Normal,
Low,
VeryLow
}
+7 -8
View File
@@ -1,10 +1,9 @@
namespace YesNt.Interpreter.Enums
namespace YesNt.Interpreter.Enums;
public enum SearchMode
{
public enum SearchMode
{
StartOfLine,
EndOfLine,
Contains,
Exact
}
StartOfLine,
EndOfLine,
Contains,
Exact
}
+7 -8
View File
@@ -1,10 +1,9 @@
namespace YesNt.Interpreter.Enums
namespace YesNt.Interpreter.Enums;
public enum SpaceAround
{
public enum SpaceAround
{
StartEnd,
Start,
End,
None
}
StartEnd,
Start,
End,
None
}