diff --git a/.globalconfig b/.globalconfig index b63c9c2..4378d54 100644 --- a/.globalconfig +++ b/.globalconfig @@ -17,4 +17,7 @@ dotnet_diagnostic.VSTHRD200.severity = none # VSTHRD003: Avoid awaiting foreign Tasks dotnet_diagnostic.VSTHRD003.severity = none -dotnet_diagnostic.VSTHRD*.severity = none +# VSTHRD100: Avoid async void methods +dotnet_diagnostic.VSTHRD100.severity = none + +dotnet_diagnostic.VSTHRD101.severity = none diff --git a/SharpIDE.Photino.sln b/SharpIDE.Photino.sln index 61273e9..0a5977f 100644 --- a/SharpIDE.Photino.sln +++ b/SharpIDE.Photino.sln @@ -14,6 +14,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution README.md = README.md Directory.Packages.props = Directory.Packages.props NotesToUsers.md = NotesToUsers.md + .globalconfig = .globalconfig EndProjectSection EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharpIDE.Photino", "src\SharpIDE.Photino\SharpIDE.Photino.csproj", "{E35167E1-0FF4-4194-97A8-CC95EDA224CD}" diff --git a/src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.cs b/src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.cs index c083fa0..c5ca4c1 100644 --- a/src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.cs +++ b/src/SharpIDE.Godot/Features/Debug_/Tab/SubTabs/ThreadsVariablesSubTab.cs @@ -13,7 +13,7 @@ public partial class ThreadsVariablesSubTab : Control private VBoxContainer _stackFramesVboxContainer = null!; private VBoxContainer _variablesVboxContainer = null!; public SharpIdeProjectModel Project { get; set; } = null!; - private ThreadModel? _selectedThread = null!; // null when not at a stop point + // private ThreadModel? _selectedThread = null!; // null when not at a stop point public override void _Ready() {