Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
Minor refactoring
  • Loading branch information
chrishamm committed Oct 17, 2024
1 parent 91f2e16 commit 925e548
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/DuetAPI/DuetAPI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Text.Json" Version="6.0.9" />
<PackageReference Include="System.Text.Json" Version="6.0.10" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/DuetControlServer/DuetControlServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<ItemGroup>
<PackageReference Include="Nito.AsyncEx" Version="5.1.2" />
<PackageReference Include="NLog" Version="5.3.3" />
<PackageReference Include="NLog" Version="5.3.4" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.5" />
<PackageReference Include="System.Threading.Channels" Version="6.0.0" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/DuetControlServer/SPI/Channel/Processor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ public async Task PopAsync()
/// <summary>
/// Block file macro calls if the state is being copied
/// </summary>
private static List<MacroFile> _macrosToStart = new();
private static readonly List<MacroFile> _macrosToStart = new();

/// <summary>
/// Copy the state from another channel processor
Expand Down
2 changes: 1 addition & 1 deletion src/DuetPluginService/DuetPluginService.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<ItemGroup>
<PackageReference Include="Nito.AsyncEx" Version="5.1.2" />
<PackageReference Include="NLog" Version="5.3.2" />
<PackageReference Include="NLog" Version="5.3.4" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions src/UnitTests/UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="nunit" Version="4.1.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0">
<PackageReference Include="nunit" Version="4.2.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 925e548

Please sign in to comment.