sharding/src/ShardingCore/ShardingCore.csproj

20 lines
881 B
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2021-01-26 10:18:49 +08:00
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Version>$(EFCORE5)</Version>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<DefineConstants>TRACE;DEBUG;EFCORE5;</DefineConstants>
<LangVersion>8.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>
2021-01-26 10:18:49 +08:00
</PropertyGroup>
<ItemGroup>
2021-10-18 09:08:47 +08:00
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.11" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="5.0.11" />
2021-01-26 10:18:49 +08:00
</ItemGroup>
</Project>