sharding/src/ShardingCore/ShardingCore.csproj

24 lines
1.0 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2021-01-26 10:18:49 +08:00
<PropertyGroup>
2021-11-09 10:51:18 +08:00
<TargetFramework>net6.0</TargetFramework>
<Version>$(EFCORE6)</Version>
2021-01-26 10:18:49 +08:00
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
2021-11-09 10:51:18 +08:00
<DefineConstants>TRACE;DEBUG;EFCORE6;</DefineConstants>
2021-11-30 16:37:42 +08:00
<LangVersion>9.0</LangVersion>
2021-10-15 17:18:23 +08:00
<RepositoryUrl>https://github.com/xuejmnet/sharding-core</RepositoryUrl>
2021-01-26 10:18:49 +08:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
2021-01-26 14:39:56 +08:00
<DocumentationFile>bin\Release\ShardingCore.xml</DocumentationFile>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<LangVersion>latest</LangVersion>
2021-01-26 10:18:49 +08:00
</PropertyGroup>
<ItemGroup>
2021-11-09 10:51:18 +08:00
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.0" />
2021-01-26 10:18:49 +08:00
</ItemGroup>
</Project>