Skip to content

Commit

Permalink
Update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
sungaila committed Nov 13, 2024
1 parent 4f7dedd commit 18b8c6b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions Tests/Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<!-- NuGet Icon -->
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="MSTest.TestAdapter" Version="3.6.2" />
<PackageReference Include="MSTest.TestFramework" Version="3.6.2" />
<PackageReference Include="MSTest.TestAdapter" Version="3.6.3" />
<PackageReference Include="MSTest.TestFramework" Version="3.6.3" />
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions WebConverter/Client/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
using Microsoft.AspNetCore.Components.Web;
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
using Microsoft.Extensions.DependencyInjection;
using PatrickJahr.Blazor.FileHandling;
using PatrickJahr.Blazor.WebShare;
using System;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
using Thinktecture.Blazor.FileHandling;
using Thinktecture.Blazor.WebShare;

namespace PDFtoZPL.WebConverter
{
Expand Down
4 changes: 2 additions & 2 deletions WebConverter/Pages/Index.razor
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
@using SkiaSharp;
@using System.Threading;
@using System.Text.Json;
@using Thinktecture.Blazor.WebShare;
@using Thinktecture.Blazor.WebShare.Models;
@using PatrickJahr.Blazor.WebShare;
@using PatrickJahr.Blazor.WebShare.Models;
@inject ILogger<Index> Logger
@inject IJSRuntime JS
@inject WebShareService WebShareService;
Expand Down
2 changes: 1 addition & 1 deletion WebConverter/Pages/Index.razor.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using Microsoft.AspNetCore.Components.Forms;
using Microsoft.Extensions.Logging;
using Microsoft.JSInterop;
using PatrickJahr.Blazor.WebShare.Models;
using PDFtoImage;
using PDFtoZPL.WebConverter.Models;
using SkiaSharp;
Expand All @@ -11,7 +12,6 @@
using System.Linq;
using System.Text.Json;
using System.Threading.Tasks;
using Thinktecture.Blazor.WebShare.Models;

namespace PDFtoZPL.WebConverter.Pages
{
Expand Down
8 changes: 4 additions & 4 deletions WebConverter/WebConverter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@
<ItemGroup>
<PackageReference Include="ByteSize" Version="2.1.2" />
<PackageReference Include="Markdig.Signed" Version="0.38.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.0-rc.2.24474.3" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.0-rc.2.24474.3" PrivateAssets="all" />
<PackageReference Include="Thinktecture.Blazor.FileHandling" Version="2.0.0" />
<PackageReference Include="Thinktecture.Blazor.WebShare" Version="2.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="9.0.0" PrivateAssets="all" />
<PackageReference Include="PatrickJahr.Blazor.FileHandling" Version="1.0.0" />
<PackageReference Include="PatrickJahr.Blazor.WebShare" Version="1.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 18b8c6b

Please sign in to comment.