Skip to content

Commit

Permalink
Update nuget packages and fix breaking changes. (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
chkr1011 committed Apr 21, 2022
1 parent 58612ba commit 7225c0b
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 29 deletions.
56 changes: 28 additions & 28 deletions Source/MQTTnetApp.csproj
Expand Up @@ -7,9 +7,9 @@
<AssemblyVersion>0.0.0</AssemblyVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<IsPackable>false</IsPackable>
<PackageId/>
<PackageVersion/>
<Authors/>
<PackageId />
<PackageVersion />
<Authors />
<Company>Christian Kratky</Company>
<ApplicationIcon>Assets\Icons\App.ico</ApplicationIcon>
<FileVersion>0.0.0</FileVersion>
Expand All @@ -23,25 +23,25 @@
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<Folder Include="Configuration\Service"/>
<AvaloniaResource Include="Assets\**"/>
<None Remove="Assets\Icons\arrow_down.png"/>
<None Remove="Assets\Icons\arrow_up.png"/>
<Folder Include="Configuration\Service" />
<AvaloniaResource Include="Assets\**" />
<None Remove="Assets\Icons\arrow_down.png" />
<None Remove="Assets\Icons\arrow_up.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Avalonia" Version="0.10.12"/>
<PackageReference Include="Avalonia.AvaloniaEdit" Version="0.10.12.2"/>
<PackageReference Include="Avalonia.Controls.DataGrid" Version="0.10.12"/>
<PackageReference Include="Avalonia.Desktop" Version="0.10.12"/>
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.12"/>
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.12"/>
<PackageReference Include="AvaloniaEdit.TextMate" Version="0.10.12.2"/>
<PackageReference Include="AvaloniaEdit.TextMate.Grammars" Version="0.10.12.1"/>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0"/>
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0"/>
<PackageReference Include="MQTTnet" Version="4.0.0.141"/>
<PackageReference Include="MessagePack" Version="2.3.85"/>
<PackageReference Include="System.Text.Json" Version="6.0.2"/>
<PackageReference Include="Avalonia" Version="0.10.13" />
<PackageReference Include="Avalonia.AvaloniaEdit" Version="0.10.12.2" />
<PackageReference Include="Avalonia.Controls.DataGrid" Version="0.10.13" />
<PackageReference Include="Avalonia.Desktop" Version="0.10.13" />
<PackageReference Include="Avalonia.Diagnostics" Version="0.10.13" />
<PackageReference Include="Avalonia.ReactiveUI" Version="0.10.13" />
<PackageReference Include="AvaloniaEdit.TextMate" Version="0.10.12.2" />
<PackageReference Include="AvaloniaEdit.TextMate.Grammars" Version="0.10.12.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
<PackageReference Include="MQTTnet" Version="4.0.0.153" />
<PackageReference Include="MessagePack" Version="2.3.85" />
<PackageReference Include="System.Text.Json" Version="6.0.2" />
</ItemGroup>
<ItemGroup>
<Compile Update="Main\MainView.axaml.cs">
Expand Down Expand Up @@ -81,13 +81,13 @@
</Compile>
</ItemGroup>
<ItemGroup>
<None Remove="Pages\Info\Readme.md"/>
<EmbeddedResource Include="Pages\Info\Readme.md"/>
<UpToDateCheckInput Remove="Common\QualityOfServiceLevel\QualityOfServiceLevelSelectorView.axaml"/>
<UpToDateCheckInput Remove="Configuration\QualityOfServiceLevel\QualityOfServiceLevelSelectorView.axaml"/>
<UpToDateCheckInput Remove="Common\BufferInspector\BufferInspectorView.axaml"/>
<UpToDateCheckInput Remove="Common\BufferInspector\BufferValueView.axaml"/>
<UpToDateCheckInput Remove="Common\ObjectDump\ObjectDumpPropertyView.axaml"/>
<UpToDateCheckInput Remove="Common\ObjectDump\ObjectDumpView.axaml"/>
<None Remove="Pages\Info\Readme.md" />
<EmbeddedResource Include="Pages\Info\Readme.md" />
<UpToDateCheckInput Remove="Common\QualityOfServiceLevel\QualityOfServiceLevelSelectorView.axaml" />
<UpToDateCheckInput Remove="Configuration\QualityOfServiceLevel\QualityOfServiceLevelSelectorView.axaml" />
<UpToDateCheckInput Remove="Common\BufferInspector\BufferInspectorView.axaml" />
<UpToDateCheckInput Remove="Common\BufferInspector\BufferValueView.axaml" />
<UpToDateCheckInput Remove="Common\ObjectDump\ObjectDumpPropertyView.axaml" />
<UpToDateCheckInput Remove="Common\ObjectDump\ObjectDumpView.axaml" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Source/Services/Mqtt/MqttClientService.cs
Expand Up @@ -20,7 +20,7 @@ public sealed class MqttClientService
readonly List<Action<InspectMqttPacketEventArgs>> _messageInspectors = new();
readonly MqttNetEventLogger _mqttNetEventLogger = new();

MqttClient? _mqttClient;
IMqttClient? _mqttClient;

public MqttClientService()
{
Expand Down

0 comments on commit 7225c0b

Please sign in to comment.