From 91f03754615fcc25d64b515e96b2ad024ceeda64 Mon Sep 17 00:00:00 2001 From: GeWuYou <95328647+GeWuYou@users.noreply.github.com> Date: Mon, 30 Mar 2026 18:41:52 +0800 Subject: [PATCH] =?UTF-8?q?refactor(tests):=20=E6=9B=B4=E6=96=B0=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E9=A9=B1=E5=8A=A8=E7=A8=8B=E5=BA=8F=E4=BE=9D=E8=B5=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加 Microsoft.CodeAnalysis.CSharp 命名空间引用 - 优化代码结构以支持 C# 语法分析功能 - 提升测试驱动程序的编译器集成能力 --- .../Config/SchemaGeneratorTestDriver.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/GFramework.SourceGenerators.Tests/Config/SchemaGeneratorTestDriver.cs b/GFramework.SourceGenerators.Tests/Config/SchemaGeneratorTestDriver.cs index 0c33647..4da9519 100644 --- a/GFramework.SourceGenerators.Tests/Config/SchemaGeneratorTestDriver.cs +++ b/GFramework.SourceGenerators.Tests/Config/SchemaGeneratorTestDriver.cs @@ -1,6 +1,7 @@ using System.Collections.Immutable; using System.IO; using GFramework.SourceGenerators.Config; +using Microsoft.CodeAnalysis.CSharp; namespace GFramework.SourceGenerators.Tests.Config;