-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDatabaseEasyLog.csproj
More file actions
29 lines (26 loc) · 1.28 KB
/
DatabaseEasyLog.csproj
File metadata and controls
29 lines (26 loc) · 1.28 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>DatabaseEasyLog</PackageId>
<Title>DatabaseEasyLog</Title>
<Description>DB Context Logger independent of the database driver</Description>
<Version>1.0.1</Version>
<Authors>Tobias Janssen, Sami Suleiman</Authors>
<PackageProjectUrl>https://github.com/kryptobi/dblogger/blob/main/README.md</PackageProjectUrl>
<PackageTags>db mysql changetracker efcore dblogger log entityframework
TobiasJanssen SamiSuleiman
</PackageTags>
<RepositoryUrl>https://github.com/kryptobi/dblogger</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<TargetFramework>net7.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.9.0"/>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.12"/>
<PackageReference Include="Thinktecture.Runtime.Extensions.Json" Version="5.1.0"/>
</ItemGroup>
</Project>