devdeer.Libraries.AspNetCore.RestApi 22.3.3

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

devdeer.Libraries.AspNetCore.RestApi

NuGet Downloads

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 builder = WebApplication
    .CreateBuilder(args)
    .ConfigureDefaults();
builder.Services.ConfigureServices(builder.Configuration, opt => 
{
    // your explicit options and callbacks
});
// your additional DI here
var app = builder.Build();
app.ConfigureDefaults();
app.Run();

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

  1. Usage of ConfigurationOptions action. You can define some of the wanted behavior using the optional parameter provided by ConfigureServices() extension method.
  2. Putting elements in your appsettings.*.json.

Some common app settings are:

{
    "EntraId": {
        "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

Authentication

If the EntraId config option is set we automatically configure authentication to EntraId or Azure AD B2C/Entra ID Extenal Identities.

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:

Website

GitHub GitHub Org's stars

YouTube YouTube Channel Subscribers YouTube Channel Views

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 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.

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
22.3.3 124 11/22/2025
22.3.2 133 11/22/2025
22.3.1 306 11/21/2025
22.3.0 302 11/21/2025
22.2.2 171 11/7/2025
22.2.1 395 10/21/2025
22.2.0 154 10/18/2025
22.1.9 214 10/15/2025
22.1.8 166 10/15/2025
22.1.7 175 10/15/2025
22.1.6 164 10/15/2025
22.1.5 189 10/15/2025
22.1.4 168 10/14/2025
22.1.3 183 10/13/2025
22.1.2 187 10/12/2025
22.1.1 160 10/12/2025
22.1.0 146 10/12/2025
22.0.5 126 10/11/2025
22.0.4 103 10/11/2025
22.0.3 109 10/11/2025
22.0.2 105 10/11/2025
22.0.1 114 10/11/2025
22.0.0 103 10/11/2025
21.2.5 204 10/7/2025
21.2.4 177 10/7/2025
21.2.3 174 10/7/2025
21.2.2 184 10/6/2025
21.2.1 172 10/6/2025
21.2.0 177 10/6/2025
21.1.8 178 10/6/2025
21.1.7 171 10/6/2025
21.1.6 171 10/6/2025
21.1.5 175 10/6/2025
21.1.4 180 10/4/2025
21.1.2 171 10/4/2025
21.1.1 167 10/4/2025
21.0.2 118 10/4/2025
21.0.1 185 9/29/2025
21.0.0 131 9/27/2025
20.2.4 504 8/28/2025
20.2.3 236 8/28/2025
20.2.2 403 8/13/2025
20.2.1 258 7/29/2025
20.2.0 134 7/29/2025
20.1.5 163 7/29/2025
20.1.4 146 7/29/2025
20.1.3 606 7/22/2025
20.1.2 562 7/22/2025
20.1.0 216 7/17/2025
20.0.2 199 7/17/2025
20.0.1 199 7/16/2025
20.0.0 184 7/16/2025
19.1.1 669 6/11/2025
19.1.0 184 5/30/2025
19.0.2 348 5/16/2025
19.0.1 271 5/16/2025
19.0.0 324 4/11/2025
18.0.1 375 3/18/2025
18.0.0 275 2/14/2025
17.1.7 698 1/15/2025
17.1.6 193 1/15/2025
17.1.5 632 1/8/2025
17.1.4 287 1/6/2025
17.1.3 229 1/6/2025
17.1.2 214 1/5/2025
17.1.1 194 1/5/2025
17.1.0 215 1/4/2025
17.0.2 568 12/24/2024
17.0.1 367 12/13/2024
17.0.0 317 12/11/2024
16.5.0 894 12/2/2024
16.4.7 318 11/1/2024
16.4.6 275 10/30/2024
16.4.5 212 10/30/2024
16.4.4 192 10/30/2024
16.4.3 591 10/27/2024
16.4.2 205 10/27/2024
16.4.1 187 10/27/2024
16.4.0 220 10/27/2024
16.3.3 325 10/14/2024
16.3.2 221 10/14/2024
16.3.1 254 10/12/2024
16.3.0 292 10/3/2024
16.2.2 522 8/23/2024
16.2.1 689 6/27/2024
16.2.0 200 6/27/2024
16.1.5 533 6/12/2024
16.1.4 212 6/12/2024
16.1.3 509 5/30/2024
16.1.2 218 5/29/2024
16.1.1 209 5/28/2024
16.1.0 208 5/28/2024
16.0.0 241 5/24/2024
15.0.1 239 5/19/2024
15.0.0 257 5/14/2024
14.4.3 217 5/14/2024
14.4.1 446 4/19/2024
14.4.0 234 4/19/2024
14.3.0 348 3/21/2024
14.2.0 446 3/11/2024
14.1.1 236 3/9/2024
14.1.0 234 3/9/2024
14.0.1 508 2/18/2024
14.0.0 681 1/20/2024
13.0.5 230 1/18/2024
13.0.4 619 12/25/2023
13.0.3 235 12/25/2023
13.0.2 406 12/11/2023
13.0.0 250 12/10/2023
12.7.5 386 11/9/2023
12.7.4 218 11/9/2023
12.7.3 288 10/29/2023
12.7.2 246 10/29/2023
12.7.1 317 9/27/2023
12.7.0 258 9/16/2023
12.6.4 260 9/14/2023
12.6.2 284 9/8/2023
12.6.1 265 9/7/2023
12.6.0 257 9/6/2023
12.5.0 582 8/15/2023
12.4.1 232 8/15/2023
12.4.0 272 8/15/2023
12.3.0 814 5/30/2023
12.2.1 303 5/29/2023
12.2.0 294 5/24/2023
12.1.0 296 5/24/2023
12.0.0 326 5/24/2023
11.0.5 826 5/23/2023
11.0.4 307 5/23/2023
11.0.3 270 5/23/2023
11.0.2 355 5/21/2023
11.0.1 300 5/21/2023
11.0.0 309 5/21/2023
10.6.0 329 5/21/2023
10.5.13 1,133 4/12/2023
10.5.12 360 4/12/2023
10.5.11 346 4/12/2023
10.5.10 613 4/12/2023
10.5.9 376 4/6/2023
10.5.8 580 3/14/2023
10.5.7 385 3/14/2023
10.5.6 796 3/11/2023
10.5.5 836 1/13/2023
10.5.4 698 1/10/2023
10.5.3 483 1/4/2023
10.5.2 454 1/3/2023
10.5.1 600 12/29/2022
10.5.0 698 12/29/2022
10.4.2 470 12/29/2022
10.4.0 825 12/23/2022
10.2.24 1,561 10/19/2022
10.2.23 578 10/19/2022
10.2.22 537 10/18/2022
10.2.21 544 10/17/2022
10.2.20 560 10/17/2022
10.2.19 571 10/17/2022
10.2.18 833 9/13/2022
10.2.17 1,437 9/13/2022
10.2.16 1,043 9/7/2022
10.2.15 843 9/6/2022
10.2.14 1,210 9/6/2022
10.2.13 613 9/6/2022
10.2.12 832 9/6/2022
10.2.11 835 9/6/2022
10.2.10 781 9/6/2022
10.2.9 1,058 9/5/2022
10.2.8 717 8/15/2022
10.2.7 648 8/13/2022
10.2.6 788 8/5/2022
10.2.5 766 7/19/2022
10.2.4 1,431 5/16/2022
10.2.3 679 5/16/2022
10.2.2 1,619 3/20/2022
10.2.0 792 3/20/2022
10.1.1 811 3/18/2022
10.1.0 778 3/14/2022
10.0.0 815 3/1/2022
9.0.4 848 2/28/2022
9.0.3 1,954 1/24/2022
9.0.2 725 12/22/2021
9.0.1 545 12/22/2021
9.0.0 536 12/22/2021
8.0.5 1,127 12/1/2021
8.0.3 1,202 8/14/2021
8.0.2 725 8/14/2021
8.0.1 823 8/14/2021
8.0.0 639 8/9/2021
7.0.13 1,534 7/12/2021
7.0.12 1,055 6/9/2021
7.0.11 1,535 5/1/2021
7.0.10 1,191 5/1/2021
1.4.0 949 8/25/2020

- Added .NET 10 support.
- New option AllowHttp enables to switch off HTTP rejection middleware.
- Package updates.