From d1abb1835c87c5497b380a568dffc443923a09b3 Mon Sep 17 00:00:00 2001 From: hadashiA Date: Fri, 15 Dec 2023 16:01:25 +0900 Subject: [PATCH] Fix compilation errros in CodeAnalysis.CSharp 4.3.0 --- src/ZLogger.Generator/ZLoggerGenerator.Parser.cs | 1 + src/ZLogger.Generator/ZLoggerGenerator.cs | 1 + 2 files changed, 2 insertions(+) diff --git a/src/ZLogger.Generator/ZLoggerGenerator.Parser.cs b/src/ZLogger.Generator/ZLoggerGenerator.Parser.cs index 82e00b5d..12c841c7 100644 --- a/src/ZLogger.Generator/ZLoggerGenerator.Parser.cs +++ b/src/ZLogger.Generator/ZLoggerGenerator.Parser.cs @@ -3,6 +3,7 @@ using Microsoft.CodeAnalysis.CSharp.Syntax; using System.Collections.Immutable; using Microsoft.CodeAnalysis.DotnetRuntime.Extensions; +using GeneratorAttributeSyntaxContext = Microsoft.CodeAnalysis.DotnetRuntime.Extensions.GeneratorAttributeSyntaxContext; namespace ZLogger.Generator; diff --git a/src/ZLogger.Generator/ZLoggerGenerator.cs b/src/ZLogger.Generator/ZLoggerGenerator.cs index 2da548e5..d03e98bd 100644 --- a/src/ZLogger.Generator/ZLoggerGenerator.cs +++ b/src/ZLogger.Generator/ZLoggerGenerator.cs @@ -2,6 +2,7 @@ using Microsoft.CodeAnalysis.CSharp.Syntax; using System.Collections.Immutable; using Microsoft.CodeAnalysis.DotnetRuntime.Extensions; +using GeneratorAttributeSyntaxContext = Microsoft.CodeAnalysis.DotnetRuntime.Extensions.GeneratorAttributeSyntaxContext; namespace ZLogger.Generator;