InABox.Client.Rest.csproj 681 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netstandard2.1</TargetFramework>
  4. <ImplicitUsings>disable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  8. <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
  9. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <PackageReference Include="RestSharp" Version="111.2.0" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\..\InABox.Core\InABox.Core.csproj" />
  16. </ItemGroup>
  17. </Project>