-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsync4.csproj
124 lines (124 loc) · 5.85 KB
/
sync4.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{7BBF5738-9FFF-4B23-8FDC-DE6B1B78F4FA}</ProjectGuid>
<OutputType>Exe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>johnshope.Sync</RootNamespace>
<AssemblyName>sync4</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile>
</TargetFrameworkProfile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;NET4</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE;NET4</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Web" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Arguments.cs" />
<Compile Include="PipeStream.cs" />
<Compile Include="Directory.cs" />
<Compile Include="FtpClient.cs" />
<Compile Include="FtpConnections.cs" />
<Compile Include="FtpDirectory.cs" />
<Compile Include="FtpStream.cs" />
<Compile Include="FTP\EventArgs\ConnectionClosedEventArgs.cs" />
<Compile Include="FTP\EventArgs\FtpRequestEventArgs.cs" />
<Compile Include="FTP\EventArgs\FtpResponseEventArgs.cs" />
<Compile Include="FTP\EventArgs\FtpTransferEventArgs.cs" />
<Compile Include="FTP\EventArgs\FxpCopyAsyncCompletedEventArgs.cs" />
<Compile Include="FTP\EventArgs\GetDirListAsyncCompletedEventArgs.cs" />
<Compile Include="FTP\EventArgs\GetDirListDeepAsyncCompletedEventArgs.cs" />
<Compile Include="FTP\EventArgs\GetFileAsyncCompletedEventArgs.cs" />
<Compile Include="FTP\EventArgs\OpenAsyncCompletedEventArgs.cs" />
<Compile Include="FTP\EventArgs\PutFileAsyncCompletedEventArgs.cs" />
<Compile Include="FTP\EventArgs\PutFileUniqueAsyncCompletedEventArgs.cs" />
<Compile Include="FTP\EventArgs\TransferCompleteEventArgs.cs" />
<Compile Include="FTP\EventArgs\TransferProgressEventArgs.cs" />
<Compile Include="FTP\EventArgs\ValidateServerCertificateEventArgs.cs" />
<Compile Include="FTP\Exceptions\FtpAsynchronousOperationException.cs" />
<Compile Include="FTP\Exceptions\FtpAuthenticationException.cs" />
<Compile Include="FTP\Exceptions\FtpCertificateValidationException.cs" />
<Compile Include="FTP\Exceptions\FtpCommandResponseTimeoutException.cs" />
<Compile Include="FTP\Exceptions\FtpConnectionBrokenException.cs" />
<Compile Include="FTP\Exceptions\FtpConnectionClosedException.cs" />
<Compile Include="FTP\Exceptions\FtpConnectionOpenException.cs" />
<Compile Include="FTP\Exceptions\FtpDataCompressionException.cs" />
<Compile Include="FTP\Exceptions\FtpDataConnectionException.cs" />
<Compile Include="FTP\Exceptions\FtpDataConnectionTimeoutException.cs" />
<Compile Include="FTP\Exceptions\FtpDataTransferException.cs" />
<Compile Include="FTP\Exceptions\FtpException.cs" />
<Compile Include="FTP\Exceptions\FtpFileIntegrityException.cs" />
<Compile Include="FTP\Exceptions\FtpLoginException.cs" />
<Compile Include="FTP\Exceptions\FtpProxyException.cs" />
<Compile Include="FTP\Exceptions\FtpResponseException.cs" />
<Compile Include="FTP\Exceptions\FtpSecureConnectionException.cs" />
<Compile Include="FTP\FtpBase.cs" />
<Compile Include="FTP\FtpClient.cs" />
<Compile Include="FTP\FtpGenericParser.cs" />
<Compile Include="FTP\FtpItem.cs" />
<Compile Include="FTP\FtpItemCollection.cs" />
<Compile Include="FTP\FtpRequest.cs" />
<Compile Include="FTP\FtpResponse.cs" />
<Compile Include="FTP\FtpResponseCollection.cs" />
<Compile Include="FTP\FtpResponseQueue.cs" />
<Compile Include="FTP\Hashing\Crc32.cs" />
<Compile Include="FTP\IFtpItemParser.cs" />
<Compile Include="IDirectory.cs" />
<Compile Include="LocalDirectory.cs" />
<Compile Include="Log.cs" />
<Compile Include="Paths.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ResourceQueue.cs" />
<Compile Include="SyncJob.cs" />
<Compile Include="Threads.cs" />
<Compile Include="Util.cs" />
</ItemGroup>
<ItemGroup>
<None Include="docs\Johnshope FTP.docx" />
<None Include="docs\Manual.pdf" />
</ItemGroup>
<ItemGroup>
<Content Include="FTP\references\Starksoft.Net.Proxy.dll" />
<Content Include="FTP\references\Starksoft.Net.Proxy.XML" />
</ItemGroup>
<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>