fix: upgrade to .NET 10 and add required NuGet packages

This commit is contained in:
Claude Agent
2026-03-19 11:19:00 +01:00
parent 5b6f9ebbfd
commit b2b07a2808
4 changed files with 28 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
@@ -13,4 +13,10 @@
<ProjectReference Include="..\NexusRMM.Protos\NexusRMM.Protos.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Grpc.AspNetCore" Version="2.76.0" />
<PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.2.9" />
</ItemGroup>
</Project>