Skip to content

Commit 83eb160

Browse files
committed
More bugfixes
1 parent efc72c4 commit 83eb160

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

nuget/Sqlite_net.SourceGenerator/SQLiteFastColumnSetterGenerator.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,10 @@ static SQLiteFastColumnSetterGenerator ()
2525
"MaxLength",
2626
"Collation",
2727
"NotNull",
28-
"StoreAsText"
28+
"StoreAsText",
29+
"AutoIncrement",
30+
"PrimaryKey",
31+
"NotNull"
2932
};
3033

3134
SQLitePropertyFullAttributes = SQLitePropertyAttributes.Select (f => f + "Attribute").ToImmutableHashSet();
@@ -34,7 +37,7 @@ static SQLiteFastColumnSetterGenerator ()
3437
public void Initialize(IncrementalGeneratorInitializationContext context)
3538
{
3639
// Launch Debugger for Debugging the Analyzer
37-
// System.Diagnostics.Debugger.Launch();
40+
System.Diagnostics.Debugger.Launch();
3841

3942
// Find all classes with TableAttribute or properties with ColumnAttribute
4043
var classDeclarations = context.SyntaxProvider

0 commit comments

Comments
 (0)