Move to file scoped namespaces.

This commit is contained in:
2022-03-06 13:29:38 +00:00
parent b6c3a54955
commit 0bc819feab
1322 changed files with 268651 additions and 270003 deletions

View File

@@ -35,23 +35,22 @@ using System.Collections.Generic;
using Aaru.CommonTypes.Structs;
using Schemas;
namespace Aaru.DiscImages
namespace Aaru.DiscImages;
public sealed partial class Cpcdsk
{
public sealed partial class Cpcdsk
{
/// <inheritdoc />
public ImageInfo Info => _imageInfo;
/// <inheritdoc />
public string Name => "CPCEMU Disk-File and Extended CPC Disk-File";
/// <inheritdoc />
public Guid Id => new Guid("724B16CC-ADB9-492E-BA07-CAEEC1012B16");
/// <inheritdoc />
public string Format => _extended ? "CPCEMU Extended disk image" : "CPCEMU disk image";
/// <inheritdoc />
public string Author => "Natalia Portillo";
/// <inheritdoc />
public List<DumpHardwareType> DumpHardware => null;
/// <inheritdoc />
public CICMMetadataType CicmMetadata => null;
}
/// <inheritdoc />
public ImageInfo Info => _imageInfo;
/// <inheritdoc />
public string Name => "CPCEMU Disk-File and Extended CPC Disk-File";
/// <inheritdoc />
public Guid Id => new Guid("724B16CC-ADB9-492E-BA07-CAEEC1012B16");
/// <inheritdoc />
public string Format => _extended ? "CPCEMU Extended disk image" : "CPCEMU disk image";
/// <inheritdoc />
public string Author => "Natalia Portillo";
/// <inheritdoc />
public List<DumpHardwareType> DumpHardware => null;
/// <inheritdoc />
public CICMMetadataType CicmMetadata => null;
}