CP.Extensions.Hosting.ReactiveUI.Wpf 2.1.13

dotnet add package CP.Extensions.Hosting.ReactiveUI.Wpf --version 2.1.13
                    
NuGet\Install-Package CP.Extensions.Hosting.ReactiveUI.Wpf -Version 2.1.13
                    
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.ReactiveUI.Wpf" Version="2.1.13" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CP.Extensions.Hosting.ReactiveUI.Wpf" Version="2.1.13" />
                    
Directory.Packages.props
<PackageReference Include="CP.Extensions.Hosting.ReactiveUI.Wpf" />
                    
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 CP.Extensions.Hosting.ReactiveUI.Wpf --version 2.1.13
                    
#r "nuget: CP.Extensions.Hosting.ReactiveUI.Wpf, 2.1.13"
                    
#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.
#addin nuget:?package=CP.Extensions.Hosting.ReactiveUI.Wpf&version=2.1.13
                    
Install as a Cake Addin
#tool nuget:?package=CP.Extensions.Hosting.ReactiveUI.Wpf&version=2.1.13
                    
Install as a Cake Tool

NOTE: The namespacing has been changed to ReactiveMarbles.Extensions.Hosting. Please update your references to the new namespace.

ReactiveMarbles.Extensions.Hosting

An Extension of the Microsoft.Extensions.Hosting library with the aim of allowing windows applications to use the hosting base.

ReactiveMarbles.Extensions.Hosting.Identity.EntityFrameworkCore.Sqlite

Nuget Nuget

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

Nuget Nuget

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

Nuget Nuget

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

ReactiveMarbles.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
/// </summary>
public class Plugin : PluginBase<FirstService, SecondService, ThirdService>
{
}
ReactiveMarbles.Extensions.Hosting.PluginService

Nuget Nuget

await ServiceHost.Create(
            typeof(Program),
            args,
            hb => hb, // Configure the HostBuilder
            host => {}, // Configure the Host
            nameSpace: "ReactiveMarbles.Plugin").ConfigureAwait(false);
ReactiveMarbles.Extensions.Hosting.ReactiveUI.WinForms

Nuget Nuget

.ConfigureSplatForMicrosoftDependencyResolver()
.ConfigureWinForms<MainForm>()
.UseWinFormsLifetime()
ReactiveMarbles.Extensions.Hosting.ReactiveUI.WinUI

Nuget Nuget

.ConfigureSplatForMicrosoftDependencyResolver()
.ConfigureWinUI<MainWindow>()
.UseWpfLifetime()
ReactiveMarbles.Extensions.Hosting.ReactiveUI.Wpf

Nuget Nuget

.ConfigureSplatForMicrosoftDependencyResolver()
.ConfigureWpf<MainWindow>()
.UseWpfLifetime()
ReactiveMarbles.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);
	};
})
ReactiveMarbles.Extensions.Hosting.WinForms

Nuget Nuget

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

Nuget Nuget

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

Nuget Nuget

.ConfigureWpf<MainWindow>()
.UseWpfLifetime()
Product Compatible and additional computed target framework versions.
.NET net8.0-windows10.0.17763 is compatible.  net9.0-windows was computed.  net9.0-windows10.0.17763 is compatible.  net10.0-windows was computed. 
.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 (1)

Showing the top 1 NuGet packages that depend on CP.Extensions.Hosting.ReactiveUI.Wpf:

Package Downloads
CrissCross.WPF.UI

A Reactive Navigation Framework for ReactiveUI

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.1.13 448 4/29/2025
2.1.10 175 3/16/2025
2.1.8 167 2/19/2025
2.1.6 124 2/9/2025
2.1.4 179 11/21/2024
2.0.5 380 5/18/2024
1.5.2 134 5/17/2024
1.4.2 145 5/5/2024
1.3.13 140 5/1/2024
1.3.2 241 4/11/2024
1.2.2 239 3/26/2024
1.1.90 215 3/19/2024
1.1.28 415 2/5/2024
1.1.18 501 1/4/2024
1.1.11 472 12/23/2023
1.1.10 407 12/23/2023
1.1.7 459 12/14/2023
1.1.5 607 11/23/2023
1.1.3 494 11/12/2023
1.0.61 450 11/6/2023
1.0.60 482 11/6/2023
1.0.58 456 10/27/2023
1.0.56 487 10/27/2023
1.0.55 523 10/27/2023
1.0.54 493 10/27/2023
1.0.52 464 10/17/2023
1.0.50 498 10/17/2023
1.0.48 500 10/16/2023
1.0.47 509 10/16/2023
1.0.46 471 10/16/2023
1.0.44 544 10/3/2023
1.0.43 503 10/2/2023
1.0.39 499 10/2/2023
1.0.37 504 9/30/2023
1.0.33 482 9/19/2023
1.0.31 459 9/19/2023
1.0.29 458 9/14/2023
1.0.17 524 8/31/2023
1.0.15 524 8/30/2023
1.0.13 516 8/30/2023
1.0.8 528 8/1/2023
1.0.7 499 8/1/2023
1.0.6 502 7/25/2023

Compatability with Net 8 / 9 and net462