2011-03-03 18:34:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-08-04 15:11:36 +00:00
|
|
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2011-03-03 18:34:33 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
|
|
|
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
|
|
|
|
<ProductVersion>9.0.21022</ProductVersion>
|
|
|
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
|
|
|
<ProjectGuid>{7A4B05BE-73C9-4F34-87FE-E80CCF1F732D}</ProjectGuid>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<RootNamespace>FileSystemIDandChk</RootNamespace>
|
|
|
|
|
<AssemblyName>FileSystemIDandChk</AssemblyName>
|
|
|
|
|
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
2012-08-03 01:45:38 +00:00
|
|
|
<DebugSymbols>True</DebugSymbols>
|
2011-03-03 18:34:33 +00:00
|
|
|
<DebugType>full</DebugType>
|
2012-08-03 01:45:38 +00:00
|
|
|
<Optimize>False</Optimize>
|
2011-03-03 18:34:33 +00:00
|
|
|
<OutputPath>bin\Debug</OutputPath>
|
|
|
|
|
<DefineConstants>DEBUG</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
2012-08-03 01:45:38 +00:00
|
|
|
<Externalconsole>True</Externalconsole>
|
2011-03-03 18:34:33 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
|
|
|
|
<DebugType>none</DebugType>
|
2012-08-03 01:45:38 +00:00
|
|
|
<Optimize>False</Optimize>
|
2011-03-03 18:34:33 +00:00
|
|
|
<OutputPath>bin\Release</OutputPath>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
2012-08-03 01:45:38 +00:00
|
|
|
<Externalconsole>True</Externalconsole>
|
2011-03-03 18:34:33 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="System" />
|
2012-08-04 15:11:36 +00:00
|
|
|
<Reference Include="System.Core" />
|
2011-03-03 18:34:33 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="Main.cs" />
|
|
|
|
|
<Compile Include="AssemblyInfo.cs" />
|
|
|
|
|
<Compile Include="Plugins\AppleMFS.cs" />
|
|
|
|
|
<Compile Include="Swapping.cs" />
|
|
|
|
|
<Compile Include="Plugins\Plugin.cs" />
|
|
|
|
|
<Compile Include="Plugins.cs" />
|
|
|
|
|
<Compile Include="Plugins\ISO9660.cs" />
|
|
|
|
|
<Compile Include="Plugins\PCEngine.cs" />
|
|
|
|
|
<Compile Include="Plugins\Opera.cs" />
|
|
|
|
|
<Compile Include="Plugins\AppleHFS.cs" />
|
|
|
|
|
<Compile Include="Plugins\FAT.cs" />
|
|
|
|
|
<Compile Include="PartPlugins\PartPlugin.cs" />
|
|
|
|
|
<Compile Include="PartPlugins\AppleMap.cs" />
|
2011-03-06 00:25:11 +00:00
|
|
|
<Compile Include="Plugins\FFS.cs" />
|
|
|
|
|
<Compile Include="Plugins\AppleHFSPlus.cs" />
|
2011-03-25 10:39:11 +00:00
|
|
|
<Compile Include="PartPlugins\MBR.cs" />
|
2011-03-25 20:45:28 +00:00
|
|
|
<Compile Include="PartPlugins\NeXT.cs" />
|
2011-03-28 13:46:30 +00:00
|
|
|
<Compile Include="Plugins\BFS.cs" />
|
2011-03-28 22:56:20 +00:00
|
|
|
<Compile Include="Plugins\HPFS.cs" />
|
2011-03-29 02:56:27 +00:00
|
|
|
<Compile Include="Plugins\NTFS.cs" />
|
2011-06-02 19:34:47 +00:00
|
|
|
<Compile Include="Plugins\ODS.cs" />
|
2012-08-03 01:45:38 +00:00
|
|
|
<Compile Include="Plugins\Symbian.cs" />
|
|
|
|
|
<Compile Include="Plugins\extFS.cs" />
|
|
|
|
|
<Compile Include="Plugins\ext2FS.cs" />
|
|
|
|
|
<Compile Include="DateHandlers.cs" />
|
2012-08-04 15:11:36 +00:00
|
|
|
<Compile Include="EndianAwareBinaryReader.cs" />
|
2012-08-04 18:20:03 +00:00
|
|
|
<Compile Include="StringHandlers.cs" />
|
2012-08-05 18:13:48 +00:00
|
|
|
<Compile Include="Plugins\MinixFS.cs" />
|
2011-03-03 18:34:33 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Plugins\" />
|
|
|
|
|
<Folder Include="PartPlugins\" />
|
|
|
|
|
</ItemGroup>
|
2012-08-03 01:45:38 +00:00
|
|
|
<ProjectExtensions>
|
|
|
|
|
<MonoDevelop>
|
|
|
|
|
<Properties>
|
|
|
|
|
<Policies>
|
|
|
|
|
<VersionControlPolicy inheritsSet="Mono">
|
|
|
|
|
<CommitMessageStyle Indent=" " LastFilePostfix=":
 " IncludeDirectoryPaths="True" />
|
|
|
|
|
</VersionControlPolicy>
|
|
|
|
|
<ChangeLogPolicy UpdateMode="ProjectRoot" inheritsSet="Mono">
|
|
|
|
|
<MessageStyle LastFilePostfix=":
 " IncludeDirectoryPaths="True" />
|
|
|
|
|
</ChangeLogPolicy>
|
|
|
|
|
</Policies>
|
|
|
|
|
</Properties>
|
|
|
|
|
</MonoDevelop>
|
|
|
|
|
</ProjectExtensions>
|
2011-03-03 18:34:33 +00:00
|
|
|
</Project>
|