diff --git a/DiscImageChef.sln b/DiscImageChef.sln index 284a3c30..5df9d2d2 100644 --- a/DiscImageChef.sln +++ b/DiscImageChef.sln @@ -1,7 +1,7 @@  Microsoft Visual Studio Solution File, Format Version 11.00 # Visual Studio 2010 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DiscImageChef", "FileSystemIDandChk\DiscImageChef.csproj", "{7A4B05BE-73C9-4F34-87FE-E80CCF1F732D}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DiscImageChef", "DiscImageChef\DiscImageChef.csproj", "{7A4B05BE-73C9-4F34-87FE-E80CCF1F732D}" EndProject Project("{9344BDBB-3E7F-41FC-A0DD-8665D75EE146}") = "Packages", "Packages.mdproj", "{8996EF59-09B9-4920-A3DE-2F8EA2EBBCFF}" EndProject @@ -19,7 +19,7 @@ Global {8996EF59-09B9-4920-A3DE-2F8EA2EBBCFF}.Release|x86.ActiveCfg = Release|Any CPU EndGlobalSection GlobalSection(MonoDevelopProperties) = preSolution - StartupItem = FileSystemIDandChk\DiscImageChef.csproj + StartupItem = DiscImageChef\DiscImageChef.csproj description = The Disc Image Chef. version = 1.10 EndGlobalSection diff --git a/FileSystemIDandChk/ArrayFill.cs b/DiscImageChef/ArrayFill.cs similarity index 100% rename from FileSystemIDandChk/ArrayFill.cs rename to DiscImageChef/ArrayFill.cs diff --git a/FileSystemIDandChk/AssemblyInfo.cs b/DiscImageChef/AssemblyInfo.cs similarity index 100% rename from FileSystemIDandChk/AssemblyInfo.cs rename to DiscImageChef/AssemblyInfo.cs diff --git a/FileSystemIDandChk/BigEndianBitConverter.cs b/DiscImageChef/BigEndianBitConverter.cs similarity index 100% rename from FileSystemIDandChk/BigEndianBitConverter.cs rename to DiscImageChef/BigEndianBitConverter.cs diff --git a/FileSystemIDandChk/ChangeLog b/DiscImageChef/ChangeLog similarity index 100% rename from FileSystemIDandChk/ChangeLog rename to DiscImageChef/ChangeLog diff --git a/FileSystemIDandChk/DateHandlers.cs b/DiscImageChef/DateHandlers.cs similarity index 100% rename from FileSystemIDandChk/DateHandlers.cs rename to DiscImageChef/DateHandlers.cs diff --git a/FileSystemIDandChk/DiscImageChef.csproj b/DiscImageChef/DiscImageChef.csproj similarity index 100% rename from FileSystemIDandChk/DiscImageChef.csproj rename to DiscImageChef/DiscImageChef.csproj diff --git a/FileSystemIDandChk/EndianAwareBinaryReader.cs b/DiscImageChef/EndianAwareBinaryReader.cs similarity index 100% rename from FileSystemIDandChk/EndianAwareBinaryReader.cs rename to DiscImageChef/EndianAwareBinaryReader.cs diff --git a/FileSystemIDandChk/ImagePlugins/CDRWin.cs b/DiscImageChef/ImagePlugins/CDRWin.cs similarity index 100% rename from FileSystemIDandChk/ImagePlugins/CDRWin.cs rename to DiscImageChef/ImagePlugins/CDRWin.cs diff --git a/FileSystemIDandChk/ImagePlugins/DiskCopy42.cs b/DiscImageChef/ImagePlugins/DiskCopy42.cs similarity index 100% rename from FileSystemIDandChk/ImagePlugins/DiskCopy42.cs rename to DiscImageChef/ImagePlugins/DiskCopy42.cs diff --git a/FileSystemIDandChk/ImagePlugins/ImagePlugin.cs b/DiscImageChef/ImagePlugins/ImagePlugin.cs similarity index 100% rename from FileSystemIDandChk/ImagePlugins/ImagePlugin.cs rename to DiscImageChef/ImagePlugins/ImagePlugin.cs diff --git a/FileSystemIDandChk/ImagePlugins/TeleDisk.cs b/DiscImageChef/ImagePlugins/TeleDisk.cs similarity index 100% rename from FileSystemIDandChk/ImagePlugins/TeleDisk.cs rename to DiscImageChef/ImagePlugins/TeleDisk.cs diff --git a/FileSystemIDandChk/ImagePlugins/ZZZRawImage.cs b/DiscImageChef/ImagePlugins/ZZZRawImage.cs similarity index 100% rename from FileSystemIDandChk/ImagePlugins/ZZZRawImage.cs rename to DiscImageChef/ImagePlugins/ZZZRawImage.cs diff --git a/FileSystemIDandChk/LICENSE b/DiscImageChef/LICENSE similarity index 100% rename from FileSystemIDandChk/LICENSE rename to DiscImageChef/LICENSE diff --git a/FileSystemIDandChk/Main.cs b/DiscImageChef/Main.cs similarity index 100% rename from FileSystemIDandChk/Main.cs rename to DiscImageChef/Main.cs diff --git a/FileSystemIDandChk/PartPlugins/AppleMap.cs b/DiscImageChef/PartPlugins/AppleMap.cs similarity index 100% rename from FileSystemIDandChk/PartPlugins/AppleMap.cs rename to DiscImageChef/PartPlugins/AppleMap.cs diff --git a/FileSystemIDandChk/PartPlugins/MBR.cs b/DiscImageChef/PartPlugins/MBR.cs similarity index 100% rename from FileSystemIDandChk/PartPlugins/MBR.cs rename to DiscImageChef/PartPlugins/MBR.cs diff --git a/FileSystemIDandChk/PartPlugins/NeXT.cs b/DiscImageChef/PartPlugins/NeXT.cs similarity index 100% rename from FileSystemIDandChk/PartPlugins/NeXT.cs rename to DiscImageChef/PartPlugins/NeXT.cs diff --git a/FileSystemIDandChk/PartPlugins/PartPlugin.cs b/DiscImageChef/PartPlugins/PartPlugin.cs similarity index 100% rename from FileSystemIDandChk/PartPlugins/PartPlugin.cs rename to DiscImageChef/PartPlugins/PartPlugin.cs diff --git a/FileSystemIDandChk/Plugins.cs b/DiscImageChef/Plugins.cs similarity index 100% rename from FileSystemIDandChk/Plugins.cs rename to DiscImageChef/Plugins.cs diff --git a/FileSystemIDandChk/Plugins/AppleHFS.cs b/DiscImageChef/Plugins/AppleHFS.cs similarity index 100% rename from FileSystemIDandChk/Plugins/AppleHFS.cs rename to DiscImageChef/Plugins/AppleHFS.cs diff --git a/FileSystemIDandChk/Plugins/AppleHFSPlus.cs b/DiscImageChef/Plugins/AppleHFSPlus.cs similarity index 100% rename from FileSystemIDandChk/Plugins/AppleHFSPlus.cs rename to DiscImageChef/Plugins/AppleHFSPlus.cs diff --git a/FileSystemIDandChk/Plugins/AppleMFS.cs b/DiscImageChef/Plugins/AppleMFS.cs similarity index 100% rename from FileSystemIDandChk/Plugins/AppleMFS.cs rename to DiscImageChef/Plugins/AppleMFS.cs diff --git a/FileSystemIDandChk/Plugins/BFS.cs b/DiscImageChef/Plugins/BFS.cs similarity index 100% rename from FileSystemIDandChk/Plugins/BFS.cs rename to DiscImageChef/Plugins/BFS.cs diff --git a/FileSystemIDandChk/Plugins/FAT.cs b/DiscImageChef/Plugins/FAT.cs similarity index 100% rename from FileSystemIDandChk/Plugins/FAT.cs rename to DiscImageChef/Plugins/FAT.cs diff --git a/FileSystemIDandChk/Plugins/FFS.cs b/DiscImageChef/Plugins/FFS.cs similarity index 100% rename from FileSystemIDandChk/Plugins/FFS.cs rename to DiscImageChef/Plugins/FFS.cs diff --git a/FileSystemIDandChk/Plugins/HPFS.cs b/DiscImageChef/Plugins/HPFS.cs similarity index 100% rename from FileSystemIDandChk/Plugins/HPFS.cs rename to DiscImageChef/Plugins/HPFS.cs diff --git a/FileSystemIDandChk/Plugins/ISO9660.cs b/DiscImageChef/Plugins/ISO9660.cs similarity index 100% rename from FileSystemIDandChk/Plugins/ISO9660.cs rename to DiscImageChef/Plugins/ISO9660.cs diff --git a/FileSystemIDandChk/Plugins/LisaFS.cs b/DiscImageChef/Plugins/LisaFS.cs similarity index 100% rename from FileSystemIDandChk/Plugins/LisaFS.cs rename to DiscImageChef/Plugins/LisaFS.cs diff --git a/FileSystemIDandChk/Plugins/MinixFS.cs b/DiscImageChef/Plugins/MinixFS.cs similarity index 100% rename from FileSystemIDandChk/Plugins/MinixFS.cs rename to DiscImageChef/Plugins/MinixFS.cs diff --git a/FileSystemIDandChk/Plugins/NTFS.cs b/DiscImageChef/Plugins/NTFS.cs similarity index 100% rename from FileSystemIDandChk/Plugins/NTFS.cs rename to DiscImageChef/Plugins/NTFS.cs diff --git a/FileSystemIDandChk/Plugins/ODS.cs b/DiscImageChef/Plugins/ODS.cs similarity index 100% rename from FileSystemIDandChk/Plugins/ODS.cs rename to DiscImageChef/Plugins/ODS.cs diff --git a/FileSystemIDandChk/Plugins/Opera.cs b/DiscImageChef/Plugins/Opera.cs similarity index 100% rename from FileSystemIDandChk/Plugins/Opera.cs rename to DiscImageChef/Plugins/Opera.cs diff --git a/FileSystemIDandChk/Plugins/PCEngine.cs b/DiscImageChef/Plugins/PCEngine.cs similarity index 100% rename from FileSystemIDandChk/Plugins/PCEngine.cs rename to DiscImageChef/Plugins/PCEngine.cs diff --git a/FileSystemIDandChk/Plugins/Plugin.cs b/DiscImageChef/Plugins/Plugin.cs similarity index 100% rename from FileSystemIDandChk/Plugins/Plugin.cs rename to DiscImageChef/Plugins/Plugin.cs diff --git a/FileSystemIDandChk/Plugins/SolarFS.cs b/DiscImageChef/Plugins/SolarFS.cs similarity index 100% rename from FileSystemIDandChk/Plugins/SolarFS.cs rename to DiscImageChef/Plugins/SolarFS.cs diff --git a/FileSystemIDandChk/Plugins/Symbian.cs b/DiscImageChef/Plugins/Symbian.cs similarity index 100% rename from FileSystemIDandChk/Plugins/Symbian.cs rename to DiscImageChef/Plugins/Symbian.cs diff --git a/FileSystemIDandChk/Plugins/SysV.cs b/DiscImageChef/Plugins/SysV.cs similarity index 100% rename from FileSystemIDandChk/Plugins/SysV.cs rename to DiscImageChef/Plugins/SysV.cs diff --git a/FileSystemIDandChk/Plugins/UNIXBFS.cs b/DiscImageChef/Plugins/UNIXBFS.cs similarity index 100% rename from FileSystemIDandChk/Plugins/UNIXBFS.cs rename to DiscImageChef/Plugins/UNIXBFS.cs diff --git a/FileSystemIDandChk/Plugins/ext2FS.cs b/DiscImageChef/Plugins/ext2FS.cs similarity index 100% rename from FileSystemIDandChk/Plugins/ext2FS.cs rename to DiscImageChef/Plugins/ext2FS.cs diff --git a/FileSystemIDandChk/Plugins/extFS.cs b/DiscImageChef/Plugins/extFS.cs similarity index 100% rename from FileSystemIDandChk/Plugins/extFS.cs rename to DiscImageChef/Plugins/extFS.cs diff --git a/FileSystemIDandChk/PrintHex.cs b/DiscImageChef/PrintHex.cs similarity index 100% rename from FileSystemIDandChk/PrintHex.cs rename to DiscImageChef/PrintHex.cs diff --git a/FileSystemIDandChk/README.md b/DiscImageChef/README.md similarity index 100% rename from FileSystemIDandChk/README.md rename to DiscImageChef/README.md diff --git a/FileSystemIDandChk/StringHandlers.cs b/DiscImageChef/StringHandlers.cs similarity index 100% rename from FileSystemIDandChk/StringHandlers.cs rename to DiscImageChef/StringHandlers.cs diff --git a/FileSystemIDandChk/Swapping.cs b/DiscImageChef/Swapping.cs similarity index 100% rename from FileSystemIDandChk/Swapping.cs rename to DiscImageChef/Swapping.cs diff --git a/FileSystemIDandChk/TODO b/DiscImageChef/TODO similarity index 100% rename from FileSystemIDandChk/TODO rename to DiscImageChef/TODO