Skip to content

Commit

Permalink
Remove unused dependency, make it build again
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelschlatter committed Dec 19, 2024
1 parent 1210704 commit 5060ece
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CodeStyle.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<NoWarn>$(NoWarn);SYSLIB1006;CS1591;IL2104;IL2026;CS1570;CS1573</NoWarn>
<NoWarn>$(NoWarn);SYSLIB1006;CS1591;IL2104;IL2026;CS1570;CS1573;NU1903</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion Source/Subscriber.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public async Task SubscribeToChangesFor(ISession connection, TimeSpan publishInt
_metrics.SubscriptionSetupTime(timer.Elapsed.TotalSeconds);

_logger.Debug("Starting to read values from subscription");
await foreach (var value in channel.Reader.ReadAllAsync(CancellationToken.None))
await foreach (var value in channel.Reader.ReadAllAsync(CancellationToken.None).ConfigureAwait(false))
{
_logger.Verbose("Received value {Value} from subscription", value);
_metrics.NumberOfReceivedMonitorNotifications(1);
Expand Down
1 change: 0 additions & 1 deletion Specifications/OPCUA.Specs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
<PackageReference Include="Machine.Specifications.Runner.Console" Version="1.0.0" />
<PackageReference Include="Machine.Specifications.Runner.VisualStudio" Version="2.10.2" />
<PackageReference Include="Machine.Specifications.Should" Version="1.0.0" />
<PackageReference Include="RaaLabs.Edge.Testing" Version="1.18.9" />
<PackageReference Include="coverlet.collector" Version="6.0.2" />
</ItemGroup>
<ItemGroup>
Expand Down

0 comments on commit 5060ece

Please sign in to comment.