2021-05-28 20:53:14 +05:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
|
|
|
<AssemblyName>DataClient</AssemblyName>
|
|
|
|
|
<RootNamespace>DataClient</RootNamespace>
|
|
|
|
|
<Version>0.0.3</Version>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
2021-06-04 16:57:32 +05:00
|
|
|
|
<DocumentationFile>D:\GIT\ASCKU_PC\DataClient\DataClient.xml</DocumentationFile>
|
2021-05-28 20:53:14 +05:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
|
|
|
<PackageReference Include="NLog" Version="4.7.10" />
|
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="1.7.2" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="Config\config.json">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|