Oct.Common.AspNetCore
3.3.1
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Oct.Common.AspNetCore --version 3.3.1
NuGet\Install-Package Oct.Common.AspNetCore -Version 3.3.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Oct.Common.AspNetCore" Version="3.3.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Oct.Common.AspNetCore" Version="3.3.1" />
<PackageReference Include="Oct.Common.AspNetCore" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Oct.Common.AspNetCore --version 3.3.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Oct.Common.AspNetCore, 3.3.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Oct.Common.AspNetCore@3.3.1
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Oct.Common.AspNetCore&version=3.3.1
#tool nuget:?package=Oct.Common.AspNetCore&version=3.3.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Octubre NET Common
Usage
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
// JWT Auth...
// Auth
services.AddJWTAuthentication(Configuration);
// OpenApi
services.AddOpenApiDocumentForJWT("MyProject");
// ...or ApiKey Auth
// Auth
services.AddApiKeyAuthentication();
// OpenApi
services.AddOpenApiDocumentForApiKey("MyProject");
}
public void Configure(IApplicationBuilder app)
{
//...
app.UseCorrelationId();
app.UseGlobalErrorHandlingMiddleware();
app.UseEndpoints(endpoints =>
{
//...
endpoints.MapHealthChecks("/api/health",
new HealthCheckOptions { ResponseWriter = HealthStatusResponseWriter.WriteResponse }
);
});
//...
}
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 is compatible. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net10.0
- Microsoft.Extensions.Http.Polly (>= 10.0.7)
- Microsoft.IO.RecyclableMemoryStream (>= 3.0.1)
- NSwag.AspNetCore (>= 14.6.3)
- Oct.Common.Application (>= 2.2.0)
-
net5.0
- Microsoft.Extensions.Http.Polly (>= 5.0.1)
- Microsoft.IO.RecyclableMemoryStream (>= 2.2.1)
- NSwag.AspNetCore (>= 13.19.0)
- Oct.Common.Application (>= 2.2.0)
-
net6.0
- Microsoft.Extensions.Http.Polly (>= 6.0.36)
- Microsoft.IO.RecyclableMemoryStream (>= 2.2.1)
- NSwag.AspNetCore (>= 13.19.0)
- Oct.Common.Application (>= 2.2.0)
-
net8.0
- Microsoft.Extensions.Http.Polly (>= 8.0.26)
- Microsoft.IO.RecyclableMemoryStream (>= 3.0.1)
- NSwag.AspNetCore (>= 14.1.0)
- Oct.Common.Application (>= 2.2.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 3.3.2 | 475 | 5/12/2026 |
| 3.3.1 | 127 | 5/12/2026 |
| 3.3.0 | 309 | 3/3/2026 |
| 3.2.3 | 172 | 3/3/2026 |
| 3.2.2 | 753 | 12/31/2025 |
| 3.2.1 | 665 | 11/19/2025 |
| 3.2.0 | 284 | 11/5/2025 |
| 3.1.2 | 453 | 11/4/2025 |
| 3.1.1 | 305 | 10/21/2025 |
| 3.1.0 | 200 | 10/17/2025 |
| 3.0.1 | 199 | 10/17/2025 |
| 3.0.0 | 214 | 10/17/2025 |
| 2.4.2 | 278 | 10/16/2025 |
| 2.4.1 | 254 | 10/16/2025 |
| 2.4.0 | 277 | 10/16/2025 |
| 2.3.0 | 264 | 10/16/2025 |
| 2.2.2 | 260 | 10/15/2025 |
| 2.2.1 | 256 | 10/15/2025 |
| 2.2.0 | 270 | 10/15/2025 |
| 2.1.1 | 269 | 10/8/2025 |
Loading failed
Fix openapi operation id for lambda functions