Upgrade to .NET 6.

This commit is contained in:
2021-09-12 22:25:59 +01:00
parent 9f30ed44cb
commit ebd29840fe
36 changed files with 568 additions and 558 deletions

View File

@@ -112,7 +112,7 @@ namespace Aaru.Filesystems.LisaFS
return error;
int offset = 0;
List<CatalogEntryV2> catalogV2 = new List<CatalogEntryV2>();
List<CatalogEntryV2> catalogV2 = new();
// For each entry on the catalog
while(offset + 54 < buf.Length)
@@ -206,7 +206,7 @@ namespace Aaru.Filesystems.LisaFS
ulong nextCatalogPointer = BigEndianBitConverter.ToUInt32(firstCatalogBlock, 0x7FA);
List<byte[]> catalogBlocks = new List<byte[]>
List<byte[]> catalogBlocks = new()
{
firstCatalogBlock
};