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

28 lines
838 B
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.
<!--
Installer.csproj
Better-Seewo 安装程序项目文件
所属项目Better-Seewo
作者:雾启工作室
说明Better-Seewo 的 WPF 安装向导,提供流畅的安装体验和 Fluent Design 风格界面
-->
<Project Sdk="Microsoft.NET.Sdk">
<!-- 公共构建属性继承自 Directory.Build.props -->
<Import Project="$(SolutionDir)Directory.Build.props" />
<PropertyGroup>
<!-- 程序集名称 -->
<AssemblyName>Better-Seewo.Installer</AssemblyName>
<!-- 输出路径:解决方案目录下的 Output\Installer\ -->
<OutputPath>$(SolutionDir)Output\Installer\</OutputPath>
</PropertyGroup>
<ItemGroup>
<!-- Newtonsoft.JsonJSON 序列化/反序列化库(读取安装配置) -->
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>