Skip to content

Commit cbe5fd8

Browse files
Merge pull request #44 from RaaLabs/small-things
Remove unused dependency, make it build again
2 parents 1210704 + 5060ece commit cbe5fd8

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

CodeStyle.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<GenerateDocumentationFile>true</GenerateDocumentationFile>
44
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
5-
<NoWarn>$(NoWarn);SYSLIB1006;CS1591;IL2104;IL2026;CS1570;CS1573</NoWarn>
5+
<NoWarn>$(NoWarn);SYSLIB1006;CS1591;IL2104;IL2026;CS1570;CS1573;NU1903</NoWarn>
66
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
77
</PropertyGroup>
88
</Project>

Source/Subscriber.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public async Task SubscribeToChangesFor(ISession connection, TimeSpan publishInt
5050
_metrics.SubscriptionSetupTime(timer.Elapsed.TotalSeconds);
5151

5252
_logger.Debug("Starting to read values from subscription");
53-
await foreach (var value in channel.Reader.ReadAllAsync(CancellationToken.None))
53+
await foreach (var value in channel.Reader.ReadAllAsync(CancellationToken.None).ConfigureAwait(false))
5454
{
5555
_logger.Verbose("Received value {Value} from subscription", value);
5656
_metrics.NumberOfReceivedMonitorNotifications(1);

Specifications/OPCUA.Specs.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
<PackageReference Include="Machine.Specifications.Runner.Console" Version="1.0.0" />
1313
<PackageReference Include="Machine.Specifications.Runner.VisualStudio" Version="2.10.2" />
1414
<PackageReference Include="Machine.Specifications.Should" Version="1.0.0" />
15-
<PackageReference Include="RaaLabs.Edge.Testing" Version="1.18.9" />
1615
<PackageReference Include="coverlet.collector" Version="6.0.2" />
1716
</ItemGroup>
1817
<ItemGroup>

0 commit comments

Comments
 (0)