Files
Better-Seewo/Installer/Installer.csproj
miao-moe bb0c8832a0 feat: 新增一键构建脚本 (v2.0.1)
- 添加 build.ps1 PowerShell 构建脚本
- 添加 build.bat 批处理入口(双击一键构建)
- 支持 Debug/Release 配置切换
- 支持自包含模式发布
- 自动检测 .NET SDK、清理输出、编译打包
2026-06-28 07:14:37 +00:00

31 lines
954 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.
<!--
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>
<!-- 启用 Windows Forms 支持(文件夹浏览对话框) -->
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
<ItemGroup>
<!-- Newtonsoft.JsonJSON 序列化/反序列化库(读取安装配置) -->
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>