fix: Updates schema generator to 2.6.4 (#1452)

This commit is contained in:
Kamron Batman 2023-08-11 00:09:56 -07:00 committed by GitHub
parent 09fc30546b
commit 455b11de9c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 12 additions and 12 deletions

View file

@ -26,11 +26,9 @@ public partial class MobileMod
[SerializableField(0)]
private string _name;
public MobileMod(Mobile owner) => Owner = owner;
public MobileMod(Mobile owner, string name)
public MobileMod(Mobile owner, string name = null)
{
Owner = owner;
Name = name;
_name = name;
}
}

View file

@ -38,7 +38,7 @@
<PackageReference Include="Zlib.Bindings" Version="1.11.0" />
<PackageReference Include="ModernUO.Serialization.Annotations" Version="2.6.0" />
<PackageReference Include="ModernUO.Serialization.Generator" Version="2.6.2" />
<PackageReference Include="ModernUO.Serialization.Generator" Version="2.6.4" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="Migrations/*.v*.json" />