InABox.Client.Rest.csproj 634 B

12345678910111213141516171819
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.1</TargetFramework>
  4. <ImplicitUsings>disable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <ProjectReference Include="..\..\inabox.client.websocket\InABox.Client.WebSocket.csproj" />
  9. <ProjectReference Include="..\..\InABox.Core\InABox.Core.csproj" />
  10. <ProjectReference Include="..\..\inabox.websocket.shared\InABox.WebSocket.Shared.csproj" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <PackageReference Include="RestSharp" Version="110.2.0" />
  14. </ItemGroup>
  15. </Project>