123456789101112131415161718192021 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Library</OutputType>
- <Nullable>enable</Nullable>
- <TargetFramework>netstandard2.1</TargetFramework>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\InABox.RPC.Shared\InABox.RPC.Shared.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="H.Formatters" Version="15.0.0" />
- <PackageReference Include="H.Formatters.BinaryFormatter" Version="15.0.0" />
- <PackageReference Include="H.Formatters.MessagePack" Version="15.0.0" />
- <PackageReference Include="H.Pipes" Version="15.0.0" />
- <PackageReference Include="WebSocket4Net" Version="0.15.2" />
- </ItemGroup>
- </Project>
|