2026-03-21 13:08:20 +08:00
|
|
|
# LanMountainDesktop.PluginSdk
|
|
|
|
|
|
|
|
|
|
Official SDK package for LanMountainDesktop plugins.
|
|
|
|
|
|
|
|
|
|
## Includes
|
|
|
|
|
|
|
|
|
|
- `IPlugin`/`PluginBase` entry abstractions
|
|
|
|
|
- `PluginManifest` and shared contract declarations
|
|
|
|
|
- desktop component registration extensions
|
|
|
|
|
- plugin runtime context and host service abstractions
|
|
|
|
|
- build-transitive packaging targets for `.laapp` output
|
|
|
|
|
|
|
|
|
|
## Quick Start
|
|
|
|
|
|
|
|
|
|
```xml
|
|
|
|
|
<ItemGroup>
|
2026-04-13 08:02:47 +08:00
|
|
|
<PackageReference Include="LanMountainDesktop.PluginSdk" Version="4.0.1" />
|
2026-03-21 13:08:20 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Create `plugin.json` in your plugin project root, then run `dotnet build` to produce both build output and a `.laapp` package.
|