2021-09-29 22:52:43 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
2021-11-09 10:51:18 +08:00
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>netstandard2.1</TargetFramework>
|
|
|
|
<Version>$(EFCORE5)</Version>
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
|
|
<DefineConstants>TRACE;DEBUG;EFCORE5;</DefineConstants>
|
2021-11-30 16:37:42 +08:00
|
|
|
<LangVersion>9.0</LangVersion>
|
2021-11-09 10:51:18 +08:00
|
|
|
<AssemblyName>ShardingCore</AssemblyName>
|
|
|
|
<RootNamespace>ShardingCore</RootNamespace>
|
|
|
|
<RepositoryUrl>https://github.com/xuejmnet/sharding-core</RepositoryUrl>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
<DocumentationFile>bin\Release\ShardingCore.5x.xml</DocumentationFile>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Compile Include="..\..\src\ShardingCore\**\*.cs" />
|
|
|
|
<Compile Remove="..\..\src\ShardingCore\obj\**" />
|
|
|
|
<Compile Remove="..\..\src\ShardingCore\bin\**" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.12" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="5.0.12" />
|
|
|
|
</ItemGroup>
|
2021-09-29 22:52:43 +08:00
|
|
|
|
|
|
|
</Project>
|