Skip to content

Commit 8fda0bf

Browse files
Drive-Sync Files
1 parent 3ce1862 commit 8fda0bf

33 files changed

Lines changed: 9139 additions & 0 deletions

DriveSync/App.config

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
5+
</startup>
6+
</configuration>

DriveSync/DriveSync.csproj

Lines changed: 148 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,148 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{EDAF7083-333D-47E0-9519-9843FB04DA55}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<RootNamespace>DriveSync</RootNamespace>
10+
<AssemblyName>Drive-Sync</AssemblyName>
11+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<PublishUrl>publish\</PublishUrl>
15+
<Install>true</Install>
16+
<InstallFrom>Disk</InstallFrom>
17+
<UpdateEnabled>false</UpdateEnabled>
18+
<UpdateMode>Foreground</UpdateMode>
19+
<UpdateInterval>7</UpdateInterval>
20+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
21+
<UpdatePeriodically>false</UpdatePeriodically>
22+
<UpdateRequired>false</UpdateRequired>
23+
<MapFileExtensions>true</MapFileExtensions>
24+
<ApplicationRevision>0</ApplicationRevision>
25+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
26+
<IsWebBootstrapper>false</IsWebBootstrapper>
27+
<UseApplicationTrust>false</UseApplicationTrust>
28+
<BootstrapperEnabled>true</BootstrapperEnabled>
29+
</PropertyGroup>
30+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
31+
<PlatformTarget>AnyCPU</PlatformTarget>
32+
<DebugSymbols>true</DebugSymbols>
33+
<DebugType>full</DebugType>
34+
<Optimize>false</Optimize>
35+
<OutputPath>bin\Debug\</OutputPath>
36+
<DefineConstants>DEBUG;TRACE</DefineConstants>
37+
<ErrorReport>prompt</ErrorReport>
38+
<WarningLevel>4</WarningLevel>
39+
</PropertyGroup>
40+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
41+
<PlatformTarget>AnyCPU</PlatformTarget>
42+
<DebugType>pdbonly</DebugType>
43+
<Optimize>true</Optimize>
44+
<OutputPath>bin\Release\</OutputPath>
45+
<DefineConstants>TRACE</DefineConstants>
46+
<ErrorReport>prompt</ErrorReport>
47+
<WarningLevel>4</WarningLevel>
48+
</PropertyGroup>
49+
<PropertyGroup>
50+
<StartupObject />
51+
</PropertyGroup>
52+
<PropertyGroup>
53+
<ApplicationIcon>if_save_173091.ico</ApplicationIcon>
54+
</PropertyGroup>
55+
<PropertyGroup />
56+
<PropertyGroup />
57+
<ItemGroup>
58+
<Reference Include="Microsoft.VisualBasic" />
59+
<Reference Include="System" />
60+
<Reference Include="System.Core" />
61+
<Reference Include="System.Xml.Linq" />
62+
<Reference Include="System.Data.DataSetExtensions" />
63+
<Reference Include="Microsoft.CSharp" />
64+
<Reference Include="System.Data" />
65+
<Reference Include="System.Deployment" />
66+
<Reference Include="System.Drawing" />
67+
<Reference Include="System.Net.Http" />
68+
<Reference Include="System.Windows.Forms" />
69+
<Reference Include="System.Xml" />
70+
</ItemGroup>
71+
<ItemGroup>
72+
<Compile Include="frmHelp.cs">
73+
<SubType>Form</SubType>
74+
</Compile>
75+
<Compile Include="frmHelp.Designer.cs">
76+
<DependentUpon>frmHelp.cs</DependentUpon>
77+
</Compile>
78+
<Compile Include="frmSync.cs">
79+
<SubType>Form</SubType>
80+
</Compile>
81+
<Compile Include="frmSync.Designer.cs">
82+
<DependentUpon>frmSync.cs</DependentUpon>
83+
</Compile>
84+
<Compile Include="frmOptions.cs">
85+
<SubType>Form</SubType>
86+
</Compile>
87+
<Compile Include="frmOptions.Designer.cs">
88+
<DependentUpon>frmOptions.cs</DependentUpon>
89+
</Compile>
90+
<Compile Include="frmLoader.cs">
91+
<SubType>Form</SubType>
92+
</Compile>
93+
<Compile Include="frmLoader.Designer.cs">
94+
<DependentUpon>frmLoader.cs</DependentUpon>
95+
</Compile>
96+
<Compile Include="Program.cs" />
97+
<Compile Include="Properties\AssemblyInfo.cs" />
98+
<EmbeddedResource Include="frmHelp.resx">
99+
<DependentUpon>frmHelp.cs</DependentUpon>
100+
</EmbeddedResource>
101+
<EmbeddedResource Include="frmSync.resx">
102+
<DependentUpon>frmSync.cs</DependentUpon>
103+
</EmbeddedResource>
104+
<EmbeddedResource Include="frmOptions.resx">
105+
<DependentUpon>frmOptions.cs</DependentUpon>
106+
</EmbeddedResource>
107+
<EmbeddedResource Include="frmLoader.resx">
108+
<DependentUpon>frmLoader.cs</DependentUpon>
109+
</EmbeddedResource>
110+
<EmbeddedResource Include="Properties\Resources.resx">
111+
<Generator>ResXFileCodeGenerator</Generator>
112+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
113+
<SubType>Designer</SubType>
114+
</EmbeddedResource>
115+
<Compile Include="Properties\Resources.Designer.cs">
116+
<AutoGen>True</AutoGen>
117+
<DependentUpon>Resources.resx</DependentUpon>
118+
</Compile>
119+
<None Include="Properties\Settings.settings">
120+
<Generator>SettingsSingleFileGenerator</Generator>
121+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
122+
</None>
123+
<Compile Include="Properties\Settings.Designer.cs">
124+
<AutoGen>True</AutoGen>
125+
<DependentUpon>Settings.settings</DependentUpon>
126+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
127+
</Compile>
128+
</ItemGroup>
129+
<ItemGroup>
130+
<None Include="App.config" />
131+
</ItemGroup>
132+
<ItemGroup>
133+
<Content Include="if_save_173091.ico" />
134+
</ItemGroup>
135+
<ItemGroup>
136+
<BootstrapperPackage Include=".NETFramework,Version=v4.5.2">
137+
<Visible>False</Visible>
138+
<ProductName>Microsoft .NET Framework 4.5.2 %28x86 and x64%29</ProductName>
139+
<Install>true</Install>
140+
</BootstrapperPackage>
141+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
142+
<Visible>False</Visible>
143+
<ProductName>.NET Framework 3.5 SP1</ProductName>
144+
<Install>false</Install>
145+
</BootstrapperPackage>
146+
</ItemGroup>
147+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
148+
</Project>

DriveSync/Program.cs

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Threading.Tasks;
5+
using System.Windows.Forms;
6+
7+
namespace DriveSync
8+
{
9+
static class Program
10+
{
11+
/// <summary>
12+
/// The main entry point for the application.
13+
/// </summary>
14+
[STAThread]
15+
static void Main()
16+
{
17+
Application.EnableVisualStyles();
18+
Application.SetCompatibleTextRenderingDefault(false);
19+
Application.Run(new frmSync());
20+
}
21+
}
22+
}
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("Drive-Sync")]
9+
[assembly: AssemblyDescription("Syncronizes drives to a custom location on your computer.")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("Overpunch Studios")]
12+
[assembly: AssemblyProduct("Drive-Sync")]
13+
[assembly: AssemblyCopyright("Overpunch Studios Copyright © 2017")]
14+
[assembly: AssemblyTrademark("Overpunch Studios")]
15+
[assembly: AssemblyCulture("")]
16+
17+
// Setting ComVisible to false makes the types in this assembly not visible
18+
// to COM components. If you need to access a type in this assembly from
19+
// COM, set the ComVisible attribute to true on that type.
20+
[assembly: ComVisible(false)]
21+
22+
// The following GUID is for the ID of the typelib if this project is exposed to COM
23+
[assembly: Guid("edaf7083-333d-47e0-9519-9843fb04da55")]
24+
25+
// Version information for an assembly consists of the following four values:
26+
//
27+
// Major Version
28+
// Minor Version
29+
// Build Number
30+
// Revision
31+
//
32+
// You can specify all the values or you can default the Build and Revision Numbers
33+
// by using the '*' as shown below:
34+
// [assembly: AssemblyVersion("1.0.*")]
35+
[assembly: AssemblyVersion("1.0.0.0")]
36+
[assembly: AssemblyFileVersion("1.0.0.0")]

DriveSync/Properties/Resources.Designer.cs

Lines changed: 71 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)