https://github.com/technobre/powerutils.aspnetcore.extensions
Utils, helpers and extensions to AspNetCore
https://github.com/technobre/powerutils.aspnetcore.extensions
aspnetcore csharp dotnet extensions helpers utils
Last synced: 9 months ago
JSON representation
Utils, helpers and extensions to AspNetCore
- Host: GitHub
- URL: https://github.com/technobre/powerutils.aspnetcore.extensions
- Owner: TechNobre
- License: mit
- Created: 2022-03-04T19:33:45.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-05-19T12:50:21.000Z (about 2 years ago)
- Last Synced: 2024-05-19T13:49:48.543Z (about 2 years ago)
- Topics: aspnetcore, csharp, dotnet, extensions, helpers, utils
- Language: C#
- Homepage: https://www.nuget.org/packages/PowerUtils.AspNetCore.Extensions
- Size: 204 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# PowerUtils.AspNetCore.Extensions
# :warning: DEPRECATED
This package has been discontinued because it never evolved, and the code present in this package does not justify its continuation. It is preferable to implement this code directly in the project if necessary.

***Utils, helpers and extensions to AspNetCore***
[](https://github.com/TechNobre/PowerUtils.AspNetCore.Extensions/blob/main/LICENSE)
- [Support to ](#support-to-)
- [Dependencies ](#dependencies-)
- [How to use ](#how-to-use-)
- [Install NuGet package ](#install-nuget-package-)
- [Attributes ](#attributes-)
- [Extensions ](#extensions-)
- [UseGeneralRoutePrefix ](#usegeneralrouteprefix-)
- [Contribution ](#contribution-)
## Support to
- .NET 9.0
- .NET 8.0
- .NET 7.0
- .NET 6.0
- .NET 5.0
- .NET 3.1
- Microsoft.AspNetCore.Mvc.Core [NuGet](https://www.nuget.org/packages/Microsoft.AspNetCore.Mvc.Core/)
### Install NuGet package
This package is available through Nuget Packages: https://www.nuget.org/packages/PowerUtils.AspNetCore.Extensions
**Nuget**
```bash
Install-Package PowerUtils.AspNetCore.Extensions
```
**.NET CLI**
```
dotnet add package PowerUtils.AspNetCore.Extensions
```
### Attributes
- `Response2XX`;
- `Response200Attribute`;
- `Response201Attribute`;
- `Response202Attribute`;
- `Response203Attribute`;
- `Response204Attribute`;
- `Response205Attribute`;
- `Response206Attribute`;
- `Response207Attribute`;
- `Response208Attribute`;
- `Response226Attribute`;
- `Response4XX`;
- `Response400Attribute`;
- `Response401Attribute`;
- `Response402Attribute`;
- `Response403Attribute`;
- `Response404Attribute`;
- `Response405Attribute`;
- `Response406Attribute`;
- `Response407Attribute`;
- `Response408Attribute`;
- `Response409Attribute`;
- `Response410Attribute`;
- `Response411Attribute`;
- `Response412Attribute`;
- `Response413Attribute`;
- `Response414Attribute`;
- `Response415Attribute`;
- `Response416Attribute`;
- `Response417Attribute`;
- `Response418Attribute`;
- `Response422Attribute`;
- `Response426Attribute`;
- `Response428Attribute`;
- `Response429Attribute`;
- `Response431Attribute`;
- `Response451Attribute`;
```csharp
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddControllers(configure =>
configure.UseGeneralRoutePrefix("/samples")
);
}
}
```
If you have any questions, comments, or suggestions, please open an [issue](https://github.com/TechNobre/PowerUtils.AspNetCore.Extensions/issues/new/choose) or create a [pull request](https://github.com/TechNobre/PowerUtils.AspNetCore.Extensions/compare)