CoreExtensionLibrary 1.0.0
dotnet add package CoreExtensionLibrary --version 1.0.0
NuGet\Install-Package CoreExtensionLibrary -Version 1.0.0
<PackageReference Include="CoreExtensionLibrary" Version="1.0.0" />
<PackageVersion Include="CoreExtensionLibrary" Version="1.0.0" />
<PackageReference Include="CoreExtensionLibrary" />
paket add CoreExtensionLibrary --version 1.0.0
#r "nuget: CoreExtensionLibrary, 1.0.0"
#:package CoreExtensionLibrary@1.0.0
#addin nuget:?package=CoreExtensionLibrary&version=1.0.0
#tool nuget:?package=CoreExtensionLibrary&version=1.0.0
CoreLibrary
Library for Swagger Extension And API Versioning Swagger Extension of Implementation of Swagger in .Net Core API
#In Configure Service Method of Startup file Add the Following Code for implementing the Swagger . #AuthenitcationType can be selected as None or JWT other than that Implementation is not done Yet
public void ConfigureServices(IServiceCollection services)
{
services.AddCore(); // verisoning service Added here Always Add for Swagger
services.AddSwagger<Startup>(AuthenticationType.None);
}
#Add Following Line in Configure Method of Startup File public void Configure(IApplicationBuilder app, IWebHostEnvironment env) {
app.UseAuthorization();
app.UseSwaggerWithUI("Test Service"); //Accordingly update the name in this for displaying it on swagger
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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 was computed. 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. |
.NET Core | netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.1 is compatible. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.1
- Microsoft.AspNetCore.Authorization (>= 3.1.9)
- Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer (>= 4.0.0)
- Microsoft.Extensions.Configuration.Binder (>= 3.1.9)
- Microsoft.Extensions.DependencyInjection (>= 3.1.9)
- Microsoft.Extensions.Hosting.Abstractions (>= 3.1.9)
- Microsoft.Extensions.Hosting.WindowsServices (>= 3.1.9)
- Microsoft.Extensions.PlatformAbstractions (>= 1.1.0)
- Swashbuckle.AspNetCore.Swagger (>= 6.2.1)
- Swashbuckle.AspNetCore.SwaggerGen (>= 6.2.1)
- Swashbuckle.AspNetCore.SwaggerUI (>= 6.2.1)
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 |
---|---|---|
1.0.0 | 310 | 2/19/2022 |
Swagger Extension Method for implementing in .Net Core API. (Tested with .Net Core API 3.1)