Click here to Skip to main content
15,891,253 members
Articles / Programming Languages / C#

Dual Pane File Manager

Rate me:
Please Sign up or sign in to vote.
4.64/5 (28 votes)
21 Dec 2010CPOL8 min read 140.7K   2.3K   119  
A dual pane file manager for Windows XP.
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>9.0.30729</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{EA30DD35-1F41-440D-9E31-67C0626E16A2}</ProjectGuid>
    <OutputType>WinExe</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>JGFileManager50</RootNamespace>
    <AssemblyName>JFileManager50</AssemblyName>
    <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
    <ApplicationIcon>Filer.ICO</ApplicationIcon>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>bin\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>bin\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
    <DebugSymbols>true</DebugSymbols>
    <OutputPath>bin\x86\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <DebugType>full</DebugType>
    <PlatformTarget>x86</PlatformTarget>
    <ErrorReport>prompt</ErrorReport>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
    <OutputPath>bin\x86\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <Optimize>true</Optimize>
    <DebugType>pdbonly</DebugType>
    <PlatformTarget>x86</PlatformTarget>
    <ErrorReport>prompt</ErrorReport>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Data" />
    <Reference Include="System.Deployment" />
    <Reference Include="System.Drawing" />
    <Reference Include="System.Windows.Forms" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="FormFileManager.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="FormFileManager.Designer.cs">
      <DependentUpon>FormFileManager.cs</DependentUpon>
    </Compile>
    <Compile Include="Links\JGAboutBox\JAboutBox.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Links\JGAboutBox\JAboutBox.designer.cs">
      <DependentUpon>JAboutBox.cs</DependentUpon>
    </Compile>
    <Compile Include="Links\JGBaseForm\JBaseForm.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Links\JGBaseForm\JBaseForm.Designer.cs">
      <DependentUpon>JBaseForm.cs</DependentUpon>
    </Compile>
    <Compile Include="Links\JGBaseTreeView\JTreeViewBase.cs">
      <SubType>Component</SubType>
    </Compile>
    <Compile Include="Links\JGCrumbBar\JCrumbBar.cs">
      <SubType>UserControl</SubType>
    </Compile>
    <Compile Include="Links\JGCrumbBar\JCrumbBar.designer.cs">
      <DependentUpon>JCrumbBar.cs</DependentUpon>
    </Compile>
    <Compile Include="Links\JGCrumbBar\JCrumbLabel.cs">
      <SubType>UserControl</SubType>
    </Compile>
    <Compile Include="Links\JGCrumbBar\JCrumbLabel.Designer.cs">
      <DependentUpon>JCrumbLabel.cs</DependentUpon>
    </Compile>
    <Compile Include="Links\JGFavourites\FormMaintainFavourites.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Links\JGFavourites\FormMaintainFavourites.designer.cs">
      <DependentUpon>FormMaintainFavourites.cs</DependentUpon>
    </Compile>
    <Compile Include="Links\JGFavourites\JFavourites.cs" />
    <Compile Include="Links\JGFSControls\JContextMenu.cs" />
    <Compile Include="Links\JGFSControls\JDriveData.cs" />
    <Compile Include="Links\JGFSControls\JDropFiles.cs" />
    <Compile Include="Links\JGFSControls\JFilerPanel.cs">
      <SubType>UserControl</SubType>
    </Compile>
    <Compile Include="Links\JGFSControls\JFilerPanel.designer.cs">
      <DependentUpon>JFilerPanel.cs</DependentUpon>
    </Compile>
    <Compile Include="Links\JGFSControls\JListViewFS.cs">
      <SubType>Component</SubType>
    </Compile>
    <Compile Include="Links\JGFSControls\JListViewItemFS.cs" />
    <Compile Include="Links\JGFSControls\JListViewSorterFS.cs" />
    <Compile Include="Links\JGFSControls\JPathBar.cs">
      <SubType>UserControl</SubType>
    </Compile>
    <Compile Include="Links\JGFSControls\JPathBar.designer.cs">
      <DependentUpon>JPathBar.cs</DependentUpon>
    </Compile>
    <Compile Include="Links\JGFSControls\JTreeNodeFS.cs" />
    <Compile Include="Links\JGFSControls\JTreeViewFS.cs">
      <SubType>Component</SubType>
    </Compile>
    <Compile Include="Links\JGInputBox\JInputBox.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="Links\JGInputBox\JInputBox.designer.cs">
      <DependentUpon>JInputBox.cs</DependentUpon>
    </Compile>
    <Compile Include="Links\JGLibrary\JDelegates.cs" />
    <Compile Include="Links\JGLibrary\JDll.cs" />
    <Compile Include="Links\JGLibrary\JEnums.cs" />
    <Compile Include="Links\JGLibrary\JGStructs.cs" />
    <Compile Include="Links\JGLibrary\JInterfaces.cs" />
    <Compile Include="Links\JGLibrary\JLibrary.cs" />
    <Compile Include="Program.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
    <EmbeddedResource Include="FormFileManager.resx">
      <DependentUpon>FormFileManager.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Links\JGAboutBox\JAboutBox.resx">
      <DependentUpon>JAboutBox.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Links\JGBaseForm\JBaseForm.resx">
      <DependentUpon>JBaseForm.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Links\JGCrumbBar\JCrumbBar.resx">
      <DependentUpon>JCrumbBar.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Links\JGCrumbBar\JCrumbLabel.resx">
      <DependentUpon>JCrumbLabel.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Links\JGFavourites\FormMaintainFavourites.resx">
      <DependentUpon>FormMaintainFavourites.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Links\JGFSControls\JFilerPanel.resx">
      <DependentUpon>JFilerPanel.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Links\JGFSControls\JPathBar.resx">
      <DependentUpon>JPathBar.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Links\JGInputBox\JInputBox.resx">
      <DependentUpon>JInputBox.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="Properties\Resources.resx">
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
      <SubType>Designer</SubType>
    </EmbeddedResource>
    <Compile Include="Properties\Resources.Designer.cs">
      <AutoGen>True</AutoGen>
      <DependentUpon>Resources.resx</DependentUpon>
      <DesignTime>True</DesignTime>
    </Compile>
    <None Include="Properties\Settings.settings">
      <Generator>SettingsSingleFileGenerator</Generator>
      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
    </None>
    <Compile Include="Properties\Settings.Designer.cs">
      <AutoGen>True</AutoGen>
      <DependentUpon>Settings.settings</DependentUpon>
      <DesignTimeSharedInput>True</DesignTimeSharedInput>
    </Compile>
  </ItemGroup>
  <ItemGroup>
    <COMReference Include="IWshRuntimeLibrary">
      <Guid>{F935DC20-1CF0-11D0-ADB9-00C04FD58A0B}</Guid>
      <VersionMajor>1</VersionMajor>
      <VersionMinor>0</VersionMinor>
      <Lcid>0</Lcid>
      <WrapperTool>tlbimp</WrapperTool>
      <Isolated>False</Isolated>
    </COMReference>
  </ItemGroup>
  <ItemGroup>
    <Content Include="Filer.ICO" />
  </ItemGroup>
  <ItemGroup>
    <Folder Include="Links\JGListViewSorter\" />
    <Folder Include="Links\JGTreeView\" />
  </ItemGroup>
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
</Project>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Retired
United Kingdom United Kingdom
I have been a keen hobbyist programmer since getting my first computer - a Vic 20 (you had to be able to write programs then since few programs were available and all were expensive).
Retired and now living in Pewsey, Wiltshire, where I spend (far too much of) my time writing computer programs to keep my mind active.

Comments and Discussions