-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSTX.EFxceptions.Identity.PostgreSQL.csproj
More file actions
57 lines (53 loc) · 2.55 KB
/
STX.EFxceptions.Identity.PostgreSQL.csproj
File metadata and controls
57 lines (53 loc) · 2.55 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
47
48
49
50
51
52
53
54
55
56
57
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<Title>STX.EFxceptions.Identity.PostgreSQL</Title>
<Product>STX.EFxceptions.Identity.PostgreSQL</Product>
<PackageId>STX.EFxceptions.Identity.PostgreSQL</PackageId>
<Authors>The Standard Community</Authors>
<Company>The Standard Community</Company>
<Description>A Standardized .NET library for PostgreSQL that implements AspNetCore.Identity, that captures the exceptions thrown by EntityFramework and converts them into meaningful exceptions...</Description>
<Copyright>The Standard Community 2024 (c)</Copyright>
<PackageIcon>EFxceptions.png</PackageIcon>
<PackageProjectUrl>https://github.com/The-Standard-Organization/STX.EFxceptions.PostgreSQL</PackageProjectUrl>
<RepositoryUrl>https://github.com/The-Standard-Organization/STX.EFxceptions.PostgreSQL</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>.NET; EF; Entity Framework; Exceptions; SQL; Postgre SQL; The Standard</PackageTags>
<PackageReleaseNotes>
This beta release provides a Standardized .NET library for Postgre SQL that implements AspNetCore.Identity, that captures the exceptions thrown by EntityFramework and converts them into meaningful exceptions...
</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Version>0.0.1</Version>
<AssemblyVersion>0.0.1</AssemblyVersion>
<FileVersion>0.0.1</FileVersion>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.16" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.11" />
<PackageReference Include="STX.EFxceptions.Identity.Core" Version="0.1.7" />
<PackageReference Include="STX.EFxceptions.Abstractions" Version="0.1.7" />
</ItemGroup>
<ItemGroup>
<None Include="..\README.md">
<Pack>true</Pack>
<PackagePath></PackagePath>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="..\LICENSE.txt">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\Resources\Images\EFxceptions.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\STX.EFxceptions.PostgreSQL.Base\STX.EFxceptions.PostgreSQL.Base.csproj" />
</ItemGroup>
</Project>