docs: 同步项目重命名后的架构文档

This commit is contained in:
Scottxjw
2026-08-13 13:29:56 +08:00
parent 645f46abcd
commit 6e197a0cce
19 changed files with 50 additions and 50 deletions

View File

@@ -77,7 +77,7 @@ dotnet run clean --all --confirm
// Commands/ParseCommand.cs
using System.CommandLine;
namespace WCTDataMiner.Commands;
namespace Gpulse.WCT.DataAnalyzer.Commands;
public class ParseCommand : Command
{
@@ -139,7 +139,7 @@ public class ParseCommand : Command
using System.CommandLine;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using WCTDataMiner.Commands;
using Gpulse.WCT.DataAnalyzer.Commands;
var builder = Host.CreateApplicationBuilder(args);
@@ -153,7 +153,7 @@ builder.Services.AddDatabaseServices(builder.Configuration);
var app = builder.Build();
// 创建根命令
var rootCommand = new RootCommand("WCTDataMiner - FOD Log Data Parser");
var rootCommand = new RootCommand("Gpulse.WCT.DataAnalyzer - FOD Log Data Parser");
// 使用服务提供者获取服务
using var scope = app.Services.CreateScope();