2018-07-19 12:42:48 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.6" />
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
2018-10-05 17:56:44 +00:00
|
|
|
<PackageReference Include="NLog" Version="4.5.10" />
|
2018-07-19 12:42:48 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|