Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@

<!-- This warning is about using a JoinableTaskFactory, which is intended to solve a specific
class of issues that this application does not have. -->
<NoWarn>$(NoWarn);VSTHRD012</NoWarn>
<NoWarn>$(NoWarn);VSTHRD001;VSTHRD012</NoWarn>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<PackageVersion Include="Nerdbank.GitVersioning" Version="3.9.50" />
<!-- Code Analysis -->
<PackageVersion Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.102" />
<PackageVersion Include="Microsoft.VisualStudio.Threading" Version="17.10.48" />
<PackageVersion Include="Microsoft.VisualStudio.Threading" Version="17.14.15" />
</ItemGroup>
<ItemGroup Label="Test-Only Packages">
<!-- Test Frameworks -->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
using System.Net;
using System.Net.Sockets;
using System.Reflection;
using AdaptiveRemote.Logging;
using AdaptiveRemote.Services.Lifecycle;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using StreamJsonRpc;
using System.Net;
using System.Net.Sockets;
using System.Reflection;

namespace AdaptiveRemote.Services.Testing;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using System.Diagnostics;
using System.Net.Sockets;
using System.Text;
using AdaptiveRemote.EndtoEndTests.Logging;
using AdaptiveRemote.Services.Testing;
using Microsoft.Extensions.Logging;
using StreamJsonRpc;
using AdaptiveRemote.EndtoEndTests.Logging;

namespace AdaptiveRemote.EndtoEndTests.Host;

Expand Down