Open
Conversation
原本是在制作插件的时候,制作安装包,制作安装包是重新 AOT 构建项目+用7z压缩插件内容。原本的方式会导致插件构建一次的时间很长 当前版本更改为预先 AOT + 无压缩 Overlay 方式,如此可以极大提升插件安装包制作速度 从原本6分钟减少为 3 秒 同时支持命令行功能: 1. 显示调试命令行: `Xx.exe debug show-content` 2. 静默安装: `Xx.exe /S` 安装包技术: https://github.com/dotnet-campus/DotNetCampus.Installer/
walterlv
requested changes
Mar 13, 2026
There was a problem hiding this comment.
Pull request overview
本 PR 通过升级本地 dotnetCampus.EasiPlugin.Sdk(配合仓库内 packages 包源)来引入更快的插件安装包制作方案(预先 AOT + 无压缩 Overlay),并同步更新相关说明与元数据。
Changes:
- 将示例项目对
dotnetCampus.EasiPlugin.Sdk的引用升级到2.1.1-alpha.3 - 更新 README 中的本地 nupkg 指引(指向
2.1.1-alpha.3) - 更新版权年份范围
Reviewed changes
Copilot reviewed 3 out of 5 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| src/EasiPluginSample/EasiPluginSample.csproj | 升级 SDK 包引用版本到 2.1.1-alpha.3 |
| README.md | 更新本地包文件名指引;调整 VS 版本说明(当前存在不一致) |
| Directory.Build.props | 更新版权年份范围到 2025-2026 |
| packages/dotnetcampus.easiplugin.sdk.2.1.1-alpha.3.nupkg | 提供对应版本的本地 SDK 包以供还原 |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
原本是在制作插件的时候,制作安装包,制作安装包是重新 AOT 构建项目+用7z压缩插件内容。原本的方式会导致插件构建一次的时间很长
当前版本更改为预先 AOT + 无压缩 Overlay 方式,如此可以极大提升插件安装包制作速度
从原本6分钟减少为 3 秒
同时支持命令行功能:
Xx.exe debug show-contentXx.exe /S安装包技术: https://github.com/dotnet-campus/DotNetCampus.Installer/