18 lines
415 B
XML
18 lines
415 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<OutputType>Exe</OutputType>
|
||
|
<TargetFramework>net5.0</TargetFramework>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
||
|
<PackageReference Include="NLog" Version="4.7.10" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\DataClient\DataClient.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|