Skip to content

Commit

Permalink
Workaround for Rider: CodeAnalysis 4.2.0 + SharedAttribute break the …
Browse files Browse the repository at this point in the history
…analyzer and the codefix
  • Loading branch information
PawelGerr committed Aug 17, 2022
1 parent 7323ada commit 9ad8a32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Copyright>(c) $([System.DateTime]::Now.Year), Pawel Gerr. All rights reserved.</Copyright>
<VersionPrefix>4.3.2</VersionPrefix>
<VersionPrefix>4.3.3</VersionPrefix>
<Authors>Pawel Gerr</Authors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageProjectUrl>https://github.com/PawelGerr/Thinktecture.Runtime.Extensions</PackageProjectUrl>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Collections.Immutable;
using System.Composition;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CodeActions;
using Microsoft.CodeAnalysis.CodeFixes;
Expand All @@ -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";
Expand Down

0 comments on commit 9ad8a32

Please sign in to comment.