TheDanielDoyle.ServiceProfiles.AspNetCore
4.0.0
See the version list below for details.
dotnet add package TheDanielDoyle.ServiceProfiles.AspNetCore --version 4.0.0
NuGet\Install-Package TheDanielDoyle.ServiceProfiles.AspNetCore -Version 4.0.0
<PackageReference Include="TheDanielDoyle.ServiceProfiles.AspNetCore" Version="4.0.0" />
paket add TheDanielDoyle.ServiceProfiles.AspNetCore --version 4.0.0
#r "nuget: TheDanielDoyle.ServiceProfiles.AspNetCore, 4.0.0"
// Install TheDanielDoyle.ServiceProfiles.AspNetCore as a Cake Addin #addin nuget:?package=TheDanielDoyle.ServiceProfiles.AspNetCore&version=4.0.0 // Install TheDanielDoyle.ServiceProfiles.AspNetCore as a Cake Tool #tool nuget:?package=TheDanielDoyle.ServiceProfiles.AspNetCore&version=4.0.0
Service Profile implementation suited for ASP.NET Core. IWebHostEnvironment is available instead of IHostEnvironment.
Quick start
Instantiate a WebHostServiceProfileLoader() class.
Execute one of the Load() methods and pass in the IServiceCollection, IConfiguration and IWebHostEnvironment.
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 classes that derive from WebHostServiceProfile and implement the Configure() method.
See example:
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 | Versions 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. net9.0 was computed. 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. |
.NET Core | netcoreapp3.0 is compatible. netcoreapp3.1 was computed. |
-
.NETCoreApp 3.0
- TheDanielDoyle.ServiceProfiles (>= 4.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.