24 lines
956 B
XML
24 lines
956 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Flandre.Adapters.OneBot.Extensions" Version="2.0.0-rc.3" />
|
|
<PackageReference Include="Flandre.Core" Version="1.0.0-rc.4" />
|
|
<PackageReference Include="Flandre.Framework" Version="1.0.0-rc.11" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.8" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.8" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- 自动复制配置文件至输出目录 -->
|
|
<Content Include="**\*.json" Exclude="bin\**\*;obj\**\*" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|