-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathEFCore.ComplexIndexes.PostgreSQL.csproj
More file actions
33 lines (28 loc) · 1.33 KB
/
Copy pathEFCore.ComplexIndexes.PostgreSQL.csproj
File metadata and controls
33 lines (28 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>EFCore.ComplexIndexes.PostgreSQL</PackageId>
<Description>PostgreSQL provider extensions for EFCore.ComplexIndexes — GIN, GiST, BRIN, SP-GiST, and Hash index support for complex type properties.</Description>
<PackageTags>efcore;entityframework;complextype;index;postgresql;npgsql;gin;gist;brin</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>compile</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\EFCore.ComplexIndexes\EFCore.ComplexIndexes.csproj" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="build/EFCore.ComplexIndexes.PostgreSQL.targets"
Pack="true"
PackagePath="build/" />
<None Include="build/EFCore.ComplexIndexes.PostgreSQL.targets"
Pack="true"
PackagePath="buildTransitive/" />
</ItemGroup>
</Project>