CP.Extensions.Hosting.WinUI
2.1.4
dotnet add package CP.Extensions.Hosting.WinUI --version 2.1.4
NuGet\Install-Package CP.Extensions.Hosting.WinUI -Version 2.1.4
<PackageReference Include="CP.Extensions.Hosting.WinUI" Version="2.1.4" />
paket add CP.Extensions.Hosting.WinUI --version 2.1.4
#r "nuget: CP.Extensions.Hosting.WinUI, 2.1.4"
// Install CP.Extensions.Hosting.WinUI as a Cake Addin #addin nuget:?package=CP.Extensions.Hosting.WinUI&version=2.1.4 // Install CP.Extensions.Hosting.WinUI as a Cake Tool #tool nuget:?package=CP.Extensions.Hosting.WinUI&version=2.1.4
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
.UseWebHostServices((whb, services) =>
{
services.UseEntityFrameworkCoreSqlite<DBContext, IdentityUser, IdentityRole>(whb, "DefaultConnection")
.Configure<IdentityOptions>(options =>
{
// Configure options
});
})
ReactiveMarbles.Extensions.Hosting.Identity.EntityFrameworkCore.SqlServer
.UseWebHostServices((whb, services) =>
{
services.UseEntityFrameworkCoreSqlServer<DBContext, IdentityUser, IdentityRole>(whb, "DefaultConnection")
.Configure<IdentityOptions>(options =>
{
// Configure options
});
})
ReactiveMarbles.Extensions.Hosting.MainUIThread
Used to run the main UI thread in a Wpf / WinUI / WinForms application.
ReactiveMarbles.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
/// </summary>
public class Plugin : PluginBase<FirstService, SecondService, ThirdService>
{
}
ReactiveMarbles.Extensions.Hosting.PluginService
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
.ConfigureSplatForMicrosoftDependencyResolver()
.ConfigureWinForms<MainForm>()
.UseWinFormsLifetime()
ReactiveMarbles.Extensions.Hosting.ReactiveUI.WinUI
.ConfigureSplatForMicrosoftDependencyResolver()
.ConfigureWinUI<MainWindow>()
.UseWpfLifetime()
ReactiveMarbles.Extensions.Hosting.ReactiveUI.Wpf
.ConfigureSplatForMicrosoftDependencyResolver()
.ConfigureWpf<MainWindow>()
.UseWpfLifetime()
ReactiveMarbles.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);
};
})
ReactiveMarbles.Extensions.Hosting.WinForms
.ConfigureWinForms<MainForm>()
.UseWinFormsLifetime()
ReactiveMarbles.Extensions.Hosting.WinUI
.ConfigureWinUI<MainWindow>()
.UseWpfLifetime()
ReactiveMarbles.Extensions.Hosting.Wpf
.ConfigureWpf<MainWindow>()
.UseWpfLifetime()
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0-windows10.0.17763 is compatible. net9.0-windows10.0.17763 is compatible. |
-
net8.0-windows10.0.17763
- CP.Extensions.Hosting.MainUIThread (>= 2.1.4)
- Microsoft.WindowsAppSDK (>= 1.6.241114003)
-
net9.0-windows10.0.17763
- CP.Extensions.Hosting.MainUIThread (>= 2.1.4)
- Microsoft.WindowsAppSDK (>= 1.6.241114003)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on CP.Extensions.Hosting.WinUI:
Package | Downloads |
---|---|
CP.Extensions.Hosting.ReactiveUI.WinUI
This extension adds ReactiveUI support to generic host based dotnet core 6.0 / 8.0 WinUI 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, together with this reactive MVVM framework. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.1.4 | 29 | 11/21/2024 |
2.0.5 | 119 | 5/18/2024 |
1.5.2 | 114 | 5/17/2024 |
1.4.2 | 105 | 5/5/2024 |
1.3.13 | 97 | 5/1/2024 |
1.3.2 | 114 | 4/11/2024 |
1.2.2 | 114 | 3/26/2024 |
1.1.90 | 128 | 3/19/2024 |
1.1.28 | 116 | 2/5/2024 |
1.1.18 | 174 | 1/4/2024 |
1.1.11 | 136 | 12/23/2023 |
1.1.10 | 113 | 12/23/2023 |
1.1.7 | 115 | 12/14/2023 |
1.1.5 | 166 | 11/23/2023 |
1.1.3 | 132 | 11/12/2023 |
1.0.61 | 110 | 11/6/2023 |
1.0.60 | 133 | 11/6/2023 |
1.0.58 | 134 | 10/27/2023 |
1.0.56 | 157 | 10/27/2023 |
1.0.55 | 132 | 10/27/2023 |
1.0.54 | 145 | 10/27/2023 |
1.0.52 | 156 | 10/17/2023 |
1.0.50 | 136 | 10/17/2023 |
1.0.48 | 124 | 10/16/2023 |
1.0.47 | 135 | 10/16/2023 |
1.0.46 | 136 | 10/16/2023 |
1.0.44 | 146 | 10/3/2023 |
1.0.43 | 120 | 10/2/2023 |
1.0.39 | 129 | 10/2/2023 |
1.0.37 | 134 | 9/30/2023 |
1.0.33 | 124 | 9/19/2023 |
1.0.31 | 131 | 9/19/2023 |
1.0.29 | 133 | 9/14/2023 |
1.0.17 | 156 | 8/31/2023 |
1.0.15 | 146 | 8/30/2023 |
1.0.13 | 177 | 8/30/2023 |
1.0.8 | 173 | 8/1/2023 |
1.0.7 | 122 | 8/1/2023 |
1.0.6 | 159 | 7/25/2023 |
1.0.4 | 176 | 7/25/2023 |
Compatability with Net 6 / 8 and net462