We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2655722 commit 8f09cf8Copy full SHA for 8f09cf8
2 files changed
.github/workflows/release.yml
@@ -91,7 +91,7 @@ jobs:
91
}
92
$releaseData = @{
93
"tag_name" = $env:TAG_NAME
94
- "name" = "Release $env:TAG_NAME"
+ "name" = "$env:TAG_NAME"
95
"draft" = $false
96
"prerelease" = $false
97
ServiceInjection.SourceGenerators/ServiceInjectionGenerator.cs
@@ -5,11 +5,11 @@ namespace CodeIX.ServiceInjection.SourceGenerators;
5
[Generator]
6
public class ServiceInjectionGenerator : ISourceGenerator
7
{
8
- private readonly InjectionAnalyzer _injectionAnalyzer = new();
+ private InjectionAnalyzer _injectionAnalyzer;
9
10
public void Initialize(GeneratorInitializationContext context)
11
12
- // No initialization required
+ _injectionAnalyzer = new InjectionAnalyzer();
13
14
15
public void Execute(GeneratorExecutionContext context)
0 commit comments