devdeer.Libraries.AspNetCore.RestApi 20.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package devdeer.Libraries.AspNetCore.RestApi --version 20.1.0
                    
NuGet\Install-Package devdeer.Libraries.AspNetCore.RestApi -Version 20.1.0
                    
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="20.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="devdeer.Libraries.AspNetCore.RestApi" Version="20.1.0" />
                    
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 20.1.0
                    
#r "nuget: devdeer.Libraries.AspNetCore.RestApi, 20.1.0"
                    
#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 devdeer.Libraries.AspNetCore.RestApi@20.1.0
                    
#: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=devdeer.Libraries.AspNetCore.RestApi&version=20.1.0
                    
Install as a Cake Addin
#tool nuget:?package=devdeer.Libraries.AspNetCore.RestApi&version=20.1.0
                    
Install 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
20.2.2 131 8/13/2025
20.2.1 143 7/29/2025
20.2.0 94 7/29/2025
20.1.5 108 7/29/2025
20.1.4 98 7/29/2025
20.1.3 498 7/22/2025
20.1.2 483 7/22/2025
20.1.0 140 7/17/2025
20.0.2 125 7/17/2025
20.0.1 126 7/16/2025
20.0.0 120 7/16/2025
19.1.1 547 6/11/2025
19.1.0 127 5/30/2025
19.0.2 281 5/16/2025
19.0.1 217 5/16/2025
19.0.0 249 4/11/2025
18.0.1 304 3/18/2025
18.0.0 231 2/14/2025
17.1.7 532 1/15/2025
17.1.6 126 1/15/2025
17.1.5 581 1/8/2025
17.1.4 209 1/6/2025
17.1.3 161 1/6/2025
17.1.2 151 1/5/2025
17.1.1 155 1/5/2025
17.1.0 171 1/4/2025
17.0.2 510 12/24/2024
17.0.1 314 12/13/2024
17.0.0 255 12/11/2024
16.5.0 782 12/2/2024
16.4.7 246 11/1/2024
16.4.6 230 10/30/2024
16.4.5 148 10/30/2024
16.4.4 139 10/30/2024
16.4.3 508 10/27/2024
16.4.2 144 10/27/2024
16.4.1 143 10/27/2024
16.4.0 159 10/27/2024
16.3.3 271 10/14/2024
16.3.2 148 10/14/2024
16.3.1 196 10/12/2024
16.3.0 223 10/3/2024
16.2.2 470 8/23/2024
16.2.1 626 6/27/2024
16.2.0 160 6/27/2024
16.1.5 477 6/12/2024
16.1.4 154 6/12/2024
16.1.3 444 5/30/2024
16.1.2 157 5/29/2024
16.1.1 161 5/28/2024
16.1.0 149 5/28/2024
16.0.0 166 5/24/2024
15.0.1 193 5/19/2024
15.0.0 196 5/14/2024
14.4.3 158 5/14/2024
14.4.1 383 4/19/2024
14.4.0 177 4/19/2024
14.3.0 274 3/21/2024
14.2.0 378 3/11/2024
14.1.1 179 3/9/2024
14.1.0 166 3/9/2024
14.0.1 442 2/18/2024
14.0.0 620 1/20/2024
13.0.5 176 1/18/2024
13.0.4 542 12/25/2023
13.0.3 170 12/25/2023
13.0.2 337 12/11/2023
13.0.0 188 12/10/2023
12.7.5 340 11/9/2023
12.7.4 178 11/9/2023
12.7.3 240 10/29/2023
12.7.2 186 10/29/2023
12.7.1 290 9/27/2023
12.7.0 212 9/16/2023
12.6.4 218 9/14/2023
12.6.2 237 9/8/2023
12.6.1 222 9/7/2023
12.6.0 213 9/6/2023
12.5.0 542 8/15/2023
12.4.1 198 8/15/2023
12.4.0 220 8/15/2023
12.3.0 749 5/30/2023
12.2.1 234 5/29/2023
12.2.0 256 5/24/2023
12.1.0 251 5/24/2023
12.0.0 264 5/24/2023
11.0.5 761 5/23/2023
11.0.4 239 5/23/2023
11.0.3 224 5/23/2023
11.0.2 287 5/21/2023
11.0.1 253 5/21/2023
11.0.0 247 5/21/2023
10.6.0 267 5/21/2023
10.5.13 1,052 4/12/2023
10.5.12 294 4/12/2023
10.5.11 289 4/12/2023
10.5.10 533 4/12/2023
10.5.9 322 4/6/2023
10.5.8 515 3/14/2023
10.5.7 320 3/14/2023
10.5.6 721 3/11/2023
10.5.5 773 1/13/2023
10.5.4 625 1/10/2023
10.5.3 422 1/4/2023
10.5.2 395 1/3/2023
10.5.1 554 12/29/2022
10.5.0 636 12/29/2022
10.4.2 415 12/29/2022
10.4.0 742 12/23/2022
10.2.24 1,474 10/19/2022
10.2.23 514 10/19/2022
10.2.22 472 10/18/2022
10.2.21 475 10/17/2022
10.2.20 491 10/17/2022
10.2.19 502 10/17/2022
10.2.18 772 9/13/2022
10.2.17 1,313 9/13/2022
10.2.16 950 9/7/2022
10.2.15 776 9/6/2022
10.2.14 1,103 9/6/2022
10.2.13 545 9/6/2022
10.2.12 766 9/6/2022
10.2.11 761 9/6/2022
10.2.10 727 9/6/2022
10.2.9 961 9/5/2022
10.2.8 649 8/15/2022
10.2.7 588 8/13/2022
10.2.6 731 8/5/2022
10.2.5 725 7/19/2022
10.2.4 1,347 5/16/2022
10.2.3 635 5/16/2022
10.2.2 1,540 3/20/2022
10.2.0 733 3/20/2022
10.1.1 741 3/18/2022
10.1.0 700 3/14/2022
10.0.0 754 3/1/2022
9.0.4 752 2/28/2022
9.0.3 1,878 1/24/2022
9.0.2 641 12/22/2021
9.0.1 479 12/22/2021
9.0.0 472 12/22/2021
8.0.5 1,045 12/1/2021
8.0.3 1,129 8/14/2021
8.0.2 651 8/14/2021
8.0.1 748 8/14/2021
8.0.0 560 8/9/2021
7.0.13 1,464 7/12/2021
7.0.12 987 6/9/2021
7.0.11 1,449 5/1/2021
7.0.10 1,114 5/1/2021
1.4.0 865 8/25/2020

- BREAKING: Replaced IOptions with IOptionsSnapshot.
- ConfigureDefaults() now allows passing label prefix for Azure App Configuration.