feat: initialize .NET 8 solution with project structure

This commit is contained in:
Claude Agent
2026-03-19 10:27:37 +01:00
commit 5b6f9ebbfd
15 changed files with 253 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
namespace NexusRMM.Infrastructure;
public class Class1
{
}

View File

@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\NexusRMM.Core\NexusRMM.Core.csproj" />
<ProjectReference Include="..\NexusRMM.Protos\NexusRMM.Protos.csproj" />
</ItemGroup>
</Project>