Click here to Skip to main content
15,883,886 members
Articles / Web Development / HTML

Synchronicity - A Folder Synchronizing Application

Rate me:
Please Sign up or sign in to vote.
4.90/5 (29 votes)
7 Feb 2011CPOL25 min read 76.4K   3.5K   106  
Windows service for synchronizing folders
<?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>{A1CE9CA7-13AC-418C-858F-849684BBF7FB}</ProjectGuid>
    <OutputType>WinExe</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>SynchroSetup</RootNamespace>
    <AssemblyName>SynchroSetup</AssemblyName>
    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
    <ApplicationManifest>app.manifest</ApplicationManifest>
  </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>
    <UseVSHostingProcess>true</UseVSHostingProcess>
  </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>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Core">
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    </Reference>
    <Reference Include="System.ServiceModel">
      <RequiredTargetFramework>3.0</RequiredTargetFramework>
    </Reference>
    <Reference Include="System.ServiceProcess" />
    <Reference Include="System.Xml.Linq">
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    </Reference>
    <Reference Include="System.Data.DataSetExtensions">
      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    </Reference>
    <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="FormConfigure.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="FormConfigure.Designer.cs">
      <DependentUpon>FormConfigure.cs</DependentUpon>
    </Compile>
    <Compile Include="FormAddSyncItem.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="FormAddSyncItem.Designer.cs">
      <DependentUpon>FormAddSyncItem.cs</DependentUpon>
    </Compile>
    <Compile Include="FormExistingNames.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="FormExistingNames.Designer.cs">
      <DependentUpon>FormExistingNames.cs</DependentUpon>
    </Compile>
    <Compile Include="FormMainSetup.cs">
      <SubType>Form</SubType>
    </Compile>
    <Compile Include="FormMainSetup.Designer.cs">
      <DependentUpon>FormMainSetup.cs</DependentUpon>
    </Compile>
    <Compile Include="Globals.cs" />
    <Compile Include="Program.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
    <EmbeddedResource Include="FormConfigure.resx">
      <DependentUpon>FormConfigure.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="FormAddSyncItem.resx">
      <DependentUpon>FormAddSyncItem.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="FormExistingNames.resx">
      <DependentUpon>FormExistingNames.cs</DependentUpon>
    </EmbeddedResource>
    <EmbeddedResource Include="FormMainSetup.resx">
      <DependentUpon>FormMainSetup.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>
    </Compile>
    <None Include="app.manifest" />
    <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>
    <ProjectReference Include="..\AppSettingsLib\AppSettingsLib.csproj">
      <Project>{62976105-37A7-42E1-908B-79A972154D63}</Project>
      <Name>AppSettingsLib</Name>
    </ProjectReference>
    <ProjectReference Include="..\SharedAppObjects\SynchCommon.csproj">
      <Project>{D51B162F-6A45-4C1C-B9FC-FDCB75B51071}</Project>
      <Name>SynchCommon</Name>
    </ProjectReference>
    <ProjectReference Include="..\SynchroLib\SynchroLib.csproj">
      <Project>{CEC56B4E-F5C4-442F-8D7D-43B418491654}</Project>
      <Name>SynchroLib</Name>
    </ProjectReference>
    <ProjectReference Include="..\SynchroWCF\SynchroWCF.csproj">
      <Project>{FB637DBC-14F8-469E-8083-E25FA84AF27C}</Project>
      <Name>SynchroWCF</Name>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
    <Content Include="SynchroSetup.ico" />
  </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
Software Developer (Senior) Paddedwall Software
United States United States
I've been paid as a programmer since 1982 with experience in Pascal, and C++ (both self-taught), and began writing Windows programs in 1991 using Visual C++ and MFC. In the 2nd half of 2007, I started writing C# Windows Forms and ASP.Net applications, and have since done WPF, Silverlight, WCF, web services, and Windows services.

My weakest point is that my moments of clarity are too brief to hold a meaningful conversation that requires more than 30 seconds to complete. Thankfully, grunts of agreement are all that is required to conduct most discussions without committing to any particular belief system.

Comments and Discussions