InABox.Client.RPC.csproj 774 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Library</OutputType>
  4. <Nullable>enable</Nullable>
  5. <TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks>
  6. <Configurations>Debug;Release;Publish</Configurations>
  7. <Platforms>AnyCPU</Platforms>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\InABox.Formatters.Core\InABox.Formatters.Core.csproj" />
  11. <ProjectReference Include="..\InABox.RPC.Shared\InABox.RPC.Shared.csproj" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <PackageReference Include="H.Formatters" Version="15.0.0" />
  15. <PackageReference Include="H.Pipes" Version="15.0.0" />
  16. <PackageReference Include="WebSocket4Net" Version="0.15.2" />
  17. </ItemGroup>
  18. </Project>