sharding/src/ShardingCore/ShardingCore.csproj

36 lines
1.4 KiB
XML
Raw Normal View History

<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>
<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>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<LangVersion>latest</LangVersion>
2021-01-26 10:18:49 +08:00
</PropertyGroup>
<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>
<ItemGroup>
<Folder Include="Sharding\Abstractions\MergeParseContexts" />
2022-03-02 22:22:35 +08:00
<Folder Include="Sharding\Visitors\GroupBys" />
</ItemGroup>
2021-01-26 10:18:49 +08:00
</Project>