CP.Extensions.Hosting.MainUIThread 2.0.5

dotnet add package CP.Extensions.Hosting.MainUIThread --version 2.0.5                
NuGet\Install-Package CP.Extensions.Hosting.MainUIThread -Version 2.0.5                
此命令的目的是在 Visual Studio 的包管理器控制台中使用,因为它使用 NuGet 模块的 Install-Package 版本。
<PackageReference Include="CP.Extensions.Hosting.MainUIThread" Version="2.0.5" />                
对于支持 PackageReference 的项目,将此 XML 节点复制到项目文件中以引用软件包。
paket add CP.Extensions.Hosting.MainUIThread --version 2.0.5                
#r "nuget: CP.Extensions.Hosting.MainUIThread, 2.0.5"                
#r 指令可用于 F# Interactive 和 Polyglot Notebooks。将此复制到交互工具或脚本的源代码中以便引用软件包。
// Install CP.Extensions.Hosting.MainUIThread as a Cake Addin
#addin nuget:?package=CP.Extensions.Hosting.MainUIThread&version=2.0.5

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

备注:命名空间已更改为 ReactiveMarbles.Extensions.Hosting。请更新引用到新命名空间。

ReactiveMarbles.Extensions.Hosting

Microsoft.Extensions.Hosting 库的扩展,旨在允许 Windows 应用程序使用托管基础。

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

用于在 Wpf / WinUI / WinForms 应用程序中运行主 UI 线程。

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()
产品 兼容和额外的计算目标框架版本。
.NET net6.0-windows7.0兼容。 net7.0-windows已计算。 net8.0-windows已计算。 net8.0-windows7.0兼容。
.NET框架 net462兼容。 net463已计算。 net47已计算。 net471已计算。 net472已计算。 net48已计算。 net481已计算。
兼容目标框架
包含目标框架(在包中)
了解更多关于目标框架.NET Standard的信息。

NuGet包 (3)

显示依赖CP.Extensions.Hosting.MainUIThread的前3个NuGet包

下载
CP.Extensions.Hosting.Wpf

此扩展将为通用宿主应用程序添加WPF支持。使用此工具,您可以增强应用程序的UI,并使用通用宿主提供的所有服务,如DI、日志记录等。

CP.Extensions.Hosting.WinUI

此扩展将为通用宿主应用程序添加WinUI支持。使用此工具,您可以增强应用程序的UI,并使用通用宿主提供的所有服务,如DI、日志记录等。

CP.Extensions.Hosting.WinForms

此扩展将为基于通用宿主的应用程序添加WinForms支持。使用此工具,您可以增强应用程序的UI,并使用通用宿主提供的所有服务,如DI、日志记录等。

GitHub仓库

此包没有被任何流行的GitHub仓库使用。

版本 下载 最后更新
2.0.5 169 5/18/2024
1.5.2 109 5/17/2024
1.4.2 110 5/5/2024
1.3.13 98 5/1/2024
1.3.2 148 4/11/2024
1.2.2 135 3/26/2024
1.1.90 128 3/19/2024
1.1.28 172 2/5/2024
1.1.18 209 1/4/2024
1.1.11 114 12/23/2023
1.1.10 72 12/23/2023
1.1.7 93 12/14/2023
1.1.5 128 11/23/2023
1.1.3 73 11/12/2023
1.0.61 93 11/6/2023
1.0.60 91 11/6/2023
1.0.58 119 10/27/2023
1.0.56 111 10/27/2023
1.0.55 102 10/27/2023
1.0.54 108 10/27/2023
1.0.52 112 10/17/2023
1.0.50 109 10/17/2023
1.0.48 105 10/16/2023
1.0.47 101 10/16/2023
1.0.46 105 10/16/2023
1.0.44 106 10/3/2023
1.0.43 96 10/2/2023
1.0.39 101 10/2/2023
1.0.37 112 9/30/2023
1.0.33 110 9/19/2023
1.0.31 87 9/19/2023
1.0.29 111 9/14/2023
1.0.17 128 8/31/2023
1.0.15 114 8/30/2023
1.0.13 120 8/30/2023
1.0.8 139 8/1/2023
1.0.7 117 8/1/2023
1.0.6 149 7/25/2023
1.0.4 122 7/25/2023

与Net 6/8和net462的兼容性