ascnet/AscNet.Common/AscNet.Common.csproj

22 lines
851 B
XML
Raw Normal View History

2023-10-06 13:29:27 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
2023-10-06 13:29:27 +00:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Config.Net" Version="5.1.5" />
2023-10-18 08:49:36 +00:00
<PackageReference Include="CsvHelper" Version="30.0.1" />
<PackageReference Include="MessagePack" Version="2.4.59" />
2023-10-06 13:29:27 +00:00
<PackageReference Include="MongoDB.Driver" Version="2.21.0" />
2023-10-18 14:45:13 +00:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2023-10-06 13:29:27 +00:00
</ItemGroup>
2023-10-18 08:49:36 +00:00
<ItemGroup>
2023-10-18 14:45:13 +00:00
<ProjectReference Include="../AscNet.Table/AscNet.Table.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" />
2023-10-18 08:49:36 +00:00
<AdditionalFiles Include="../Resources/table/**" />
<ProjectReference Include="..\AscNet.Logging\AscNet.Logging.csproj" />
</ItemGroup>
2023-10-06 13:29:27 +00:00
</Project>