Calabonga.AspNetCore.AppDefinitions
2.1.0
See the version list below for details.
dotnet add package Calabonga.AspNetCore.AppDefinitions --version 2.1.0
NuGet\Install-Package Calabonga.AspNetCore.AppDefinitions -Version 2.1.0
<PackageReference Include="Calabonga.AspNetCore.AppDefinitions" Version="2.1.0" />
paket add Calabonga.AspNetCore.AppDefinitions --version 2.1.0
#r "nuget: Calabonga.AspNetCore.AppDefinitions, 2.1.0"
// Install Calabonga.AspNetCore.AppDefinitions as a Cake Addin #addin nuget:?package=Calabonga.AspNetCore.AppDefinitions&version=2.1.0 // Install Calabonga.AspNetCore.AppDefinitions as a Cake Tool #tool nuget:?package=Calabonga.AspNetCore.AppDefinitions&version=2.1.0
Calabonga.AspNetCore.AppDefinitions
Сборка позволяет навести порядок в вашем Program.cs
. Можно всё разложить "по полочкам". Чтобы воспользоваться сборкой надо просто установить nuget-пакет Calabonga.AspNetCore.AppDefinitions.
Что нового
Версия 2.1.0
- В новой версии появилась возможность подключения модулей к проекту. Достаточно воспользовать новым способом регистрации.
// Вместо этого (instead of)
builder.AddDefinitions(typeof(Program));
// использовать этот (use this to add definitions for application)
const string moduleFolder = "Modules:Folder";
var modulesPath = builder.Configuration[moduleFolder] ?? throw new ArgumentNullException(moduleFolder);
builder.AddDefinitionsWithModules(modulesPath, typeof(Program));
- Вывод зарегистрированных AppDefinitions усовершенствована.
[15:43:03 DBG] [AppDefinitions]: From Program
[15:43:03 DBG] [AppDefinitions]: AuthorizationDefinition (Program) (Enabled: Yes)
[15:43:03 DBG] [AppDefinitions]: AuthorizeEndpoints (Program) (Enabled: Yes)
[15:43:03 DBG] [AppDefinitions]: AutomapperDefinition (Program) (Enabled: Yes)
[15:43:03 DBG] [AppDefinitions]: CommonDefinition (Program) (Enabled: Yes)
[15:43:03 DBG] [AppDefinitions]: ContainerDefinition (Program) (Enabled: Yes)
[15:43:03 DBG] [AppDefinitions]: CorsDefinition (Program) (Enabled: Yes)
[15:43:03 DBG] [AppDefinitions]: DataSeedingDefinition (Program) (Enabled: Yes)
[15:43:03 DBG] [AppDefinitions]: DbContextDefinition (Program) (Enabled: Yes)
[15:43:03 DBG] [AppDefinitions]: ErrorHandlingDefinition (Program) (Enabled: Yes)
[15:43:03 DBG] [AppDefinitions]: ETagGeneratorDefinition (Program) (Enabled: Yes)
[15:43:03 DBG] [AppDefinitions]: EventItemEndpoints (Program) (Enabled: Yes)
[15:43:03 DBG] [AppDefinitions]: FluentValidationDefinition (Program) (Enabled: Yes)
[15:43:03 DBG] [AppDefinitions]: MediatorDefinition (Program) (Enabled: Yes)
[15:43:03 DBG] [AppDefinitions]: OpenIddictDefinition (Program) (Enabled: Yes)
[15:43:03 DBG] [AppDefinitions]: ProfilesEndpoints (Program) (Enabled: Yes)
[15:43:03 DBG] [AppDefinitions]: SwaggerDefinition (Program) (Enabled: Yes)
[15:43:03 DBG] [AppDefinitions]: TokenEndpoints (Program) (Enabled: Yes)
[15:43:03 DBG] [AppDefinitions]: UnitOfWorkDefinition (Program) (Enabled: Yes)
[15:43:03 DBG] From Program assemblies totally AppDefinitions found: 18
[15:43:04 DBG] Total AppDefinitions applied: 18
- Появилсь возможность не только включать/выключать определенные AppDefinitions, но и указывать нужно ли их экспортировать или нет. Обратите внимание, что по умолчанию
Exported
свойство задано какFalse
, то есть, не экспортировать данныйAppDefinition
. Например, если регистрацию конечной точки (endpoint)WeatherForcast
слелать через определение (AppDefinition), то экспорт мог бы выглядеть так:
public class WeatherForecastEndpoints : AppDefinition
{
/// <summary>
/// Enables or disables export definition as a content for module that can be exported.
/// </summary>
/// /// <remarks>Default values is <c>False</c></remarks>
public override bool Exported => true;
public override void ConfigureApplication(WebApplication app)
{
app.MapGet("/weatherforecast", WeatherGet)
.ProducesProblem(401)
.Produces<WeatherForecast[]>()
.WithName("GetWeatherForecast")
.WithTags("ModuleTwo")
.WithOpenApi()
.RequireAuthorization(policyNames: CookieAuthenticationDefaults.AuthenticationScheme + ",OpenIddict.Validation.AspNetCore");
}
// [FeatureGroupName("Weather")]
private WeatherForecast[] WeatherGet([FromServices] ILogger<WeatherForecastEndpoints> logger)
{
var summaries = new[] { "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" };
var forecast = Enumerable.Range(1, 5).Select(index =>
new WeatherForecast
(
DateOnly.FromDateTime(DateTime.Now.AddDays(index)),
Random.Shared.Next(-20, 55),
summaries[Random.Shared.Next(summaries.Length)]
))
.ToArray();
logger.LogInformation("WeatherForecast request execute at [{Time}].", DateTime.UtcNow);
return forecast;
}
}
Версия 2.0.0
- Больше не требуется вливать зависимость
IServiceCollection
в методConfigureServices
. Теперь достаточно толькоWebApplicationBuilder
. Следовательно при переходе на версию 2.0.0 нужно просто удалить лишние зависимости. Например, регистрацияFluentValidation
это выглядит так:
/// <summary>
/// FluentValidation registration as Application definition
/// </summary>
public class FluentValidationDefinition : AppDefinition
{
/// <summary>
/// Configure services for current application
/// </summary>
/// <param name="builder"></param>
public override void ConfigureServices(WebApplicationBuilder builder)
{
builder.Services.Configure<ApiBehaviorOptions>(options =>
{
options.SuppressModelStateInvalidFilter = true;
});
builder.Services.AddValidatorsFromAssembly(typeof(Program).Assembly);
}
}
- Регистрация стала гораздо проще.
builder.AddDefinitions(typeof(Program));
Установка nuget-пакета
Можно воспользоваться инструментов Visual Studio:
Или можно просто прописать в файле проекта, но тогда надо будет подставить правильную версию пакета. Посмотреть последнюю актуальную версию можно на nuget.org.
Создание AppDefinitions
Создайте папку Definitions
в вашем проекте. В папке создайте ContainerDefinition
и унаследуйте его от AppDefinition
, как показано ниже на картинке. После этого сделайте переопределение метода ConfigureServices
и/или других методов и свойств.
На этой картинке переопределено два метода:
Подключите ваши определения как показано на этой картинке:
Таких определений (наследников от AppDefinition
) может быть сколько угодно (конечно же в разумных пределах). После старта приложения вы увидите (если включен уровень логирования Debug
) список всех подключенных определений (AppDefinition
). Например, в моём случае их 18.
Фильтрация и порядок
У каждого из созданных вами наследников от AppDefinition
есть свойство Enabled
и OrderIndex
. Угадайте, что можно с ними (с AppDefinition
ами) сделать?
An English
Application Definitions base classes. The small but very helpful package that can help you to organize your ASP.NET Core application.
You can find more information in my blog Nimble Framework
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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 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. |
-
net6.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Calabonga.AspNetCore.AppDefinitions:
Repository | Stars |
---|---|
Calabonga/Microservice-Template
Templates for microservice architecture. Nimble Microservice Framework contains two modules. The first with OpenIddict and the second without OpenIddict. Templates are built on ASP.NET Core platform with different versions Core3.1, NET6, NET7 and NET8. You can create a new project extremely fast: in Visual Studio, Rider, dotnet CLI.
|
Version | Downloads | Last updated |
---|---|---|
3.0.0 | 106 | 11/6/2024 |
2.4.3 | 736 | 4/11/2024 |
2.4.2 | 124 | 4/11/2024 |
2.4.1 | 8,751 | 1/10/2024 |
2.4.0 | 1,654 | 11/22/2023 |
2.3.0 | 256 | 11/6/2023 |
2.2.0 | 4,947 | 8/10/2023 |
2.1.0 | 265 | 8/6/2023 |
2.0.0 | 1,084 | 6/26/2023 |
1.3.0 | 3,363 | 4/21/2023 |
1.2.2 | 1,714 | 1/19/2023 |
1.2.1 | 332 | 12/30/2022 |
1.2.0 | 550 | 10/3/2022 |
1.1.0 | 740 | 9/19/2022 |
1.0.0 | 416 | 9/4/2022 |
Modules as plugins posibility was added.