(Legacy): certain formats enabled in debug build only.

This commit is contained in:
morkt
2018-01-16 11:56:01 +04:00
parent aa93dabd2d
commit 9388afd54f
14 changed files with 368 additions and 0 deletions

View File

@@ -28,7 +28,9 @@ using System.ComponentModel.Composition;
namespace GameRes.Formats.WestGate
{
#if DEBUG
[Export(typeof(ArchiveFormat))]
#endif
public class UcaOpener : ArchiveFormat
{
public override string Tag { get { return "UCA"; } }

View File

@@ -28,7 +28,9 @@ using System.ComponentModel.Composition;
namespace GameRes.Formats.WestGate
{
#if DEBUG
[Export(typeof(ArchiveFormat))]
#endif
public class UsfOpener : ArchiveFormat
{
public override string Tag { get { return "USF"; } }

View File

@@ -29,7 +29,9 @@ using System.IO;
namespace GameRes.Formats.WestGate
{
#if DEBUG
[Export(typeof(ArchiveFormat))]
#endif
public class UwfOpener : ArchiveFormat
{
public override string Tag { get { return "UWF"; } }