修改最终生成文件的名称

This commit is contained in:
Dong 2025-05-12 02:08:32 +08:00
parent d7fd841906
commit 0c535c707e

View File

@ -208,7 +208,7 @@ namespace MD5Create
// 序列化和保存JSON
string json = JsonConvert.SerializeObject(versionedStructure, Newtonsoft.Json.Formatting.Indented);
string jsonMD5 = CalculateMD5FromString(json);
string outputPath = Path.Combine(md5FolderPath, $"{jsonMD5}.json");
string outputPath = Path.Combine(md5FolderPath, "md5.json");
File.WriteAllText(outputPath, json);
// 最终更新