InABox.Server.RPC.csproj 753 B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <RootNamespace>InABox.RPC.Server</RootNamespace>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <ProjectReference Include="..\inabox.ipc.shared\InABox.IPC.Shared.csproj" />
  10. <ProjectReference Include="..\inabox.logging.shared\InABox.Logging.Shared.csproj" />
  11. <ProjectReference Include="..\InABox.RPC.Shared\InABox.RPC.Shared.csproj" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <PackageReference Include="H.Pipes.AccessControl" Version="2.0.42" />
  15. <PackageReference Include="websocketsharp.core" Version="1.0.0" />
  16. </ItemGroup>
  17. </Project>