This commit is contained in:
2026-03-10 15:43:27 +08:00
parent c65c35e26d
commit 3689739589
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -2,6 +2,8 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>net10.0</TargetFramework> <TargetFramework>net10.0</TargetFramework>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<Authors>Olive Wong</Authors>
<RepositoryUrl>https://github.com/htw128/ExcelTool</RepositoryUrl>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="NPOI" Version="2.7.6" /> <PackageReference Include="NPOI" Version="2.7.6" />
+1 -1
View File
@@ -664,7 +664,7 @@ namespace ExcelTool.Parser
} }
catch (Exception ex) catch (Exception ex)
{ {
ConsoleHelper.WriteErrorLine(ex.ToString()); ex.ToString().WriteErrorLine();
return false; return false;
} }
} }