CP.Extensions.Hosting.Plugins
2.1.4
.NET 8.0
This package targets .NET 8.0. The package is compatible with this framework or higher.
.NET Standard 2.0
This package targets .NET Standard 2.0. The package is compatible with this framework or higher.
.NET Framework 4.6.2
This package targets .NET Framework 4.6.2. The package is compatible with this framework or higher.
dotnet add package CP.Extensions.Hosting.Plugins --version 2.1.4
NuGet\Install-Package CP.Extensions.Hosting.Plugins -Version 2.1.4
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.Plugins" Version="2.1.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CP.Extensions.Hosting.Plugins --version 2.1.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: CP.Extensions.Hosting.Plugins, 2.1.4"
#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.Plugins as a Cake Addin #addin nuget:?package=CP.Extensions.Hosting.Plugins&version=2.1.4 // Install CP.Extensions.Hosting.Plugins as a Cake Tool #tool nuget:?package=CP.Extensions.Hosting.Plugins&version=2.1.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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. net9.0 is compatible. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.6.2
- Microsoft.Extensions.FileSystemGlobbing (>= 9.0.0)
- Microsoft.Extensions.Hosting (>= 9.0.0)
- System.Reactive (>= 6.0.1)
-
.NETStandard 2.0
- Microsoft.Extensions.FileSystemGlobbing (>= 9.0.0)
- Microsoft.Extensions.Hosting (>= 9.0.0)
- System.Reactive (>= 6.0.1)
-
net8.0
- Microsoft.Extensions.FileSystemGlobbing (>= 9.0.0)
- Microsoft.Extensions.Hosting (>= 9.0.0)
- System.Reactive (>= 6.0.1)
-
net9.0
- Microsoft.Extensions.FileSystemGlobbing (>= 9.0.0)
- Microsoft.Extensions.Hosting (>= 9.0.0)
- System.Reactive (>= 6.0.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on CP.Extensions.Hosting.Plugins:
Package | Downloads |
---|---|
CP.Extensions.Hosting.PluginService
An Extension of the Microsoft.Extensions.Hosting library |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.1.4 | 31 | 11/21/2024 |
2.0.5 | 148 | 5/18/2024 |
1.5.2 | 104 | 5/17/2024 |
1.4.2 | 129 | 5/5/2024 |
1.3.13 | 93 | 5/1/2024 |
1.3.2 | 121 | 4/11/2024 |
1.2.2 | 122 | 3/26/2024 |
1.1.90 | 117 | 3/19/2024 |
1.1.28 | 137 | 2/5/2024 |
1.1.18 | 200 | 1/4/2024 |
1.1.11 | 127 | 12/23/2023 |
1.1.10 | 121 | 12/23/2023 |
1.1.7 | 86 | 12/14/2023 |
1.1.5 | 120 | 11/23/2023 |
1.1.3 | 91 | 11/12/2023 |
1.0.61 | 124 | 11/6/2023 |
1.0.60 | 108 | 11/6/2023 |
1.0.58 | 138 | 10/27/2023 |
1.0.56 | 130 | 10/27/2023 |
1.0.55 | 121 | 10/27/2023 |
1.0.54 | 134 | 10/27/2023 |
1.0.52 | 144 | 10/17/2023 |
1.0.50 | 133 | 10/17/2023 |
1.0.48 | 135 | 10/16/2023 |
1.0.47 | 128 | 10/16/2023 |
1.0.46 | 124 | 10/16/2023 |
1.0.44 | 132 | 10/3/2023 |
1.0.43 | 125 | 10/2/2023 |
1.0.39 | 112 | 10/2/2023 |
1.0.37 | 133 | 9/30/2023 |
1.0.33 | 128 | 9/19/2023 |
1.0.31 | 118 | 9/19/2023 |
1.0.29 | 142 | 9/14/2023 |
1.0.17 | 149 | 8/31/2023 |
1.0.15 | 136 | 8/30/2023 |
1.0.13 | 133 | 8/30/2023 |
1.0.8 | 172 | 8/1/2023 |
1.0.7 | 137 | 8/1/2023 |
1.0.6 | 158 | 7/25/2023 |
1.0.4 | 158 | 7/25/2023 |
Compatability with Net 6 / 8 and net462