-
-
Notifications
You must be signed in to change notification settings - Fork 469
Expand file tree
/
Copy pathEventFlow.SQLite.csproj
More file actions
20 lines (18 loc) · 851 Bytes
/
EventFlow.SQLite.csproj
File metadata and controls
20 lines (18 loc) · 851 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;netcoreapp3.1;net6.0;net8.0;net10.0</TargetFrameworks>
<Title>EventFlow.SQLite</Title>
<Description>SQLite event store for EventFlow</Description>
<PackageTags>CQRS ES event sourcing SQLite</PackageTags>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\EventFlow.SQLite.xml</DocumentationFile>
<IsPackable>true</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="dbup-sqlserver" Version="5.0.41" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.119" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\EventFlow.Sql\EventFlow.Sql.csproj" />
</ItemGroup>
</Project>