fix: Fixes timer migrations not compiling (#902)
This commit is contained in:
parent
d0aa6320f7
commit
5019ce9694
15 changed files with 1273 additions and 1209 deletions
|
|
@ -23,6 +23,13 @@ namespace SerializableMigration
|
|||
{
|
||||
string RuleName { get; }
|
||||
|
||||
void GenerateMigrationProperty(
|
||||
StringBuilder source,
|
||||
Compilation compilation,
|
||||
string indent,
|
||||
SerializableProperty serializableProperty
|
||||
);
|
||||
|
||||
bool GenerateRuleState(
|
||||
Compilation compilation,
|
||||
ISymbol symbol,
|
||||
|
|
@ -37,7 +44,8 @@ namespace SerializableMigration
|
|||
StringBuilder source,
|
||||
string indent,
|
||||
SerializableProperty property,
|
||||
string? parentReference
|
||||
string? parentReference,
|
||||
bool isMigration = false
|
||||
);
|
||||
|
||||
void GenerateSerializationMethod(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue