Skip to content

Commit 7225c0b

Browse files
authored
Update nuget packages and fix breaking changes. (#43)
1 parent 58612ba commit 7225c0b

File tree

2 files changed

+29
-29
lines changed

2 files changed

+29
-29
lines changed

Source/MQTTnetApp.csproj

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
<AssemblyVersion>0.0.0</AssemblyVersion>
88
<NeutralLanguage>en-US</NeutralLanguage>
99
<IsPackable>false</IsPackable>
10-
<PackageId/>
11-
<PackageVersion/>
12-
<Authors/>
10+
<PackageId />
11+
<PackageVersion />
12+
<Authors />
1313
<Company>Christian Kratky</Company>
1414
<ApplicationIcon>Assets\Icons\App.ico</ApplicationIcon>
1515
<FileVersion>0.0.0</FileVersion>
@@ -23,25 +23,25 @@
2323
<DebugType>none</DebugType>
2424
</PropertyGroup>
2525
<ItemGroup>
26-
<Folder Include="Configuration\Service"/>
27-
<AvaloniaResource Include="Assets\**"/>
28-
<None Remove="Assets\Icons\arrow_down.png"/>
29-
<None Remove="Assets\Icons\arrow_up.png"/>
26+
<Folder Include="Configuration\Service" />
27+
<AvaloniaResource Include="Assets\**" />
28+
<None Remove="Assets\Icons\arrow_down.png" />
29+
<None Remove="Assets\Icons\arrow_up.png" />
3030
</ItemGroup>
3131
<ItemGroup>
32-
<PackageReference Include="Avalonia" Version="0.10.12"/>
33-
<PackageReference Include="Avalonia.AvaloniaEdit" Version="0.10.12.2"/>
34-
<PackageReference Include="Avalonia.Controls.DataGrid" Version="0.10.12"/>
35-
<PackageReference Include="Avalonia.Desktop" Version="0.10.12"/>
36-
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.12"/>
37-
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.12"/>
38-
<PackageReference Include="AvaloniaEdit.TextMate" Version="0.10.12.2"/>
39-
<PackageReference Include="AvaloniaEdit.TextMate.Grammars" Version="0.10.12.1"/>
40-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0"/>
41-
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0"/>
42-
<PackageReference Include="MQTTnet" Version="4.0.0.141"/>
43-
<PackageReference Include="MessagePack" Version="2.3.85"/>
44-
<PackageReference Include="System.Text.Json" Version="6.0.2"/>
32+
<PackageReference Include="Avalonia" Version="0.10.13" />
33+
<PackageReference Include="Avalonia.AvaloniaEdit" Version="0.10.12.2" />
34+
<PackageReference Include="Avalonia.Controls.DataGrid" Version="0.10.13" />
35+
<PackageReference Include="Avalonia.Desktop" Version="0.10.13" />
36+
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.13" />
37+
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.13" />
38+
<PackageReference Include="AvaloniaEdit.TextMate" Version="0.10.12.2" />
39+
<PackageReference Include="AvaloniaEdit.TextMate.Grammars" Version="0.10.12.1" />
40+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
41+
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
42+
<PackageReference Include="MQTTnet" Version="4.0.0.153" />
43+
<PackageReference Include="MessagePack" Version="2.3.85" />
44+
<PackageReference Include="System.Text.Json" Version="6.0.2" />
4545
</ItemGroup>
4646
<ItemGroup>
4747
<Compile Update="Main\MainView.axaml.cs">
@@ -81,13 +81,13 @@
8181
</Compile>
8282
</ItemGroup>
8383
<ItemGroup>
84-
<None Remove="Pages\Info\Readme.md"/>
85-
<EmbeddedResource Include="Pages\Info\Readme.md"/>
86-
<UpToDateCheckInput Remove="Common\QualityOfServiceLevel\QualityOfServiceLevelSelectorView.axaml"/>
87-
<UpToDateCheckInput Remove="Configuration\QualityOfServiceLevel\QualityOfServiceLevelSelectorView.axaml"/>
88-
<UpToDateCheckInput Remove="Common\BufferInspector\BufferInspectorView.axaml"/>
89-
<UpToDateCheckInput Remove="Common\BufferInspector\BufferValueView.axaml"/>
90-
<UpToDateCheckInput Remove="Common\ObjectDump\ObjectDumpPropertyView.axaml"/>
91-
<UpToDateCheckInput Remove="Common\ObjectDump\ObjectDumpView.axaml"/>
84+
<None Remove="Pages\Info\Readme.md" />
85+
<EmbeddedResource Include="Pages\Info\Readme.md" />
86+
<UpToDateCheckInput Remove="Common\QualityOfServiceLevel\QualityOfServiceLevelSelectorView.axaml" />
87+
<UpToDateCheckInput Remove="Configuration\QualityOfServiceLevel\QualityOfServiceLevelSelectorView.axaml" />
88+
<UpToDateCheckInput Remove="Common\BufferInspector\BufferInspectorView.axaml" />
89+
<UpToDateCheckInput Remove="Common\BufferInspector\BufferValueView.axaml" />
90+
<UpToDateCheckInput Remove="Common\ObjectDump\ObjectDumpPropertyView.axaml" />
91+
<UpToDateCheckInput Remove="Common\ObjectDump\ObjectDumpView.axaml" />
9292
</ItemGroup>
9393
</Project>

Source/Services/Mqtt/MqttClientService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public sealed class MqttClientService
2020
readonly List<Action<InspectMqttPacketEventArgs>> _messageInspectors = new();
2121
readonly MqttNetEventLogger _mqttNetEventLogger = new();
2222

23-
MqttClient? _mqttClient;
23+
IMqttClient? _mqttClient;
2424

2525
public MqttClientService()
2626
{

0 commit comments

Comments
 (0)