diff --git a/Directory.Build.props b/Directory.Build.props index 835d773a..9a3c97d0 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -2,7 +2,7 @@ (c) $([System.DateTime]::Now.Year), Pawel Gerr. All rights reserved. - 4.3.2 + 4.3.3 Pawel Gerr true https://github.com/PawelGerr/Thinktecture.Runtime.Extensions diff --git a/src/Thinktecture.Runtime.Extensions.SourceGenerator/CodeAnalysis/CodeFixes/ThinktectureRuntimeExtensionsCodeFixProvider.cs b/src/Thinktecture.Runtime.Extensions.SourceGenerator/CodeAnalysis/CodeFixes/ThinktectureRuntimeExtensionsCodeFixProvider.cs index b3c3df14..2807b9df 100644 --- a/src/Thinktecture.Runtime.Extensions.SourceGenerator/CodeAnalysis/CodeFixes/ThinktectureRuntimeExtensionsCodeFixProvider.cs +++ b/src/Thinktecture.Runtime.Extensions.SourceGenerator/CodeAnalysis/CodeFixes/ThinktectureRuntimeExtensionsCodeFixProvider.cs @@ -1,5 +1,4 @@ using System.Collections.Immutable; -using System.Composition; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CodeActions; using Microsoft.CodeAnalysis.CodeFixes; @@ -8,7 +7,7 @@ namespace Thinktecture.CodeAnalysis.CodeFixes; -[ExportCodeFixProvider(LanguageNames.CSharp, Name = nameof(ThinktectureRuntimeExtensionsCodeFixProvider)), Shared] +[ExportCodeFixProvider(LanguageNames.CSharp, Name = nameof(ThinktectureRuntimeExtensionsCodeFixProvider))] public class ThinktectureRuntimeExtensionsCodeFixProvider : CodeFixProvider { private const string _MAKE_PARTIAL = "Make the type partial";