WorkCamera/client/WorkCameraExport/WorkCameraExport.csproj
2026-01-05 23:58:56 +08:00

44 lines
1.3 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<!-- 单文件发布配置 -->
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishReadyToRun>true</PublishReadyToRun>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<!-- 应用程序信息 -->
<AssemblyTitle>随工水印相机导出工具</AssemblyTitle>
<Product>WorkCameraExport</Product>
<Company>MiaoYu</Company>
<Version>2.0.0</Version>
</PropertyGroup>
<ItemGroup>
<!-- Excel 生成 -->
<PackageReference Include="EPPlus" Version="7.0.10" />
<!-- 图片处理 -->
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.5" />
<!-- HTTP 客户端 -->
<PackageReference Include="System.Net.Http.Json" Version="8.0.0" />
<!-- JSON 序列化 -->
<PackageReference Include="System.Text.Json" Version="8.0.4" />
<!-- 腾讯云 COS SDK -->
<PackageReference Include="Tencent.QCloud.Cos.Sdk" Version="5.4.42" />
</ItemGroup>
</Project>