18 lines
420 B
XML
18 lines
420 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NLog" Version="4.7.10" />
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="1.7.2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\STPClient\STPClient.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|