Files
Better-Seewo/Installer/Installer.csproj

28 lines
838 B
XML
Raw Normal View History

<!--
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>