17 lines
491 B
XML
17 lines
491 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NLog" Version="4.7.14" />
|
|
<PackageReference Include="StackExchange.Redis" Version="2.5.43" />
|
|
<PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|