diff --git a/Directory.Build.props b/Directory.Build.props
index 28b9450..ae2b117 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -28,6 +28,10 @@
- $(NoWarn);VSTHRD011;VSTHRD002;VSTHRD003;VSTHRD103;VSTHRD105;VSTHRD110;VSTHRD200;MSTEST0045;CS1591;CS1573;CS1584;CS1658
+ $(NoWarn);CS1591;CS1573;CS1584;CS1658
+
+
+ $(NoWarn);VSTHRD012
diff --git a/Directory.Packages.props b/Directory.Packages.props
index 2e18aeb..d7a0712 100644
--- a/Directory.Packages.props
+++ b/Directory.Packages.props
@@ -32,6 +32,7 @@
+
diff --git a/src/AdaptiveRemote.App/AdaptiveRemote.App.csproj b/src/AdaptiveRemote.App/AdaptiveRemote.App.csproj
index 65d4a13..66c1310 100644
--- a/src/AdaptiveRemote.App/AdaptiveRemote.App.csproj
+++ b/src/AdaptiveRemote.App/AdaptiveRemote.App.csproj
@@ -14,6 +14,7 @@
+
diff --git a/src/AdaptiveRemote.App/Components/BlazorAppScope.cs b/src/AdaptiveRemote.App/Components/BlazorAppScope.cs
index 3f37846..358c181 100644
--- a/src/AdaptiveRemote.App/Components/BlazorAppScope.cs
+++ b/src/AdaptiveRemote.App/Components/BlazorAppScope.cs
@@ -19,10 +19,10 @@ public BlazorAppScope(IApplicationScopeContainer scopeContainer, IServiceProvide
_logger = logger;
_scopeContainer = scopeContainer;
- _ = PushSelfToScopeContainer();
+ _ = PushSelfToScopeContainerAsync();
}
- private async Task PushSelfToScopeContainer()
+ private async Task PushSelfToScopeContainerAsync()
{
try
{
diff --git a/src/AdaptiveRemote.App/Mvvm/MvvmObject.cs b/src/AdaptiveRemote.App/Mvvm/MvvmObject.cs
index ab259a8..ccc3722 100644
--- a/src/AdaptiveRemote.App/Mvvm/MvvmObject.cs
+++ b/src/AdaptiveRemote.App/Mvvm/MvvmObject.cs
@@ -7,7 +7,7 @@ public class MvvmObject : INotifyPropertyChanging, INotifyPropertyChanged
public event PropertyChangedEventHandler? PropertyChanged;
public event PropertyChangingEventHandler? PropertyChanging;
- private Dictionary