CP.Extensions.Hosting.MainUIThread 1.3.2

dotnet add package CP.Extensions.Hosting.MainUIThread --version 1.3.2
NuGet\Install-Package CP.Extensions.Hosting.MainUIThread -Version 1.3.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.MainUIThread" Version="1.3.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CP.Extensions.Hosting.MainUIThread --version 1.3.2
#r "nuget: CP.Extensions.Hosting.MainUIThread, 1.3.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.MainUIThread as a Cake Addin
#addin nuget:?package=CP.Extensions.Hosting.MainUIThread&version=1.3.2

// Install CP.Extensions.Hosting.MainUIThread as a Cake Tool
#tool nuget:?package=CP.Extensions.Hosting.MainUIThread&version=1.3.2

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

Nuget Nuget

.UseWebHostServices((whb, services) =>
{
    services.UseEntityFrameworkCoreSqlite<DBContext, IdentityUser, IdentityRole>(whb, "DefaultConnection")
    .Configure<IdentityOptions>(options =>
    {
        // Configure options
    });
})
CP.Extensions.Hosting.Identity.EntityFrameworkCore.SqlServer

Nuget Nuget

.UseWebHostServices((whb, services) =>
{
    services.UseEntityFrameworkCoreSqlServer<DBContext, IdentityUser, IdentityRole>(whb, "DefaultConnection")
    .Configure<IdentityOptions>(options =>
    {
        // Configure options
    });
})
CP.Extensions.Hosting.MainUIThread

Nuget Nuget

Used to run the main UI thread in a Wpf / WinUI / WinForms application.

CP.Extensions.Hosting.Plugins

Nuget Nuget

.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

Nuget Nuget

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

Nuget Nuget

    .ConfigureSplatForMicrosoftDependencyResolver()
CP.Extensions.Hosting.ReactiveUI.WinUI

Nuget Nuget

    .ConfigureSplatForMicrosoftDependencyResolver()
CP.Extensions.Hosting.ReactiveUI.Wpf

Nuget Nuget

    .ConfigureSplatForMicrosoftDependencyResolver()
CP.Extensions.Hosting.SingleInstance

Nuget Nuget

.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

Nuget Nuget

.ConfigureWinForms<MainForm>()
.UseWinFormsLifetime()
CP.Extensions.Hosting.WinUI

Nuget Nuget

.ConfigureWinUI<MainWindow>()
.UseWpfLifetime()
CP.Extensions.Hosting.Wpf

Nuget Nuget

.ConfigureWpf<MainWindow>()
.UseWpfLifetime()
Product Compatible and additional computed target framework versions.
.NET net6.0-windows7.0 is compatible.  net7.0-windows was computed.  net7.0-windows7.0 is compatible.  net8.0-windows was computed.  net8.0-windows7.0 is compatible. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on CP.Extensions.Hosting.MainUIThread:

Package Downloads
CP.Extensions.Hosting.Wpf

This extension adds WPF support to generic host applications. With this you can enhance your application with a UI, and use all the services provided by the generic host like DI, logging etc.

CP.Extensions.Hosting.WinUI

This extension adds WinUI support to generic host applications. With this you can enhance your application with a UI, and use all the services provided by the generic host like DI, logging etc.

CP.Extensions.Hosting.WinForms

This extension adds WinForms support to generic host based applications. With this you can enhance your application with a UI, and use all the services provided by the generic host like DI, logging etc.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.2 88 4/11/2024
1.2.2 125 3/26/2024
1.1.90 118 3/19/2024
1.1.28 163 2/5/2024
1.1.18 201 1/4/2024
1.1.11 102 12/23/2023
1.1.10 68 12/23/2023
1.1.7 83 12/14/2023
1.1.5 119 11/23/2023
1.1.3 69 11/12/2023
1.0.61 88 11/6/2023
1.0.60 87 11/6/2023
1.0.58 107 10/27/2023
1.0.56 102 10/27/2023
1.0.55 92 10/27/2023
1.0.54 98 10/27/2023
1.0.52 107 10/17/2023
1.0.50 96 10/17/2023
1.0.48 100 10/16/2023
1.0.47 96 10/16/2023
1.0.46 98 10/16/2023
1.0.44 101 10/3/2023
1.0.43 90 10/2/2023
1.0.39 95 10/2/2023
1.0.37 107 9/30/2023
1.0.33 101 9/19/2023
1.0.31 83 9/19/2023
1.0.29 105 9/14/2023
1.0.17 123 8/31/2023
1.0.15 104 8/30/2023
1.0.13 116 8/30/2023
1.0.8 135 8/1/2023
1.0.7 113 8/1/2023
1.0.6 136 7/25/2023
1.0.4 118 7/25/2023

Compatability with Net 6 / 7 / 8 and net462