12345678910111213141516171819202122 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Library</OutputType>
- <Nullable>enable</Nullable>
- <TargetFrameworks>netstandard2.1;net8.0</TargetFrameworks>
- <Configurations>Debug;Release;Publish</Configurations>
- <Platforms>AnyCPU</Platforms>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\InABox.Formatters.Core\InABox.Formatters.Core.csproj" />
- <ProjectReference Include="..\InABox.RPC.Shared\InABox.RPC.Shared.csproj" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Include="H.Formatters" Version="15.0.0" />
- <PackageReference Include="H.Pipes" Version="15.0.0" />
- <PackageReference Include="WebSocket4Net" Version="0.15.2" />
- </ItemGroup>
- </Project>
|