InABox.Client.RPC.csproj 569 B

12345678910111213141516171819
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.1</TargetFramework>
  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.Pipes" Version="2.0.51" />
  13. <PackageReference Include="WebSocket4Net" Version="0.15.2" />
  14. </ItemGroup>
  15. </Project>