Renci.SshNet.csproj 23 KB

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