-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcloudscribe.Logging.EFCore.pgsql.csproj
More file actions
34 lines (27 loc) · 1.35 KB
/
cloudscribe.Logging.EFCore.pgsql.csproj
File metadata and controls
34 lines (27 loc) · 1.35 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>PostgreSql Entity Framework Core implementation of cloudscribe ILogRepository</Description>
<Version>8.3.0</Version>
<TargetFramework>net8.0</TargetFramework>
<Authors>Joe Audette</Authors>
<PackageTags>cloudscribe;repositories;logging</PackageTags>
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/joeaudette/cloudscribe.Logging</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/cloudscribe/cloudscribe.Logging.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<None Include="icon.png" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\cloudscribe.Logging.EFCore.Common\cloudscribe.Logging.EFCore.Common.csproj" />
<ProjectReference Include="..\cloudscribe.Logging\cloudscribe.Logging.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="cloudscribe.Versioning" Version="8.3.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0" />
</ItemGroup>
</Project>