The OnTopic.Editor.AspNetCore.All
metapackage includes a reference to both the core OnTopic Editor as well as all standard attribute type plugins. It is recommended that implementers reference this package instead of referencing each of the OnTopic Editor packages individually, unless they have a specific need to customize e.g. which attribute plugins are referenced.
The OnTopic.Editor.AspNetCore.All
metapackage maintains a reference to the following packages:
OnTopic.Editor.AspNetCore
: The core OnTopic Editor interface.OnTopic.Editor.AspNetCore.Attributes
: The standard attribute types for supporting typing implementations of the OnTopic Editor.
Installation can be performed by providing a <PackageReference /
> to the OnTopic.Editor.AspNetCore.All
NuGet package.
<Project Sdk="Microsoft.NET.Sdk.Web">
…
<ItemGroup>
<PackageReference Include="OnTopic.Editor.AspNetCore.All" Version="5.0.0" />
</ItemGroup>
</Project>