-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathEventSourcingDb.csproj
More file actions
46 lines (39 loc) · 1.96 KB
/
EventSourcingDb.csproj
File metadata and controls
46 lines (39 loc) · 1.96 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
38
39
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<ImplicitUsings>false</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="EventSourcingDb.Tests" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NSec.Cryptography" Version="25.4.0" />
<PackageReference Include="System.IO.Pipelines" Version="10.0.3" />
<PackageReference Include="Testcontainers" Version="4.10.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.3"/>
<PackageReference Include="Microsoft.Extensions.Options" Version="10.0.3"/>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.3"/>
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="10.0.3"/>
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.2"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="10.0.2" />
<None Include="..\..\README.md" Link="README.md" Pack="true" PackagePath="" />
</ItemGroup>
<PropertyGroup>
<PackageId>EventSourcingDb</PackageId>
<Authors>the native web GmbH</Authors>
<Company>the native web GmbH</Company>
<Description>The official .NET client SDK for EventSourcingDB.</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://www.eventsourcingdb.io</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/thenativeweb/eventsourcingdb-client-dotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>eventsourcingdb;esdb;event;events;event sourcing;event store;cqrs</PackageTags>
<IncludeSymbols>false</IncludeSymbols>
<IncludeSource>false</IncludeSource>
</PropertyGroup>
</Project>