CP.Extensions.Hosting.Identity.EntityFrameworkCore.SqlServer
1.4.2
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package CP.Extensions.Hosting.Identity.EntityFrameworkCore.SqlServer --version 1.4.2
NuGet\Install-Package CP.Extensions.Hosting.Identity.EntityFrameworkCore.SqlServer -Version 1.4.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="CP.Extensions.Hosting.Identity.EntityFrameworkCore.SqlServer" Version="1.4.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CP.Extensions.Hosting.Identity.EntityFrameworkCore.SqlServer --version 1.4.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: CP.Extensions.Hosting.Identity.EntityFrameworkCore.SqlServer, 1.4.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.
// Install CP.Extensions.Hosting.Identity.EntityFrameworkCore.SqlServer as a Cake Addin #addin nuget:?package=CP.Extensions.Hosting.Identity.EntityFrameworkCore.SqlServer&version=1.4.2 // Install CP.Extensions.Hosting.Identity.EntityFrameworkCore.SqlServer as a Cake Tool #tool nuget:?package=CP.Extensions.Hosting.Identity.EntityFrameworkCore.SqlServer&version=1.4.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
CP.Extensions.Hosting
An Extension of the Microsoft.Extensions.Hosting library with the aim of allowing windows applications to use the hosting base.
CP.Extensions.Hosting.Identity.EntityFrameworkCore.Sqlite
.UseWebHostServices((whb, services) =>
{
services.UseEntityFrameworkCoreSqlite<DBContext, IdentityUser, IdentityRole>(whb, "DefaultConnection")
.Configure<IdentityOptions>(options =>
{
// Configure options
});
})
CP.Extensions.Hosting.Identity.EntityFrameworkCore.SqlServer
.UseWebHostServices((whb, services) =>
{
services.UseEntityFrameworkCoreSqlServer<DBContext, IdentityUser, IdentityRole>(whb, "DefaultConnection")
.Configure<IdentityOptions>(options =>
{
// Configure options
});
})
CP.Extensions.Hosting.MainUIThread
Used to run the main UI thread in a Wpf / WinUI / WinForms application.
CP.Extensions.Hosting.Plugins
.ConfigurePlugins(pluginBuilder =>
{
Console.ForegroundColor = ConsoleColor.Yellow;
Console.WriteLine("Running using dotNet {0}", Environment.Version);
//// Specify the location from where the Dll's are "globbed"
var process = Process.GetCurrentProcess();
var fullPath = process.MainModule?.FileName?.Replace(process.MainModule.ModuleName!, string.Empty);
Console.WriteLine("Add Scan Directories: {0}", fullPath);
pluginBuilder?.AddScanDirectories(fullPath!);
//// Add the framework libraries which can be found with the specified globs
pluginBuilder?.IncludeFrameworks(@"\netstandard2.0\*.FrameworkLib.dll");
//// Add the plugins which can be found with the specified globs
var runtime = targetRuntime ?? Path.GetFileName(executableLocation);
Console.WriteLine(@"Include Plugins from: \Plugins\{0}\{1}*.dll", runtime, nameSpace);
pluginBuilder?.IncludePlugins(@$"\Plugins\{runtime}\{##YourPluginNameSpace##}*.dll");
Console.ResetColor();
})
/// <summary>
/// This plug-in configures the HostBuilderContext to have the hosted services from the online example
/// </summary>
public class Plugin : PluginBase<FirstService, SecondService, ThirdService>
{
}
CP.Extensions.Hosting.PluginService
await ServiceHost.Create(
typeof(Program),
args,
hb => hb, // Configure the HostBuilder
host => {}, // Configure the Host
nameSpace: "AICS.Plugin").ConfigureAwait(false);
CP.Extensions.Hosting.ReactiveUI.WinForms
.ConfigureSplatForMicrosoftDependencyResolver()
CP.Extensions.Hosting.ReactiveUI.WinUI
.ConfigureSplatForMicrosoftDependencyResolver()
CP.Extensions.Hosting.ReactiveUI.Wpf
.ConfigureSplatForMicrosoftDependencyResolver()
CP.Extensions.Hosting.SingleInstance
.ConfigureSingleInstance(builder =>
{
builder.MutexId = "{ea031523-3a63-45e5-85f2-6fa75fbf37ed}";
builder.WhenNotFirstInstance = (hostingEnvironment, logger) =>
{
// Application already started, this is another instance
logger.LogWarning("Application {0} already running.", hostingEnvironment.ApplicationName);
};
})
CP.Extensions.Hosting.WinForms
.ConfigureWinForms<MainForm>()
.UseWinFormsLifetime()
CP.Extensions.Hosting.WinUI
.ConfigureWinUI<MainWindow>()
.UseWpfLifetime()
CP.Extensions.Hosting.Wpf
.ConfigureWpf<MainWindow>()
.UseWpfLifetime()
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. 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 is compatible. 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 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Microsoft.AspNetCore.Identity.EntityFrameworkCore (>= 6.0.29)
- Microsoft.AspNetCore.Identity.UI (>= 6.0.29)
- Microsoft.EntityFrameworkCore.SqlServer (>= 6.0.29)
- Microsoft.Extensions.Hosting (>= 8.0.0)
- Newtonsoft.Json (>= 13.0.3)
-
net7.0
- Microsoft.AspNetCore.Identity.EntityFrameworkCore (>= 7.0.18)
- Microsoft.AspNetCore.Identity.UI (>= 7.0.18)
- Microsoft.EntityFrameworkCore.SqlServer (>= 7.0.18)
- Microsoft.Extensions.Hosting (>= 8.0.0)
- Newtonsoft.Json (>= 13.0.3)
-
net8.0
- Microsoft.AspNetCore.Identity.EntityFrameworkCore (>= 8.0.4)
- Microsoft.AspNetCore.Identity.UI (>= 8.0.4)
- Microsoft.EntityFrameworkCore.SqlServer (>= 8.0.4)
- Microsoft.Extensions.Hosting (>= 8.0.0)
- Newtonsoft.Json (>= 13.0.3)
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 |
---|---|---|
2.0.5 | 114 | 5/18/2024 |
1.5.2 | 112 | 5/17/2024 |
1.4.2 | 116 | 5/5/2024 |
1.3.13 | 89 | 5/1/2024 |
1.3.2 | 114 | 4/11/2024 |
1.2.2 | 161 | 3/26/2024 |
1.1.90 | 163 | 3/19/2024 |
1.1.28 | 274 | 2/5/2024 |
1.1.18 | 418 | 1/4/2024 |
1.1.11 | 396 | 12/23/2023 |
1.1.10 | 375 | 12/23/2023 |
1.1.7 | 87 | 12/14/2023 |
1.1.5 | 111 | 11/23/2023 |
1.1.3 | 96 | 11/12/2023 |
1.0.61 | 439 | 11/6/2023 |
1.0.60 | 415 | 11/6/2023 |
1.0.58 | 418 | 10/27/2023 |
1.0.56 | 464 | 10/27/2023 |
1.0.55 | 466 | 10/27/2023 |
1.0.54 | 452 | 10/27/2023 |
1.0.52 | 503 | 10/17/2023 |
1.0.50 | 457 | 10/17/2023 |
1.0.48 | 493 | 10/16/2023 |
1.0.47 | 461 | 10/16/2023 |
1.0.46 | 488 | 10/16/2023 |
1.0.44 | 483 | 10/3/2023 |
1.0.43 | 452 | 10/2/2023 |
1.0.39 | 502 | 10/2/2023 |
1.0.37 | 491 | 9/30/2023 |
1.0.33 | 501 | 9/19/2023 |
1.0.31 | 468 | 9/19/2023 |
1.0.29 | 527 | 9/14/2023 |
1.0.17 | 513 | 8/31/2023 |
Compatability with Net 6 / 7 / 8 and net462