2022-09-28 13:12:08 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-01-26 10:18:49 +08:00
|
|
|
|
<PropertyGroup>
|
2022-11-09 16:04:39 +08:00
|
|
|
|
<TargetFrameworks>net6;net7;</TargetFrameworks>
|
2022-11-18 09:55:13 +08:00
|
|
|
|
<Version>7.0.0.5</Version>
|
2022-09-29 09:06:30 +08:00
|
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
2022-11-09 11:39:43 +08:00
|
|
|
|
<DefineConstants>TRACE;DEBUG;SHARDINGCORE7;</DefineConstants>
|
2022-01-24 16:12:20 +08:00
|
|
|
|
<LangVersion>latest</LangVersion>
|
2022-09-29 09:06:30 +08:00
|
|
|
|
<RepositoryUrl>https://github.com/dotnetcore/sharding-core</RepositoryUrl>
|
|
|
|
|
<PackageIcon>logo.png</PackageIcon>
|
2021-01-26 10:18:49 +08:00
|
|
|
|
</PropertyGroup>
|
2022-09-29 09:06:30 +08:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
2022-11-09 11:39:43 +08:00
|
|
|
|
<DocumentationFile>bin\Release\ShardingCore.xml</DocumentationFile>
|
|
|
|
|
<LangVersion>latest</LangVersion>
|
2022-09-29 09:06:30 +08:00
|
|
|
|
</PropertyGroup>
|
2022-11-09 11:39:43 +08:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|AnyCPU'">
|
2022-09-29 09:06:30 +08:00
|
|
|
|
<NoWarn>1701;1702;1591;</NoWarn>
|
2021-01-26 10:18:49 +08:00
|
|
|
|
</PropertyGroup>
|
2022-03-04 15:35:30 +08:00
|
|
|
|
<ItemGroup>
|
2022-10-09 14:51:22 +08:00
|
|
|
|
<Compile Remove="Core\VirtualRoutes\RouteConditions\**" />
|
|
|
|
|
<Compile Remove="Sharding\Abstractions\MergeParseContexts\**" />
|
|
|
|
|
<EmbeddedResource Remove="Core\VirtualRoutes\RouteConditions\**" />
|
|
|
|
|
<EmbeddedResource Remove="Sharding\Abstractions\MergeParseContexts\**" />
|
|
|
|
|
<None Remove="Core\VirtualRoutes\RouteConditions\**" />
|
|
|
|
|
<None Remove="Sharding\Abstractions\MergeParseContexts\**" />
|
2022-03-04 15:35:30 +08:00
|
|
|
|
</ItemGroup>
|
2021-12-06 23:46:13 +08:00
|
|
|
|
<ItemGroup>
|
2022-09-29 09:06:30 +08:00
|
|
|
|
<None Include="..\..\Logo\logo.png">
|
|
|
|
|
<Pack>True</Pack>
|
|
|
|
|
<PackagePath>\</PackagePath>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
2022-11-09 11:39:43 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.0" />
|
2021-12-06 23:46:13 +08:00
|
|
|
|
</ItemGroup>
|
2022-03-01 22:50:59 +08:00
|
|
|
|
<ItemGroup>
|
2022-10-09 14:51:22 +08:00
|
|
|
|
<Folder Include="Sharding\Visitors\GroupBys" />
|
2022-03-01 22:50:59 +08:00
|
|
|
|
</ItemGroup>
|
2021-01-26 10:18:49 +08:00
|
|
|
|
</Project>
|