-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProblemize.csproj
More file actions
48 lines (42 loc) · 2.28 KB
/
Problemize.csproj
File metadata and controls
48 lines (42 loc) · 2.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<EnablePackageValidation>true</EnablePackageValidation>
<IsPackable>true</IsPackable>
</PropertyGroup>
<PropertyGroup>
<Authors>Johannes Musbach</Authors>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/FloppyShelf/Problemize</RepositoryUrl>
<Description>This package provides a robust and extensible framework for centralized exception handling in .NET Web APIs. It standardizes error responses using ProblemDetails, supports custom exceptions and includes a flexible status code mapping system. The package integrates seamlessly via middleware and service configuration, making global error handling clean and maintainable.</Description>
<PackageTags>aspnetcore;webapi;exception-handling;global-exception-handler;middleware;problem-details;error-handling;custom-exceptions;statuscode-mapping;centralized-logging;validation-errors;api;extensibility;robust;maintainable</PackageTags>
<PackageId>FloppyShelf.Problemize</PackageId>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IncludeSource>true</IncludeSource>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<Title>FloppyShelf.Problemize</Title>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<Deterministic>true</Deterministic>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PackageIcon>Problemize.png</PackageIcon>
</PropertyGroup>
<PropertyGroup>
<RootNamespace>FloppyShelf.Problemize</RootNamespace>
<AssemblyName>FloppyShelf.Problemize</AssemblyName>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\" />
<None Include="..\LICENSE" Pack="true" PackagePath="\" />
<None Include="..\logo\Problemize.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="GitVersion.MsBuild">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>