Renci.SshNet.csproj 24 KB

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