2021-09-20 22:26:48 +08:00
|
|
|
|
<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>
|
2022-02-18 09:02:31 +08:00
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
2021-11-09 10:51:18 +08:00
|
|
|
|
<DefineConstants>TRACE;DEBUG;EFCORE6;</DefineConstants>
|
2022-01-24 16:12:20 +08:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2021-10-15 17:18:23 +08:00
|
|
|
|
<RepositoryUrl>https://github.com/xuejmnet/sharding-core</RepositoryUrl>
|
2021-12-06 23:46:13 +08:00
|
|
|
|
<PackageIcon>logo.png</PackageIcon>
|
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-11-29 17:36:41 +08:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
2021-01-26 10:18:49 +08:00
|
|
|
|
</PropertyGroup>
|
2021-12-06 23:46:13 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="..\..\Logo\logo.png">
|
|
|
|
|
<Pack>True</Pack>
|
|
|
|
|
<PackagePath>\</PackagePath>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
2021-01-26 10:18:49 +08:00
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-02-03 20:51:56 +08:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.1" />
|
2021-01-26 10:18:49 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|