- 添加EPPlus NuGet包用于Excel文件处理 - 设计完整的UI界面(文件夹选择、按钮、进度条、日志显示) - 实现Excel文件合并核心逻辑,支持多个xlsx文件合并 - 添加错误处理和进度跟踪功能 - 提供用户友好的操作界面和提示信息 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
384 B
XML
15 lines
384 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="EPPlus" Version="7.5.2" />
|
|
</ItemGroup>
|
|
|
|
</Project> |