ascnet/AscNet.Common/AscNet.Common.csproj

23 lines
799 B
XML
Raw Normal View History

2023-10-06 13:29:27 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<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" />
</ItemGroup>
2023-10-18 08:49:36 +00:00
<ItemGroup>
<ProjectReference Include="../AscNet.Table/AscNet.Table.csproj"
OutputItemType="Analyzer"
ReferenceOutputAssembly="false" />
<AdditionalFiles Include="../Resources/table/**" />
<ProjectReference Include="..\AscNet.Logging\AscNet.Logging.csproj" />
</ItemGroup>
2023-10-06 13:29:27 +00:00
</Project>