2022-12-09 22:18:44 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-11-22 16:45:12 +08:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2022-12-13 17:42:49 +08:00
|
|
|
|
<Version>7.6.0.11</Version>
|
2022-11-22 16:45:12 +08:00
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
|
|
|
<DefineConstants>TRACE;DEBUG;EFCORE6;</DefineConstants>
|
|
|
|
|
<LangVersion>9.0</LangVersion>
|
|
|
|
|
<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\ShardingCore6.xml</DocumentationFile>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="..\..\Logo\logo.png">
|
|
|
|
|
<Pack>True</Pack>
|
|
|
|
|
<PackagePath>\</PackagePath>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="..\..\src\ShardingCore\**\*.cs" />
|
|
|
|
|
<Compile Remove="..\..\src\ShardingCore\obj\**" />
|
|
|
|
|
<Compile Remove="..\..\src\ShardingCore\bin\**" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-11-23 16:38:34 +08:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.11" />
|
2022-11-22 16:45:12 +08:00
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.11" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|