forked from Geta/geta-notfoundhandler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGeta.NotFoundHandler.csproj
More file actions
35 lines (30 loc) · 1.91 KB
/
Copy pathGeta.NotFoundHandler.csproj
File metadata and controls
35 lines (30 loc) · 1.91 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PackageId>Geta.NotFoundHandler</PackageId>
<Title>NotFound Handler for ASP.NET Core</Title>
<Authors>Geta Digital</Authors>
<Company>Geta Digital</Company>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Geta/geta-notfoundhandler</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageIconUrl>https://cdn.geta.no/opensource/icons/Geta-logo-3.png</PackageIconUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>This library contains a custom NotFound handler for your ASP.NET Core project. It will replace the default NotFound handler with one that you can change, in order for it to handle more NotFound cases than the built-in handler. It also includes a custom redirects feature for editors to add redirects. The NotFound handler logs all 404 errors as suggestions and present them in a list in the custom redirect feature, which will allow editors to easily add redirects based on the logged suggestions.</Description>
<PackageReleaseNotes>https://github.com/Geta/geta-notfoundhandler/blob/master/CHANGELOG.md</PackageReleaseNotes>
<PackageTags>404 NotFound 404Error Handler Geta Redirect</PackageTags>
<RepositoryUrl>https://github.com/Geta/geta-notfoundhandler.git</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\images\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Coravel" Version="5.0.4" />
<PackageReference Include="CsvHelper" Version="33.0.0" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="2.1.1" />
<PackageReference Include="X.PagedList" Version="8.4.3" />
</ItemGroup>
</Project>