McMaster.NETCore.Plugins
0.3.0
See the version list below for details.
dotnet add package McMaster.NETCore.Plugins --version 0.3.0
NuGet\Install-Package McMaster.NETCore.Plugins -Version 0.3.0
<PackageReference Include="McMaster.NETCore.Plugins" Version="0.3.0" />
paket add McMaster.NETCore.Plugins --version 0.3.0
#r "nuget: McMaster.NETCore.Plugins, 0.3.0"
// Install McMaster.NETCore.Plugins as a Cake Addin
#addin nuget:?package=McMaster.NETCore.Plugins&version=0.3.0
// Install McMaster.NETCore.Plugins as a Cake Tool
#tool nuget:?package=McMaster.NETCore.Plugins&version=0.3.0
Provides API for consuming .NET Core and .NET Standard assemblies as plugins to a .NET Core application.
This package should be used by the host application which needs to load plugins.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
-
.NETCoreApp 2.0
- Microsoft.DotNet.PlatformAbstractions (>= 3.0.0)
- Microsoft.Extensions.DependencyModel (>= 3.0.0)
- System.Text.Json (>= 4.6.0)
-
.NETCoreApp 3.0
- Microsoft.DotNet.PlatformAbstractions (>= 3.0.0)
- Microsoft.Extensions.DependencyModel (>= 3.0.0)
NuGet packages (26)
Showing the top 5 NuGet packages that depend on McMaster.NETCore.Plugins:
Package | Downloads |
---|---|
Microting.eFormApi.BasePn
Package Description |
|
ReportGenerator.Core
ReportGenerator converts coverage reports generated by coverlet, OpenCover, dotCover, Visual Studio, NCover, Cobertura, JaCoCo, Clover, gcov or lcov into human readable reports in various formats. The reports show the coverage quotas and also visualize which lines of your source code have been covered. Use this package if you want to write a custom plugin for ReportGenerator or if you want to call/execute ReportGenerator within your code base. Plugin development: https://github.com/danielpalme/ReportGenerator/wiki/Custom-reports https://github.com/danielpalme/ReportGenerator/wiki/Custom-history-storage |
|
CodeGeneration.Roslyn.Engine
The engine of source code generation; used by CodeGeneration.Roslyn.Tool. Useful for testing custom source generators. API: * CodeGeneration.Roslyn.CompilationGenerator * CodeGeneration.Roslyn.DocumentTransform |
|
McMaster.NETCore.Plugins.Mvc
Provides API for dynamically loading MVC controllers into an ASP.NET Core web application. This package should be used by the host application which needs to load plugins. See https://github.com/natemcmaster/DotNetCorePlugins/blob/main/README.md for more samples and documentation. |
|
FSharp.Analyzers.SDK
SDK for building custom analyzers for FSAC / F# editors |
GitHub repositories (10)
Showing the top 5 popular GitHub repositories that depend on McMaster.NETCore.Plugins:
Repository | Stars |
---|---|
danielpalme/ReportGenerator
ReportGenerator converts coverage reports generated by coverlet, OpenCover, dotCover, Visual Studio, NCover, Cobertura, JaCoCo, Clover, gcov or lcov into human readable reports in various formats.
|
|
Squidex/squidex
Headless CMS and Content Managment Hub
|
|
Artemis-RGB/Artemis
Provides advanced unified lighting across many different brands RGB peripherals
|
|
mehdihadeli/ecommerce-microservices
🛍️ A practical e-commerce microservices, built with .Net 7, Domain-Driven Design, CQRS, Vertical Slice Architecture, Event-Driven Architecture, and the latest technologies.
|
|
AArnott/CodeGeneration.Roslyn
Assists in performing Roslyn-based code generation during a build.
|
Version | Downloads | Last updated |
---|---|---|
2.0.0-beta.130 | 4,928 | 6/5/2022 |
1.4.0 | 1,578,762 | 5/27/2021 |
1.4.0-beta.87 | 181 | 5/26/2021 |
1.4.0-beta.41 | 11,531 | 1/31/2021 |
1.3.1 | 556,241 | 8/28/2020 |
1.3.0 | 139,157 | 5/8/2020 |
1.2.0 | 41,980 | 3/10/2020 |
1.1.0 | 18,076 | 1/17/2020 |
1.0.0 | 8,403 | 1/2/2020 |
0.3.2 | 9,696 | 12/16/2019 |
0.3.1 | 44,976 | 10/14/2019 |
0.3.0 | 1,969 | 9/24/2019 |
0.2.4 | 240,505 | 2/1/2019 |
0.2.3 | 784 | 1/30/2019 |
0.2.2 | 1,393 | 1/25/2019 |
0.2.1 | 719,058 | 10/21/2018 |
0.2.0 | 907 | 9/26/2018 |
0.1.1 | 1,020,775 | 8/22/2018 |
0.1.0 | 920 | 7/24/2018 |
Changes:
* .NET Core 3.0 support
* Support unloading plugins from memory (only .NET Core >3.0)
* Support hot reloading (only .NET Core >3.0)
Fixes:
* Fix errors in loading the transitive dependencies of shared types
Breaking changes:
* Support for loading plugin config from an XML file has been dropped. The APIs for PluginLoader.CreateFromConfigFile were removed
in favor of PluginLoader.CreateFromAssemblyFile
* Merged PluginLoaderOptions with the PluginConfig class