23 lines
731 B
XML
23 lines
731 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="Newtonsoft.Json" Version="13.0.1" />
|
|
<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>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MP.MONO.Core\MP.MONO.Core.csproj" />
|
|
<ProjectReference Include="..\MP.MONO.Data\MP.MONO.Data.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|