InABox.Client.RPC.csproj 728 B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>net8.0;netstandard2.1</TargetFrameworks>
  4. <ImplicitUsings>disable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <RootNamespace>InABox.RPC.Client</RootNamespace>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <ProjectReference Include="..\InABox.RPC.Shared\InABox.RPC.Shared.csproj" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <PackageReference Include="H.Formatters" Version="15.0.0" />
  13. <PackageReference Include="H.Formatters.BinaryFormatter" Version="2.0.59" />
  14. <PackageReference Include="H.Pipes" Version="2.0.59" />
  15. <PackageReference Include="WebSocket4Net" Version="0.15.2" />
  16. </ItemGroup>
  17. </Project>