forked from aneshas/tactical-ddd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTactical.DDD.EventSourcing.Postgres.csproj
44 lines (39 loc) · 2.1 KB
/
Tactical.DDD.EventSourcing.Postgres.csproj
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
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Title>Tactical.DDD.EventSourcing.Postgres</Title>
<Authors>Anes Hasicic <[email protected]></Authors>
<Description>Postgres EventStore and Aperture adapters</Description>
<PackageProjectUrl>https://github.com/aneshas/tactical-ddd</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/aneshas/tactical-ddd/blob/master/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://secure.gravatar.com/avatar/3bcba991d947a75cab31ba5183bb0ae0?s=512&r=g&d=retro</PackageIconUrl>
<RepositoryUrl>https://github.com/aneshas/tactical-ddd</RepositoryUrl>
<RepositoryType>Git</RepositoryType>
<PackageTags>DDD, DomainDrivenDesign, EventSourcing, EventStore</PackageTags>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<TargetFramework>net7.0</TargetFramework>
<Authors>Anes Hasicic <[email protected]></Authors>
<PackageVersion>1.0.1</PackageVersion>
<PackageId>TacticalDDD.EventSourcing.Postgres</PackageId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Aperture.Core" Version="0.3.6" />
<PackageReference Include="Dapper" Version="2.0.90" />
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="7.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Npgsql" Version="7.0.4" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Tactical.DDD.EventSourcing\Tactical.DDD.EventSourcing.csproj" />
</ItemGroup>
<ItemGroup>
<None Remove="EventStore.sql" />
<EmbeddedResource Include="EventStore.sql">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
</Project>