devdeer.Libraries.AspNetCore.RestApi 19.0.2

dotnet add package devdeer.Libraries.AspNetCore.RestApi --version 19.0.2
                    
NuGet\Install-Package devdeer.Libraries.AspNetCore.RestApi -Version 19.0.2
                    
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="devdeer.Libraries.AspNetCore.RestApi" Version="19.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="devdeer.Libraries.AspNetCore.RestApi" Version="19.0.2" />
                    
Directory.Packages.props
<PackageReference Include="devdeer.Libraries.AspNetCore.RestApi" />
                    
Project file
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 devdeer.Libraries.AspNetCore.RestApi --version 19.0.2
                    
#r "nuget: devdeer.Libraries.AspNetCore.RestApi, 19.0.2"
                    
#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.
#addin nuget:?package=devdeer.Libraries.AspNetCore.RestApi&version=19.0.2
                    
Install devdeer.Libraries.AspNetCore.RestApi as a Cake Addin
#tool nuget:?package=devdeer.Libraries.AspNetCore.RestApi&version=19.0.2
                    
Install devdeer.Libraries.AspNetCore.RestApi as a Cake Tool

devdeer.Libraries.AspNetCore.RestApi

Disclaimer

If you want to use this package you should be aware of some principles and practices we at DEVDEER use. So be aware that this is not backed by a public repository. The purpose here is to give out customers easy access to our logic. Nevertheless you are welcome to use this lib if it provides any advantages.

Summary

This package is used to provide startup logic, base types and other specific logic to ASP.NET Core API projects.

Please keep in mind that this package is not intended to be used in UI web projects!

Usage

One of the main purposes for this packages was the fact, that the initial configuration of ASP.NET APIs can be overwhelming. You need to inject dependencies and app components in the correct order. Also you often want to put configuration of those things to outside stores (appsettings.json in our case). This package now reduces all of this to only some lines of code. You could use this as follows in the Program.cs:

var options = new ConfigurationOptions
{
    // your explicit options and callbacks
};
var builder = WebApplication.CreateBuilder(args);
builder.Host.ConfigureLogging();
builder.Services.ConfigureServices(builder.Configuration, options);
// your additional DI here
var app = builder.Build();
app.ConfigureDefaults(options);
app.Run();

Now it is crucial to unserstand that ConfigureLogging(), ConfigureServices() and ConfigureDefaults() are methods coming from this package. The outcome can be controlled in 2 ways:

  1. Usage of ConfigurationOptions. You can define some of the wanted behavior using this type and pass it in.
  2. Putting elements in your appsettings.*.json.

Some common app settings are:

{
    "AzureAd": {
		"Instance": "https://login.microsoftonline.com/",
		"TenantId": "",
		"Domain": ""
	},
	"Cors": {
		"EnableCors": true,
		"AllowCredentials": false,
		"AllowedHeaders": ["*"],
		"AllowedMethods": ["GET", "POST"]
	},
    "Swagger": {
		"ApiDescription": "",
		"DeprecatedApiMessage": "<p><strong><span style='color:white;background-color:red'>DEPRECATED</span></strong></p>",
		"Contact": {
			"Name": "",
			"Email": ""
		},
		"SupportedVersions": [{
			"Major": 1,
			"Minor": 0
		}],
		"Enable": true
	}
}

Using the syntax above will automatically configure the respective services in the correct order with just two lines of code.

More Details

Swagger

We are automatically referencing Swashbuckle and configuring it if the app is running in Development and the app config tells us to do it. By default we are using versioned APIs meaning that all controllers are expected to expose endpoints using a version.

Authentication

If the AzureAd config option is set we automatically configure authentication to AzureAD or Azure AD B2C.

About DEVDEER

DEVDEER is a company from Magdeburg, Germany which is specialized in consulting, project management and development. We are very focussed on Microsoft Azure as a platform to run our products and solutions in the cloud. So all of our backend components usually runs in this environment and is developed using .NET. In the frontend area we are using react and a huge bunch of packages to build our UIs.

You can find us online:

Product Compatible and additional computed target framework versions.
.NET 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 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
19.0.2 185 5/16/2025
19.0.1 176 5/16/2025
19.0.0 197 4/11/2025
18.0.1 220 3/18/2025
18.0.0 192 2/14/2025
17.1.7 467 1/15/2025
17.1.6 96 1/15/2025
17.1.5 415 1/8/2025
17.1.4 175 1/6/2025
17.1.3 126 1/6/2025
17.1.2 118 1/5/2025
17.1.1 120 1/5/2025
17.1.0 139 1/4/2025
17.0.2 437 12/24/2024
17.0.1 278 12/13/2024
17.0.0 229 12/11/2024
16.5.0 599 12/2/2024
16.4.7 215 11/1/2024
16.4.6 201 10/30/2024
16.4.5 113 10/30/2024
16.4.4 109 10/30/2024
16.4.3 431 10/27/2024
16.4.2 114 10/27/2024
16.4.1 112 10/27/2024
16.4.0 124 10/27/2024
16.3.3 240 10/14/2024
16.3.2 117 10/14/2024
16.3.1 166 10/12/2024
16.3.0 194 10/3/2024
16.2.2 440 8/23/2024
16.2.1 559 6/27/2024
16.2.0 133 6/27/2024
16.1.5 444 6/12/2024
16.1.4 120 6/12/2024
16.1.3 407 5/30/2024
16.1.2 125 5/29/2024
16.1.1 132 5/28/2024
16.1.0 121 5/28/2024
16.0.0 135 5/24/2024
15.0.1 163 5/19/2024
15.0.0 167 5/14/2024
14.4.3 126 5/14/2024
14.4.1 349 4/19/2024
14.4.0 148 4/19/2024
14.3.0 241 3/21/2024
14.2.0 349 3/11/2024
14.1.1 150 3/9/2024
14.1.0 140 3/9/2024
14.0.1 414 2/18/2024
14.0.0 580 1/20/2024
13.0.5 150 1/18/2024
13.0.4 512 12/25/2023
13.0.3 145 12/25/2023
13.0.2 310 12/11/2023
13.0.0 160 12/10/2023
12.7.5 322 11/9/2023
12.7.4 155 11/9/2023
12.7.3 214 10/29/2023
12.7.2 167 10/29/2023
12.7.1 264 9/27/2023
12.7.0 184 9/16/2023
12.6.4 190 9/14/2023
12.6.2 201 9/8/2023
12.6.1 186 9/7/2023
12.6.0 178 9/6/2023
12.5.0 506 8/15/2023
12.4.1 166 8/15/2023
12.4.0 182 8/15/2023
12.3.0 707 5/30/2023
12.2.1 196 5/29/2023
12.2.0 221 5/24/2023
12.1.0 215 5/24/2023
12.0.0 221 5/24/2023
11.0.5 723 5/23/2023
11.0.4 198 5/23/2023
11.0.3 193 5/23/2023
11.0.2 248 5/21/2023
11.0.1 214 5/21/2023
11.0.0 205 5/21/2023
10.6.0 230 5/21/2023
10.5.13 1,012 4/12/2023
10.5.12 253 4/12/2023
10.5.11 256 4/12/2023
10.5.10 496 4/12/2023
10.5.9 289 4/6/2023
10.5.8 470 3/14/2023
10.5.7 279 3/14/2023
10.5.6 684 3/11/2023
10.5.5 731 1/13/2023
10.5.4 589 1/10/2023
10.5.3 387 1/4/2023
10.5.2 358 1/3/2023
10.5.1 524 12/29/2022
10.5.0 603 12/29/2022
10.4.2 380 12/29/2022
10.4.0 706 12/23/2022
10.2.24 1,437 10/19/2022
10.2.23 479 10/19/2022
10.2.22 431 10/18/2022
10.2.21 439 10/17/2022
10.2.20 448 10/17/2022
10.2.19 466 10/17/2022
10.2.18 731 9/13/2022
10.2.17 1,271 9/13/2022
10.2.16 906 9/7/2022
10.2.15 745 9/6/2022
10.2.14 1,066 9/6/2022
10.2.13 507 9/6/2022
10.2.12 733 9/6/2022
10.2.11 723 9/6/2022
10.2.10 695 9/6/2022
10.2.9 919 9/5/2022
10.2.8 609 8/15/2022
10.2.7 546 8/13/2022
10.2.6 692 8/5/2022
10.2.5 685 7/19/2022
10.2.4 1,299 5/16/2022
10.2.3 595 5/16/2022
10.2.2 1,494 3/20/2022
10.2.0 686 3/20/2022
10.1.1 694 3/18/2022
10.1.0 656 3/14/2022
10.0.0 709 3/1/2022
9.0.4 707 2/28/2022
9.0.3 1,833 1/24/2022
9.0.2 600 12/22/2021
9.0.1 433 12/22/2021
9.0.0 430 12/22/2021
8.0.5 1,000 12/1/2021
8.0.3 1,079 8/14/2021
8.0.2 601 8/14/2021
8.0.1 704 8/14/2021
8.0.0 511 8/9/2021
7.0.13 1,417 7/12/2021
7.0.12 939 6/9/2021
7.0.11 1,388 5/1/2021
7.0.10 1,066 5/1/2021
1.4.0 812 8/25/2020

- BREAKING: AutoMapper is replaced by Mapster. We no longer support AutoMapper-releated functionallities in the ConfigurationOptions. Thus no need for explicit configuration of mapping is needed.
- BREAKING: In order to initialize type mappings call `TypeAdapterConfig<TEntity, TModel>.NewConfig().Map(...).TwoWays()` in your Main method.
- BREAKING: AfterModelMapping, EntityToModelResolver, BeforeSingleMapping and AfterSingleMapping where removed.
- BREAKING: Configuration.AutoRegisterModelMapping is obsolete now.
- Dependency updates.