-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPicea.Abies.Conduit.ReadStore.PostgreSQL.csproj
More file actions
37 lines (31 loc) · 1.43 KB
/
Picea.Abies.Conduit.ReadStore.PostgreSQL.csproj
File metadata and controls
37 lines (31 loc) · 1.43 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
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<!-- NuGet package metadata -->
<PropertyGroup>
<PackageId>Picea.Abies.Conduit.ReadStore.PostgreSQL</PackageId>
<Title>Picea.Abies.Conduit.ReadStore.PostgreSQL</Title>
<Description>PostgreSQL read store for the Conduit RealWorld application. Provides CQRS read-side projections and queries using raw Npgsql with denormalized read models.</Description>
<Authors>Maurice Peters</Authors>
<PackageTags>conduit;realworld;cqrs;postgresql;read-store;event-sourcing;projection</PackageTags>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/picea/abies</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/picea/abies</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Picea.Abies.Conduit\Picea.Abies.Conduit.csproj" />
<PackageReference Include="Picea.Glauca" Version="0.1.*-*" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Npgsql" Version="9.0.5" />
</ItemGroup>
</Project>