TheDanielDoyle.ServiceProfiles.AspNetCore 4.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package TheDanielDoyle.ServiceProfiles.AspNetCore --version 4.0.1
NuGet\Install-Package TheDanielDoyle.ServiceProfiles.AspNetCore -Version 4.0.1
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="TheDanielDoyle.ServiceProfiles.AspNetCore" Version="4.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TheDanielDoyle.ServiceProfiles.AspNetCore --version 4.0.1
#r "nuget: TheDanielDoyle.ServiceProfiles.AspNetCore, 4.0.1"
#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.
// Install TheDanielDoyle.ServiceProfiles.AspNetCore as a Cake Addin
#addin nuget:?package=TheDanielDoyle.ServiceProfiles.AspNetCore&version=4.0.1

// Install TheDanielDoyle.ServiceProfiles.AspNetCore as a Cake Tool
#tool nuget:?package=TheDanielDoyle.ServiceProfiles.AspNetCore&version=4.0.1

Quick start (The Easy Way)

  1. When creating the IHost, replace the method, ConfigureWebHostDefaults with ConfigureWebHostDefaultsWithServiceProfiles to load Service Profiles in the executing assembly.
    Host.CreateDefaultBuilder(args)
        .ConfigureWebHostDefaultsWithServiceProfiles(builder =>
        {
            builder.UseStartup<Startup>();
        });

Quick start (The Manual Way)

  1. Instantiate a WebHostServiceProfileLoader() class.

  2. Execute one of the Load() methods and pass in the IServiceCollection, IConfiguration and IWebHostEnvironment.

  3. See example:

IWebHostServiceProfileLoader loader = new WebHostServiceProfileLoader();
loader.Load(services, Configuration, Environment);
loader.LoadFromAssembly(services, Configuration, Environment, typeof(Startup).Assembly);
loader.LoadFromAssemblies(services, Configuration, Environment, new Assembly[] {typeof(Startup).Assembly});

Create Service Profiles

  1. Create classes that derive from WebHostServiceProfile and implement the Configure() method.
public class MvcProfile : WebHostServiceProfile
{
    public override void Configure(IWebHostServiceProfileContext context)
    {
        context.Services.AddControllersWithViews();
    }
}

Samples

See the following sample https://github.com/TheDanielDoyle/ServiceProfiles.AspNetCore/blob/develop/Samples/ServiceProfiles.AspNetCore.Samples.Mvc/Startup.cs which demonstates what to add to your Startup.cs

Product 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. 
.NET Core netcoreapp3.0 is compatible.  netcoreapp3.1 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
8.0.0 72 6/17/2024
7.0.0 325 11/28/2022
6.0.0 288 11/28/2022
5.0.0 291 11/28/2022
4.0.1 617 1/2/2020
4.0.0 435 12/19/2019
3.0.0 450 12/10/2019