Files
Better-Seewo/Directory.Build.props
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

32 lines
1.0 KiB
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.
<!--
Directory.Build.props - Better-Seewo 公共构建属性
此文件会被仓库中所有 .csproj 项目自动导入,统一管理构建配置。
-->
<Project>
<!-- ===== 作者与产品信息 ===== -->
<PropertyGroup>
<!-- 作者名称 -->
<Authors>雾启工作室</Authors>
<!-- 产品名称 -->
<Product>Better-Seewo</Product>
<!-- 版本号 -->
<Version>2.0.0</Version>
<!-- 产品描述 -->
<Description>雾生万象,启以为光 -- 希沃白板功能增强插件</Description>
</PropertyGroup>
<!-- ===== 框架与输出配置 ===== -->
<PropertyGroup>
<!-- 目标框架:.NET 6.0 (Windows) -->
<TargetFramework>net6.0-windows</TargetFramework>
<!-- 启用 WPF 支持 -->
<UseWPF>true</UseWPF>
<!-- 输出类型Windows 可执行文件 -->
<OutputType>WinExe</OutputType>
<!-- 根命名空间 -->
<RootNamespace>Better_Seewo</RootNamespace>
<!-- 允许不安全代码块 -->
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
</Project>