Files
Better-Seewo/Better-EN5/Better-EN5.csproj
miao-moe 8dd1eed519 feat: Better-Seewo v2.0.0 - 希沃白板功能增强插件
- Fluent Design 风格 UI,深色/浅色主题切换
- 平滑过渡动画(页面切换、按钮交互、状态变化)
- 五大核心功能:安装管理、墨迹管理、格式转换、触摸设置、激活管理
- 基于 dotnetCampus.EasiPlugin.Sdk v2.1.1-alpha.3 插件框架
- WPF 安装向导(欢迎页 -> 安装页 -> 完成页)
2026-06-28 06:51:35 +00:00

37 lines
1.3 KiB
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
Better-EN5.csproj
希沃白板 EN5 增强插件项目文件
所属项目Better-Seewo
作者:雾启工作室
说明:基于 EasiPlugin SDK 的希沃白板 EN5 功能增强插件,提供墨迹导入导出和管理器启动功能
-->
<Project Sdk="Microsoft.NET.Sdk">
<!-- 公共构建属性继承自 Directory.Build.props -->
<Import Project="$(SolutionDir)Directory.Build.props" />
<PropertyGroup>
<!-- 程序集名称 -->
<AssemblyName>Better-EN5</AssemblyName>
<!-- 输出路径:解决方案目录下的 Output\Plugins\Better-EN5\ -->
<OutputPath>$(SolutionDir)Output\Plugins\Better-EN5\</OutputPath>
<!-- 项目类型标识EasiPlugin希沃白板插件 -->
<ProjectTypeGuids>{EasiPlugin}</ProjectTypeGuids>
</PropertyGroup>
<ItemGroup>
<!-- EasiPlugin SDK希沃白板插件开发框架私有源 -->
<PackageReference Include="dotnetCampus.EasiPlugin.Sdk" Version="2.1.1-alpha.3" />
<!-- Newtonsoft.JsonJSON 序列化/反序列化库 -->
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<!-- DocumentFormat.OpenXmlOffice 文档处理库PPTX/ENBX 格式转换) -->
<PackageReference Include="DocumentFormat.OpenXml" Version="2.20.0" />
</ItemGroup>
</Project>