more warnings

This commit is contained in:
Matt Parker
2025-10-17 19:18:17 +10:00
parent 370c158010
commit 2a80a65738
3 changed files with 6 additions and 2 deletions

View File

@@ -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

View File

@@ -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}"

View File

@@ -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()
{