Files
Better-Seewo/Manager/Manager.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

31 lines
998 B
XML
Raw 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.
<!--
Manager.csproj
Better-Seewo 管理器项目文件
所属项目Better-Seewo
作者:雾启工作室
说明Better-Seewo 的 WPF 管理器应用,提供插件安装、墨迹管理、格式转换、触摸优化和激活管理功能
-->
<Project Sdk="Microsoft.NET.Sdk">
<!-- 公共构建属性继承自 Directory.Build.props -->
<Import Project="$(SolutionDir)Directory.Build.props" />
<PropertyGroup>
<!-- 程序集名称 -->
<AssemblyName>Better-Seewo.Manager</AssemblyName>
<!-- 输出路径:解决方案目录下的 Output\Manager\ -->
<OutputPath>$(SolutionDir)Output\Manager\</OutputPath>
</PropertyGroup>
<ItemGroup>
<!-- Newtonsoft.JsonJSON 序列化/反序列化库 -->
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<!-- DocumentFormat.OpenXmlOffice 文档处理库PPTX/ENBX 格式转换) -->
<PackageReference Include="DocumentFormat.OpenXml" Version="2.20.0" />
</ItemGroup>
</Project>