InABox.Client.RPC.csproj 775 B

123456789101112131415161718192021
  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="..\..\3rdpartylibs\websocket-sharp-master\websocket-sharp-standard\websocket-sharp-standard.csproj" />
  10. <ProjectReference Include="..\InABox.RPC.Shared\InABox.RPC.Shared.csproj" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <PackageReference Include="H.Pipes" Version="2.0.51" />
  14. <PackageReference Include="Websocket.Client" Version="4.6.1" />
  15. <PackageReference Include="WebSocket4Net" Version="0.15.2" />
  16. </ItemGroup>
  17. </Project>