Skip to content

Commit 485fdc4

Browse files
committed
Make deconstruct extension public
1 parent 1e117eb commit 485fdc4

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Antelcat.AutoGen.SourceGenerators/Generators/AutoDeconstructGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ p is
7979
NamespaceDeclaration(ParseName(attr.Namespace))
8080
.AddMembers(
8181
ClassDeclaration("DeconstructIndexableExtension")
82-
.AddModifiers(SyntaxKind.StaticKeyword, SyntaxKind.PartialKeyword)
82+
.AddModifiers(SyntaxKind.PublicKeyword, SyntaxKind.StaticKeyword, SyntaxKind.PartialKeyword)
8383
.AddMembers(
8484
[
8585
..Deconstructs(global + typeof(IList<>).QualifiedFullName(),

src/Antelcat.AutoGen/Antelcat.AutoGen.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<IsPackable>true</IsPackable>
88
<LangVersion>preview</LangVersion>
99

10-
<Version>1.0.0</Version>
10+
<Version>1.0.1</Version>
1111
<FileVersion>1.0.0</FileVersion>
1212
<AssemblyVersion>1.0.0</AssemblyVersion>
1313

0 commit comments

Comments
 (0)