mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[CoreRarArchive] Fix windows build
This commit is contained in:
@@ -152,17 +152,17 @@ namespace SabreTools.Library.FileTypes
|
|||||||
|
|
||||||
#region Unimplemented methods
|
#region Unimplemented methods
|
||||||
|
|
||||||
public override bool ExtractAll(string outDir)
|
public override bool CopyAll(string outDir)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public override string ExtractEntry(string entryName, string outDir)
|
public override string CopyToFile(string entryName, string outDir)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
|
|
||||||
public override (MemoryStream, string) ExtractEntryStream(string entryName)
|
public override (MemoryStream, string) CopyToStream(string entryName)
|
||||||
{
|
{
|
||||||
throw new NotImplementedException();
|
throw new NotImplementedException();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -112,39 +112,47 @@
|
|||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Data\Constants.cs" />
|
|
||||||
<Compile Include="Data\Flags.cs" />
|
|
||||||
<Compile Include="Data\Globals.cs" />
|
|
||||||
<Compile Include="DatFiles\AttractMode.cs" />
|
<Compile Include="DatFiles\AttractMode.cs" />
|
||||||
<Compile Include="DatFiles\ClrMamePro.cs" />
|
<Compile Include="DatFiles\ClrMamePro.cs" />
|
||||||
|
<Compile Include="DatFiles\DatFile.cs" />
|
||||||
<Compile Include="DatFiles\DatHeader.cs" />
|
<Compile Include="DatFiles\DatHeader.cs" />
|
||||||
<Compile Include="DatFiles\DatStats.cs" />
|
<Compile Include="DatFiles\DatStats.cs" />
|
||||||
<Compile Include="DatFiles\DosCenter.cs" />
|
<Compile Include="DatFiles\DosCenter.cs" />
|
||||||
<Compile Include="DatFiles\Filter.cs" />
|
<Compile Include="DatFiles\Filter.cs" />
|
||||||
<Compile Include="DatFiles\Hashfile.cs" />
|
<Compile Include="DatFiles\Hashfile.cs" />
|
||||||
<Compile Include="DatFiles\Listrom.cs" />
|
<Compile Include="DatFiles\Listrom.cs" />
|
||||||
<Compile Include="DatFiles\Logiqx.cs" />
|
|
||||||
<Compile Include="DatFiles\Listxml.cs" />
|
<Compile Include="DatFiles\Listxml.cs" />
|
||||||
|
<Compile Include="DatFiles\Logiqx.cs" />
|
||||||
<Compile Include="DatFiles\Missfile.cs" />
|
<Compile Include="DatFiles\Missfile.cs" />
|
||||||
<Compile Include="DatFiles\OfflineList.cs" />
|
<Compile Include="DatFiles\OfflineList.cs" />
|
||||||
<Compile Include="DatFiles\RomCenter.cs" />
|
<Compile Include="DatFiles\RomCenter.cs" />
|
||||||
<Compile Include="DatFiles\SabreDat.cs" />
|
<Compile Include="DatFiles\SabreDat.cs" />
|
||||||
<Compile Include="DatFiles\SeparatedValue.cs" />
|
<Compile Include="DatFiles\SeparatedValue.cs" />
|
||||||
<Compile Include="DatFiles\SoftwareList.cs" />
|
<Compile Include="DatFiles\SoftwareList.cs" />
|
||||||
|
<Compile Include="DatItems\Archive.cs" />
|
||||||
|
<Compile Include="DatItems\BiosSet.cs" />
|
||||||
<Compile Include="DatItems\Blank.cs" />
|
<Compile Include="DatItems\Blank.cs" />
|
||||||
<Compile Include="FileTypes\CHDFile.cs" />
|
<Compile Include="DatItems\DatItem.cs" />
|
||||||
<Compile Include="FileTypes\BaseFile.cs" />
|
<Compile Include="DatItems\Disk.cs" />
|
||||||
<Compile Include="FileTypes\CoreRarArchive.cs" />
|
<Compile Include="DatItems\Machine.cs" />
|
||||||
|
<Compile Include="DatItems\Release.cs" />
|
||||||
|
<Compile Include="DatItems\Rom.cs" />
|
||||||
|
<Compile Include="DatItems\Sample.cs" />
|
||||||
|
<Compile Include="Data\Build.cs" />
|
||||||
|
<Compile Include="Data\Constants.cs" />
|
||||||
|
<Compile Include="Data\Enums.cs" />
|
||||||
|
<Compile Include="Data\Flags.cs" />
|
||||||
|
<Compile Include="Data\Globals.cs" />
|
||||||
<Compile Include="External\NaturalSort\NaturalComparer.cs" />
|
<Compile Include="External\NaturalSort\NaturalComparer.cs" />
|
||||||
<Compile Include="External\NaturalSort\NaturalReversedComparer.cs" />
|
<Compile Include="External\NaturalSort\NaturalReversedComparer.cs" />
|
||||||
<Compile Include="Tools\OptimizedCRC.cs" />
|
<Compile Include="External\SupportedFiles\ZipFile.cs" />
|
||||||
<Compile Include="External\xxHash\xxHash.cs" />
|
<Compile Include="External\SupportedFiles\ZipFileEntry.cs" />
|
||||||
<Compile Include="External\Zlib\CRC32.cs" />
|
<Compile Include="External\Zlib\CRC32.cs" />
|
||||||
<Compile Include="External\Zlib\Deflate.cs" />
|
<Compile Include="External\Zlib\Deflate.cs" />
|
||||||
<Compile Include="External\Zlib\DeflateStream.cs" />
|
<Compile Include="External\Zlib\DeflateStream.cs" />
|
||||||
<Compile Include="External\Zlib\GZipStream.cs" />
|
<Compile Include="External\Zlib\GZipStream.cs" />
|
||||||
<Compile Include="External\Zlib\Inflate.cs" />
|
|
||||||
<Compile Include="External\Zlib\InfTree.cs" />
|
<Compile Include="External\Zlib\InfTree.cs" />
|
||||||
|
<Compile Include="External\Zlib\Inflate.cs" />
|
||||||
<Compile Include="External\Zlib\ParallelDeflateOutputStream.cs" />
|
<Compile Include="External\Zlib\ParallelDeflateOutputStream.cs" />
|
||||||
<Compile Include="External\Zlib\Tree.cs" />
|
<Compile Include="External\Zlib\Tree.cs" />
|
||||||
<Compile Include="External\Zlib\Zlib.cs" />
|
<Compile Include="External\Zlib\Zlib.cs" />
|
||||||
@@ -152,7 +160,11 @@
|
|||||||
<Compile Include="External\Zlib\ZlibCodec.cs" />
|
<Compile Include="External\Zlib\ZlibCodec.cs" />
|
||||||
<Compile Include="External\Zlib\ZlibConstants.cs" />
|
<Compile Include="External\Zlib\ZlibConstants.cs" />
|
||||||
<Compile Include="External\Zlib\ZlibStream.cs" />
|
<Compile Include="External\Zlib\ZlibStream.cs" />
|
||||||
|
<Compile Include="External\xxHash\xxHash.cs" />
|
||||||
<Compile Include="FileTypes\BaseArchive.cs" />
|
<Compile Include="FileTypes\BaseArchive.cs" />
|
||||||
|
<Compile Include="FileTypes\BaseFile.cs" />
|
||||||
|
<Compile Include="FileTypes\CHDFile.cs" />
|
||||||
|
<Compile Include="FileTypes\CoreRarArchive.cs" />
|
||||||
<Compile Include="FileTypes\Folder.cs" />
|
<Compile Include="FileTypes\Folder.cs" />
|
||||||
<Compile Include="FileTypes\GZipArchive.cs" />
|
<Compile Include="FileTypes\GZipArchive.cs" />
|
||||||
<Compile Include="FileTypes\LRZipArchive.cs" />
|
<Compile Include="FileTypes\LRZipArchive.cs" />
|
||||||
@@ -160,36 +172,24 @@
|
|||||||
<Compile Include="FileTypes\RarArchive.cs" />
|
<Compile Include="FileTypes\RarArchive.cs" />
|
||||||
<Compile Include="FileTypes\SevenZipArchive.cs" />
|
<Compile Include="FileTypes\SevenZipArchive.cs" />
|
||||||
<Compile Include="FileTypes\TapeArchive.cs" />
|
<Compile Include="FileTypes\TapeArchive.cs" />
|
||||||
<Compile Include="FileTypes\XZArchive.cs" />
|
|
||||||
<Compile Include="FileTypes\TorrentZipArchive.cs" />
|
<Compile Include="FileTypes\TorrentZipArchive.cs" />
|
||||||
|
<Compile Include="FileTypes\XZArchive.cs" />
|
||||||
<Compile Include="FileTypes\ZPAQArchive.cs" />
|
<Compile Include="FileTypes\ZPAQArchive.cs" />
|
||||||
<Compile Include="FileTypes\ZstdArchive.cs" />
|
<Compile Include="FileTypes\ZstdArchive.cs" />
|
||||||
<Compile Include="DatItems\Archive.cs" />
|
|
||||||
<Compile Include="DatItems\BiosSet.cs" />
|
|
||||||
<Compile Include="DatFiles\DatFile.cs" />
|
|
||||||
<Compile Include="DatItems\DatItem.cs" />
|
|
||||||
<Compile Include="DatItems\Disk.cs" />
|
|
||||||
<Compile Include="DatItems\Machine.cs" />
|
|
||||||
<Compile Include="DatItems\Release.cs" />
|
|
||||||
<Compile Include="DatItems\Sample.cs" />
|
|
||||||
<Compile Include="DatItems\Rom.cs" />
|
|
||||||
<Compile Include="External\SupportedFiles\ZipFileEntry.cs" />
|
|
||||||
<Compile Include="External\SupportedFiles\ZipFile.cs" />
|
|
||||||
<Compile Include="Help\Feature.cs" />
|
<Compile Include="Help\Feature.cs" />
|
||||||
<Compile Include="Help\Help.cs" />
|
<Compile Include="Help\Help.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="Reports\BaseReport.cs" />
|
<Compile Include="Reports\BaseReport.cs" />
|
||||||
<Compile Include="Reports\Html.cs" />
|
<Compile Include="Reports\Html.cs" />
|
||||||
<Compile Include="Reports\SeparatedValue.cs" />
|
<Compile Include="Reports\SeparatedValue.cs" />
|
||||||
<Compile Include="Reports\Textfile.cs" />
|
<Compile Include="Reports\Textfile.cs" />
|
||||||
<Compile Include="Skippers\Skipper.cs" />
|
<Compile Include="Skippers\Skipper.cs" />
|
||||||
<Compile Include="Skippers\SkipperRule.cs" />
|
<Compile Include="Skippers\SkipperRule.cs" />
|
||||||
<Compile Include="Tools\InternalStopwatch.cs" />
|
|
||||||
<Compile Include="Tools\Utilities.cs" />
|
|
||||||
<Compile Include="Tools\DatabaseTools.cs" />
|
<Compile Include="Tools\DatabaseTools.cs" />
|
||||||
<Compile Include="Data\Enums.cs" />
|
<Compile Include="Tools\InternalStopwatch.cs" />
|
||||||
<Compile Include="Tools\Logger.cs" />
|
<Compile Include="Tools\Logger.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Tools\OptimizedCRC.cs" />
|
||||||
<Compile Include="Data\Build.cs" />
|
<Compile Include="Tools\Utilities.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="Licenses\LICENSE">
|
<None Include="Licenses\LICENSE">
|
||||||
|
|||||||
Reference in New Issue
Block a user