Renci.SshNet.csproj 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <PropertyGroup>
  4. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  5. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  6. <ProductVersion>8.0.30703</ProductVersion>
  7. <SchemaVersion>2.0</SchemaVersion>
  8. <ProjectGuid>{2F5F8C90-0BD1-424F-997C-7BC6280919D1}</ProjectGuid>
  9. <OutputType>Library</OutputType>
  10. <AppDesignerFolder>Properties</AppDesignerFolder>
  11. <RootNamespace>Renci.SshNet</RootNamespace>
  12. <AssemblyName>Renci.SshNet</AssemblyName>
  13. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  14. <FileAlignment>512</FileAlignment>
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>TRACE;DEBUG;FEATURE_REGEX_COMPILE;FEATURE_BINARY_SERIALIZATION;FEATURE_RNG_CREATE;FEATURE_SOCKET_SYNC;FEATURE_SOCKET_EAP;FEATURE_SOCKET_APM;FEATURE_SOCKET_SETSOCKETOPTION;FEATURE_SOCKET_POLL;FEATURE_STREAM_APM;FEATURE_DNS_SYNC;FEATURE_THREAD_COUNTDOWNEVENT;FEATURE_THREAD_THREADPOOL;FEATURE_THREAD_SLEEP;FEATURE_HASH_MD5;FEATURE_HASH_SHA1_CREATE;FEATURE_HASH_SHA256_CREATE;FEATURE_HASH_SHA384_CREATE;FEATURE_HASH_SHA512_CREATE;FEATURE_HASH_RIPEMD160_CREATE;FEATURE_HMAC_MD5;FEATURE_HMAC_SHA1;FEATURE_HMAC_SHA256;FEATURE_HMAC_SHA384;FEATURE_HMAC_SHA512;FEATURE_HMAC_RIPEMD160;FEATURE_MEMORYSTREAM_GETBUFFER;FEATURE_DIAGNOSTICS_TRACESOURCE;FEATURE_ENCODING_ASCII</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. <DocumentationFile>bin\Debug\Renci.SshNet.xml</DocumentationFile>
  25. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  26. <LangVersion>4</LangVersion>
  27. </PropertyGroup>
  28. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  29. <DebugType>none</DebugType>
  30. <Optimize>true</Optimize>
  31. <OutputPath>bin\Release\</OutputPath>
  32. <DefineConstants>FEATURE_REGEX_COMPILE;FEATURE_BINARY_SERIALIZATION;FEATURE_RNG_CREATE;FEATURE_SOCKET_SYNC;FEATURE_SOCKET_EAP;FEATURE_SOCKET_APM;FEATURE_SOCKET_SETSOCKETOPTION;FEATURE_SOCKET_POLL;FEATURE_STREAM_APM;FEATURE_DNS_SYNC;FEATURE_THREAD_COUNTDOWNEVENT;FEATURE_THREAD_THREADPOOL;FEATURE_THREAD_SLEEP;FEATURE_HASH_MD5;FEATURE_HASH_SHA1_CREATE;FEATURE_HASH_SHA256_CREATE;FEATURE_HASH_SHA384_CREATE;FEATURE_HASH_SHA512_CREATE;FEATURE_HASH_RIPEMD160_CREATE;FEATURE_HMAC_MD5;FEATURE_HMAC_SHA1;FEATURE_HMAC_SHA256;FEATURE_HMAC_SHA384;FEATURE_HMAC_SHA512;FEATURE_HMAC_RIPEMD160;FEATURE_MEMORYSTREAM_GETBUFFER;FEATURE_DIAGNOSTICS_TRACESOURCE;FEATURE_ENCODING_ASCII</DefineConstants>
  33. <ErrorReport>prompt</ErrorReport>
  34. <WarningLevel>4</WarningLevel>
  35. <DocumentationFile>bin\Release\Renci.SshNet.xml</DocumentationFile>
  36. <NoWarn>
  37. </NoWarn>
  38. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  39. </PropertyGroup>
  40. <PropertyGroup>
  41. <SignAssembly>true</SignAssembly>
  42. </PropertyGroup>
  43. <PropertyGroup>
  44. <AssemblyOriginatorKeyFile>..\Renci.SshNet.snk</AssemblyOriginatorKeyFile>
  45. </PropertyGroup>
  46. <ItemGroup>
  47. <Reference Include="System" />
  48. <Reference Include="System.Core" />
  49. <Reference Include="Microsoft.CSharp" />
  50. <Reference Include="System.Xml" />
  51. </ItemGroup>
  52. <ItemGroup>
  53. <Compile Include="Abstractions\CryptoAbstraction.cs" />
  54. <Compile Include="Abstractions\DiagnosticAbstraction.cs" />
  55. <Compile Include="Abstractions\DnsAbstraction.cs" />
  56. <Compile Include="Abstractions\FileSystemAbstraction.cs" />
  57. <Compile Include="Abstractions\ReflectionAbstraction.cs" />
  58. <Compile Include="Abstractions\SocketAbstraction.cs" />
  59. <Compile Include="Abstractions\ThreadAbstraction.cs" />
  60. <Compile Include="AuthenticationMethod.cs">
  61. <SubType>Code</SubType>
  62. </Compile>
  63. <Compile Include="AuthenticationResult.cs">
  64. <SubType>Code</SubType>
  65. </Compile>
  66. <Compile Include="BaseClient.cs" />
  67. <Compile Include="Channels\IChannel.cs" />
  68. <Compile Include="Channels\IChannelDirectTcpip.cs" />
  69. <Compile Include="Channels\IChannelForwardedTcpip.cs" />
  70. <Compile Include="Channels\IChannelSession.cs" />
  71. <Compile Include="CommandAsyncResult.cs" />
  72. <Compile Include="Channels\Channel.cs" />
  73. <Compile Include="Channels\ChannelDirectTcpip.cs" />
  74. <Compile Include="Channels\ChannelForwardedTcpip.cs" />
  75. <Compile Include="Channels\ChannelSession.cs" />
  76. <Compile Include="Channels\ChannelTypes.cs" />
  77. <Compile Include="Channels\ClientChannel.cs" />
  78. <Compile Include="Channels\ServerChannel.cs" />
  79. <Compile Include="CipherInfo.cs" />
  80. <Compile Include="Common\Array.cs" />
  81. <Compile Include="Common\ASCIIEncoding.cs" />
  82. <Compile Include="Common\AsyncResult.cs" />
  83. <Compile Include="Common\AuthenticationBannerEventArgs.cs" />
  84. <Compile Include="Common\AuthenticationEventArgs.cs" />
  85. <Compile Include="Common\AuthenticationPasswordChangeEventArgs.cs" />
  86. <Compile Include="Common\AuthenticationPrompt.cs" />
  87. <Compile Include="Common\AuthenticationPromptEventArgs.cs" />
  88. <Compile Include="ClientAuthentication.cs" />
  89. <Compile Include="Common\BigInteger.cs">
  90. <SubType>Code</SubType>
  91. </Compile>
  92. <Compile Include="Common\ChannelDataEventArgs.cs" />
  93. <Compile Include="Common\ChannelEventArgs.cs" />
  94. <Compile Include="Common\ChannelExtendedDataEventArgs.cs" />
  95. <Compile Include="Common\ChannelOpenConfirmedEventArgs.cs" />
  96. <Compile Include="Common\ChannelOpenFailedEventArgs.cs" />
  97. <Compile Include="Common\ChannelRequestEventArgs.cs" />
  98. <Compile Include="Common\CountdownEvent.cs" />
  99. <Compile Include="Common\ProxyException.cs">
  100. <SubType>Code</SubType>
  101. </Compile>
  102. <Compile Include="Common\HostKeyEventArgs.cs" />
  103. <Compile Include="Common\DerData.cs" />
  104. <Compile Include="Common\ExceptionEventArgs.cs" />
  105. <Compile Include="Common\Extensions.cs">
  106. <SubType>Code</SubType>
  107. </Compile>
  108. <Compile Include="Common\NetConfServerException.cs" />
  109. <Compile Include="Common\ObjectIdentifier.cs" />
  110. <Compile Include="Common\PipeStream.cs" />
  111. <Compile Include="Common\PortForwardEventArgs.cs">
  112. <SubType>Code</SubType>
  113. </Compile>
  114. <Compile Include="Common\ScpDownloadEventArgs.cs">
  115. <SubType>Code</SubType>
  116. </Compile>
  117. <Compile Include="Common\ScpException.cs">
  118. <SubType>Code</SubType>
  119. </Compile>
  120. <Compile Include="Common\ScpUploadEventArgs.cs">
  121. <SubType>Code</SubType>
  122. </Compile>
  123. <Compile Include="Common\SemaphoreLight.cs">
  124. <SubType>Code</SubType>
  125. </Compile>
  126. <Compile Include="Common\SftpPathNotFoundException.cs" />
  127. <Compile Include="Common\SftpPermissionDeniedException.cs" />
  128. <Compile Include="Common\ShellDataEventArgs.cs" />
  129. <Compile Include="Common\SshAuthenticationException.cs" />
  130. <Compile Include="Common\SshConnectionException.cs" />
  131. <Compile Include="Common\SshData.cs" />
  132. <Compile Include="Common\SshException.cs" />
  133. <Compile Include="Common\SshOperationTimeoutException.cs" />
  134. <Compile Include="Common\SshPassPhraseNullOrEmptyException.cs" />
  135. <Compile Include="Common\TerminalModes.cs">
  136. <SubType>Code</SubType>
  137. </Compile>
  138. <Compile Include="Compression\CompressionMode.cs" />
  139. <Compile Include="Compression\Compressor.cs" />
  140. <Compile Include="Compression\Zlib.cs" />
  141. <Compile Include="Compression\ZlibOpenSsh.cs" />
  142. <Compile Include="Compression\ZlibStream.cs">
  143. <SubType>Code</SubType>
  144. </Compile>
  145. <Compile Include="ConnectionInfo.cs" />
  146. <Compile Include="ForwardedPortStatus.cs" />
  147. <Compile Include="HashInfo.cs">
  148. <SubType>Code</SubType>
  149. </Compile>
  150. <Compile Include="IAuthenticationMethod.cs" />
  151. <Compile Include="IClientAuthentication.cs" />
  152. <Compile Include="IConnectionInfo.cs" />
  153. <Compile Include="IForwardedPort.cs" />
  154. <Compile Include="IServiceFactory.cs" />
  155. <Compile Include="IServiceFactory.NET.cs" />
  156. <Compile Include="ISession.cs" />
  157. <Compile Include="ISubsystemSession.cs" />
  158. <Compile Include="Messages\Connection\CancelTcpIpForwardGlobalRequestMessage.cs" />
  159. <Compile Include="Messages\Connection\TcpIpForwardGlobalRequestMessage.cs" />
  160. <Compile Include="Messages\Transport\KeyExchangeEcdhInitMessage.cs" />
  161. <Compile Include="Messages\Transport\KeyExchangeEcdhReplyMessage.cs" />
  162. <Compile Include="Netconf\INetConfSession.cs" />
  163. <Compile Include="Security\Cryptography\HMACMD5.cs" />
  164. <Compile Include="Security\Cryptography\HMACSHA1.cs" />
  165. <Compile Include="Security\Cryptography\HMACSHA256.cs" />
  166. <Compile Include="Security\Cryptography\HMACSHA384.cs" />
  167. <Compile Include="Security\Cryptography\HMACSHA512.cs" />
  168. <Compile Include="Security\GroupExchangeHashData.cs" />
  169. <Compile Include="Security\IKeyExchange.cs" />
  170. <Compile Include="Security\KeyExchangeDiffieHellmanGroupExchangeShaBase.cs" />
  171. <Compile Include="ServiceFactory.cs" />
  172. <Compile Include="ServiceFactory.NET.cs" />
  173. <Compile Include="Sftp\ISftpSession.cs" />
  174. <Compile Include="Common\SshDataStream.cs" />
  175. <Compile Include="ExpectAsyncResult.cs" />
  176. <Compile Include="Security\KeyExchangeDiffieHellmanGroupSha1.cs" />
  177. <Compile Include="KeyboardInteractiveAuthenticationMethod.cs">
  178. <SubType>Code</SubType>
  179. </Compile>
  180. <Compile Include="KeyboardInteractiveConnectionInfo.cs" />
  181. <Compile Include="NoneAuthenticationMethod.cs">
  182. <SubType>Code</SubType>
  183. </Compile>
  184. <Compile Include="PasswordAuthenticationMethod.cs">
  185. <SubType>Code</SubType>
  186. </Compile>
  187. <Compile Include="ExpectAction.cs">
  188. <SubType>Code</SubType>
  189. </Compile>
  190. <Compile Include="ForwardedPortDynamic.cs">
  191. <SubType>Code</SubType>
  192. </Compile>
  193. <Compile Include="ForwardedPortDynamic.NET.cs" />
  194. <Compile Include="ForwardedPortLocal.NET.cs" />
  195. <Compile Include="Messages\Transport\IKeyExchangedAllowed.cs" />
  196. <Compile Include="PasswordConnectionInfo.cs" />
  197. <Compile Include="PrivateKeyAuthenticationMethod.cs">
  198. <SubType>Code</SubType>
  199. </Compile>
  200. <Compile Include="PrivateKeyConnectionInfo.cs" />
  201. <Compile Include="ProxyTypes.cs">
  202. <SubType>Code</SubType>
  203. </Compile>
  204. <Compile Include="ScpClient.cs">
  205. <SubType>Code</SubType>
  206. </Compile>
  207. <Compile Include="ScpClient.NET.cs" />
  208. <Compile Include="ForwardedPort.cs" />
  209. <Compile Include="ForwardedPortLocal.cs">
  210. <SubType>Code</SubType>
  211. </Compile>
  212. <Compile Include="ForwardedPortRemote.cs" />
  213. <Compile Include="MessageEventArgs.cs" />
  214. <Compile Include="Messages\Authentication\BannerMessage.cs" />
  215. <Compile Include="Messages\Authentication\FailureMessage.cs" />
  216. <Compile Include="Messages\Authentication\InformationRequestMessage.cs" />
  217. <Compile Include="Messages\Authentication\InformationResponseMessage.cs" />
  218. <Compile Include="Messages\Authentication\PasswordChangeRequiredMessage.cs" />
  219. <Compile Include="Messages\Authentication\PublicKeyMessage.cs" />
  220. <Compile Include="Messages\Authentication\RequestMessage.cs">
  221. <SubType>Code</SubType>
  222. </Compile>
  223. <Compile Include="Messages\Authentication\RequestMessageHost.cs" />
  224. <Compile Include="Messages\Authentication\RequestMessageKeyboardInteractive.cs" />
  225. <Compile Include="Messages\Authentication\RequestMessageNone.cs" />
  226. <Compile Include="Messages\Authentication\RequestMessagePassword.cs" />
  227. <Compile Include="Messages\Authentication\RequestMessagePublicKey.cs" />
  228. <Compile Include="Messages\Authentication\SuccessMessage.cs" />
  229. <Compile Include="Messages\Connection\ChannelCloseMessage.cs" />
  230. <Compile Include="Messages\Connection\ChannelDataMessage.cs" />
  231. <Compile Include="Messages\Connection\ChannelEofMessage.cs" />
  232. <Compile Include="Messages\Connection\ChannelExtendedDataMessage.cs" />
  233. <Compile Include="Messages\Connection\ChannelFailureMessage.cs" />
  234. <Compile Include="Messages\Connection\ChannelMessage.cs" />
  235. <Compile Include="Messages\Connection\ChannelOpenConfirmationMessage.cs" />
  236. <Compile Include="Messages\Connection\ChannelOpenFailureMessage.cs" />
  237. <Compile Include="Messages\Connection\ChannelOpenFailureReasons.cs" />
  238. <Compile Include="Messages\Connection\ChannelOpen\ChannelOpenInfo.cs" />
  239. <Compile Include="Messages\Connection\ChannelOpen\ChannelOpenMessage.cs" />
  240. <Compile Include="Messages\Connection\ChannelOpen\DirectTcpipChannelInfo.cs" />
  241. <Compile Include="Messages\Connection\ChannelOpen\ForwardedTcpipChannelInfo.cs" />
  242. <Compile Include="Messages\Connection\ChannelOpen\SessionChannelOpenInfo.cs" />
  243. <Compile Include="Messages\Connection\ChannelOpen\X11ChannelOpenInfo.cs" />
  244. <Compile Include="Messages\Connection\ChannelRequest\BreakRequestInfo.cs" />
  245. <Compile Include="Messages\Connection\ChannelRequest\ChannelRequestMessage.cs" />
  246. <Compile Include="Messages\Connection\ChannelRequest\EndOfWriteRequestInfo.cs" />
  247. <Compile Include="Messages\Connection\ChannelRequest\EnvironmentVariableRequestInfo.cs" />
  248. <Compile Include="Messages\Connection\ChannelRequest\ExecRequestInfo.cs" />
  249. <Compile Include="Messages\Connection\ChannelRequest\ExitSignalRequestInfo.cs" />
  250. <Compile Include="Messages\Connection\ChannelRequest\ExitStatusRequestInfo.cs" />
  251. <Compile Include="Messages\Connection\ChannelRequest\KeepAliveRequestInfo.cs" />
  252. <Compile Include="Messages\Connection\ChannelRequest\PseudoTerminalInfo.cs" />
  253. <Compile Include="Messages\Connection\ChannelRequest\RequestInfo.cs" />
  254. <Compile Include="Messages\Connection\ChannelRequest\ShellRequestInfo.cs" />
  255. <Compile Include="Messages\Connection\ChannelRequest\SignalRequestInfo.cs" />
  256. <Compile Include="Messages\Connection\ChannelRequest\SubsystemRequestInfo.cs" />
  257. <Compile Include="Messages\Connection\ChannelRequest\WindowChangeRequestInfo.cs" />
  258. <Compile Include="Messages\Connection\ChannelRequest\X11ForwardingRequestInfo.cs" />
  259. <Compile Include="Messages\Connection\ChannelRequest\XonXoffRequestInfo.cs" />
  260. <Compile Include="Messages\Connection\ChannelSuccessMessage.cs" />
  261. <Compile Include="Messages\Connection\ChannelWindowAdjustMessage.cs" />
  262. <Compile Include="Messages\Connection\GlobalRequestMessage.cs" />
  263. <Compile Include="Messages\Connection\GlobalRequestName.cs" />
  264. <Compile Include="Messages\Connection\RequestFailureMessage.cs" />
  265. <Compile Include="Messages\Connection\RequestSuccessMessage.cs" />
  266. <Compile Include="Messages\Message.cs">
  267. <SubType>Code</SubType>
  268. </Compile>
  269. <Compile Include="Messages\MessageAttribute.cs" />
  270. <Compile Include="Messages\ServiceName.cs" />
  271. <Compile Include="Messages\Transport\DebugMessage.cs" />
  272. <Compile Include="Messages\Transport\DisconnectMessage.cs">
  273. <SubType>Code</SubType>
  274. </Compile>
  275. <Compile Include="Messages\Transport\DisconnectReason.cs" />
  276. <Compile Include="Messages\Transport\IgnoreMessage.cs" />
  277. <Compile Include="Messages\Transport\KeyExchangeDhGroupExchangeGroup.cs" />
  278. <Compile Include="Messages\Transport\KeyExchangeDhGroupExchangeInit.cs" />
  279. <Compile Include="Messages\Transport\KeyExchangeDhGroupExchangeReply.cs" />
  280. <Compile Include="Messages\Transport\KeyExchangeDhGroupExchangeRequest.cs" />
  281. <Compile Include="Messages\Transport\KeyExchangeDhInitMessage.cs">
  282. <SubType>Code</SubType>
  283. </Compile>
  284. <Compile Include="Messages\Transport\KeyExchangeDhReplyMessage.cs">
  285. <SubType>Code</SubType>
  286. </Compile>
  287. <Compile Include="Messages\Transport\KeyExchangeInitMessage.cs">
  288. <SubType>Code</SubType>
  289. </Compile>
  290. <Compile Include="Messages\Transport\NewKeysMessage.cs">
  291. <SubType>Code</SubType>
  292. </Compile>
  293. <Compile Include="Messages\Transport\ServiceAcceptMessage.cs" />
  294. <Compile Include="Messages\Transport\ServiceRequestMessage.cs" />
  295. <Compile Include="Messages\Transport\UnimplementedMessage.cs" />
  296. <Compile Include="NetConfClient.cs" />
  297. <Compile Include="Netconf\NetConfSession.cs" />
  298. <Compile Include="PrivateKeyFile.cs" />
  299. <Compile Include="Properties\AssemblyInfo.cs" />
  300. <Compile Include="Properties\CommonAssemblyInfo.cs" />
  301. <Compile Include="Security\Algorithm.cs">
  302. <SubType>Code</SubType>
  303. </Compile>
  304. <Compile Include="Security\CertificateHostAlgorithm.cs" />
  305. <Compile Include="Security\Cryptography\AsymmetricCipher.cs" />
  306. <Compile Include="Security\Cryptography\BlockCipher.cs" />
  307. <Compile Include="Security\Cryptography\Cipher.cs" />
  308. <Compile Include="Security\Cryptography\CipherDigitalSignature.cs" />
  309. <Compile Include="Security\Cryptography\Ciphers\AesCipher.cs" />
  310. <Compile Include="Security\Cryptography\Ciphers\Arc4Cipher.cs" />
  311. <Compile Include="Security\Cryptography\Ciphers\BlowfishCipher.cs" />
  312. <Compile Include="Security\Cryptography\Ciphers\CastCipher.cs" />
  313. <Compile Include="Security\Cryptography\Ciphers\CipherMode.cs" />
  314. <Compile Include="Security\Cryptography\Ciphers\CipherPadding.cs" />
  315. <Compile Include="Security\Cryptography\Ciphers\DesCipher.cs" />
  316. <Compile Include="Security\Cryptography\Ciphers\Modes\CbcCipherMode.cs" />
  317. <Compile Include="Security\Cryptography\Ciphers\Modes\CfbCipherMode.cs" />
  318. <Compile Include="Security\Cryptography\Ciphers\Modes\CtrCipherMode.cs" />
  319. <Compile Include="Security\Cryptography\Ciphers\Modes\OfbCipherMode.cs" />
  320. <Compile Include="Security\Cryptography\Ciphers\Paddings\PKCS5Padding.cs" />
  321. <Compile Include="Security\Cryptography\Ciphers\Paddings\PKCS7Padding.cs" />
  322. <Compile Include="Security\Cryptography\Ciphers\RsaCipher.cs">
  323. <SubType>Code</SubType>
  324. </Compile>
  325. <Compile Include="Security\Cryptography\Ciphers\SerpentCipher.cs" />
  326. <Compile Include="Security\Cryptography\Ciphers\TripleDesCipher.cs" />
  327. <Compile Include="Security\Cryptography\Ciphers\TwofishCipher.cs" />
  328. <Compile Include="Security\Cryptography\DigitalSignature.cs">
  329. <SubType>Code</SubType>
  330. </Compile>
  331. <Compile Include="Security\Cryptography\DsaDigitalSignature.cs">
  332. <SubType>Code</SubType>
  333. </Compile>
  334. <Compile Include="Security\Cryptography\DsaKey.cs">
  335. <SubType>Code</SubType>
  336. </Compile>
  337. <Compile Include="Security\Cryptography\Key.cs">
  338. <SubType>Code</SubType>
  339. </Compile>
  340. <Compile Include="Security\Cryptography\RsaDigitalSignature.cs">
  341. <SubType>Code</SubType>
  342. </Compile>
  343. <Compile Include="Security\Cryptography\RsaKey.cs">
  344. <SubType>Code</SubType>
  345. </Compile>
  346. <Compile Include="Security\Cryptography\StreamCipher.cs" />
  347. <Compile Include="Security\Cryptography\SymmetricCipher.cs" />
  348. <Compile Include="Security\HostAlgorithm.cs" />
  349. <Compile Include="Security\KeyExchange.cs">
  350. <SubType>Code</SubType>
  351. </Compile>
  352. <Compile Include="Security\KeyExchangeDiffieHellman.cs">
  353. <SubType>Code</SubType>
  354. </Compile>
  355. <Compile Include="Security\KeyExchangeDiffieHellmanGroup14Sha1.cs">
  356. <SubType>Code</SubType>
  357. </Compile>
  358. <Compile Include="Security\KeyExchangeDiffieHellmanGroup1Sha1.cs">
  359. <SubType>Code</SubType>
  360. </Compile>
  361. <Compile Include="Security\KeyExchangeDiffieHellmanGroupExchangeSha1.cs">
  362. <SubType>Code</SubType>
  363. </Compile>
  364. <Compile Include="Security\KeyExchangeDiffieHellmanGroupExchangeSha256.cs">
  365. <SubType>Code</SubType>
  366. </Compile>
  367. <Compile Include="Security\KeyHostAlgorithm.cs" />
  368. <Compile Include="Session.cs">
  369. <SubType>Code</SubType>
  370. </Compile>
  371. <Compile Include="SftpClient.cs">
  372. <SubType>Code</SubType>
  373. </Compile>
  374. <Compile Include="Sftp\Flags.cs" />
  375. <Compile Include="Sftp\Requests\ExtendedRequests\FStatVfsRequest.cs" />
  376. <Compile Include="Sftp\Requests\ExtendedRequests\HardLinkRequest.cs" />
  377. <Compile Include="Sftp\Requests\SftpUnblockRequest.cs" />
  378. <Compile Include="Sftp\Requests\SftpBlockRequest.cs" />
  379. <Compile Include="Sftp\Requests\SftpExtendedRequest.cs" />
  380. <Compile Include="Sftp\Requests\ExtendedRequests\PosixRenameRequest.cs">
  381. <SubType>Code</SubType>
  382. </Compile>
  383. <Compile Include="Sftp\Requests\SftpCloseRequest.cs" />
  384. <Compile Include="Sftp\Requests\SftpFSetStatRequest.cs" />
  385. <Compile Include="Sftp\Requests\SftpFStatRequest.cs" />
  386. <Compile Include="Sftp\Requests\SftpInitRequest.cs" />
  387. <Compile Include="Sftp\Requests\SftpLinkRequest.cs" />
  388. <Compile Include="Sftp\Requests\SftpLStatRequest.cs" />
  389. <Compile Include="Sftp\Requests\SftpMkDirRequest.cs" />
  390. <Compile Include="Sftp\Requests\SftpOpenDirRequest.cs" />
  391. <Compile Include="Sftp\Requests\SftpOpenRequest.cs" />
  392. <Compile Include="Sftp\Requests\SftpReadDirRequest.cs" />
  393. <Compile Include="Sftp\Requests\SftpReadLinkRequest.cs" />
  394. <Compile Include="Sftp\Requests\SftpReadRequest.cs" />
  395. <Compile Include="Sftp\Requests\SftpRealPathRequest.cs" />
  396. <Compile Include="Sftp\Requests\SftpRemoveRequest.cs" />
  397. <Compile Include="Sftp\Requests\SftpRenameRequest.cs" />
  398. <Compile Include="Sftp\Requests\SftpRequest.cs" />
  399. <Compile Include="Sftp\Requests\SftpRmDirRequest.cs" />
  400. <Compile Include="Sftp\Requests\SftpSetStatRequest.cs" />
  401. <Compile Include="Sftp\Requests\SftpStatRequest.cs" />
  402. <Compile Include="Sftp\Requests\SftpSymLinkRequest.cs" />
  403. <Compile Include="Sftp\Requests\SftpWriteRequest.cs" />
  404. <Compile Include="Sftp\Requests\ExtendedRequests\StatVfsRequest.cs">
  405. <SubType>Code</SubType>
  406. </Compile>
  407. <Compile Include="Sftp\Responses\ExtendedReplies\ExtendedReplyInfo.cs" />
  408. <Compile Include="Sftp\Responses\ExtendedReplies\StatVfsReplyInfo.cs" />
  409. <Compile Include="Sftp\Responses\SftpAttrsResponse.cs" />
  410. <Compile Include="Sftp\Responses\SftpDataResponse.cs" />
  411. <Compile Include="Sftp\Responses\SftpExtendedReplyResponse.cs" />
  412. <Compile Include="Sftp\Responses\SftpHandleResponse.cs" />
  413. <Compile Include="Sftp\Responses\SftpNameResponse.cs" />
  414. <Compile Include="Sftp\Responses\SftpResponse.cs" />
  415. <Compile Include="Sftp\Responses\SftpStatusResponse.cs" />
  416. <Compile Include="Sftp\Responses\SftpVersionResponse.cs" />
  417. <Compile Include="Sftp\SftpDownloadAsyncResult.cs" />
  418. <Compile Include="Sftp\SftpFile.cs" />
  419. <Compile Include="Sftp\SftpFileAttributes.cs" />
  420. <Compile Include="Sftp\SftpFileStream.cs" />
  421. <Compile Include="Sftp\SftpFileSystemInformation.cs">
  422. <SubType>Code</SubType>
  423. </Compile>
  424. <Compile Include="Sftp\SftpListDirectoryAsyncResult.cs" />
  425. <Compile Include="Sftp\SftpMessage.cs" />
  426. <Compile Include="Sftp\SftpMessageTypes.cs">
  427. <SubType>Code</SubType>
  428. </Compile>
  429. <Compile Include="Sftp\SftpSession.cs">
  430. <SubType>Code</SubType>
  431. </Compile>
  432. <Compile Include="Sftp\SftpSynchronizeDirectoriesAsyncResult.cs" />
  433. <Compile Include="Sftp\SftpUploadAsyncResult.cs" />
  434. <Compile Include="Sftp\StatusCodes.cs">
  435. <SubType>Code</SubType>
  436. </Compile>
  437. <Compile Include="Shell.cs" />
  438. <Compile Include="ShellStream.cs">
  439. <SubType>Code</SubType>
  440. </Compile>
  441. <Compile Include="SshClient.cs" />
  442. <Compile Include="SshCommand.cs" />
  443. <Compile Include="SshMessageFactory.cs" />
  444. <Compile Include="SubsystemSession.cs" />
  445. </ItemGroup>
  446. <ItemGroup>
  447. <None Include="..\Renci.SshNet.snk">
  448. <Link>Renci.SshNet.snk</Link>
  449. </None>
  450. <None Include="Documentation\Renci.SshNet.content" />
  451. </ItemGroup>
  452. <ItemGroup>
  453. <Content Include="Documentation\SshNet.shfbproj" />
  454. </ItemGroup>
  455. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  456. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  457. Other similar extension points exist, see Microsoft.Common.targets.
  458. <Target Name="BeforeBuild">
  459. </Target>
  460. <Target Name="AfterBuild">
  461. </Target>
  462. -->
  463. </Project>