Renci.SshNet.csproj 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  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>DEBUG;TRACE</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>pdbonly</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. </PropertyGroup>
  39. <ItemGroup>
  40. <Reference Include="System" />
  41. <Reference Include="System.Core" />
  42. <Reference Include="System.Xml.Linq" />
  43. <Reference Include="Microsoft.CSharp" />
  44. <Reference Include="System.Data" />
  45. <Reference Include="System.Xml" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <Compile Include="BaseClient.cs" />
  49. <Compile Include="ChannelAsyncResult.cs" />
  50. <Compile Include="Channels\Channel.cs" />
  51. <Compile Include="Channels\ChannelDirectTcpip.cs" />
  52. <Compile Include="Channels\ChannelDirectTcpip.NET40.cs" />
  53. <Compile Include="Channels\ChannelForwardedTcpip.cs" />
  54. <Compile Include="Channels\ChannelForwardedTcpip.NET40.cs" />
  55. <Compile Include="Channels\ChannelSession.cs" />
  56. <Compile Include="Channels\ChannelTypes.cs" />
  57. <Compile Include="CipherInfo.cs" />
  58. <Compile Include="Common\ASCIIEncoding.cs" />
  59. <Compile Include="Common\AsyncResult.cs" />
  60. <Compile Include="Common\AuthenticationBannerEventArgs.cs" />
  61. <Compile Include="Common\AuthenticationEventArgs.cs" />
  62. <Compile Include="Common\AuthenticationPasswordChangeEventArgs.cs" />
  63. <Compile Include="Common\AuthenticationPrompt.cs" />
  64. <Compile Include="Common\AuthenticationPromptEventArgs.cs" />
  65. <Compile Include="Common\BigInteger.cs">
  66. <SubType>Code</SubType>
  67. </Compile>
  68. <Compile Include="Common\ChannelDataEventArgs.cs" />
  69. <Compile Include="Common\ChannelEventArgs.cs" />
  70. <Compile Include="Common\ChannelOpenFailedEventArgs.cs" />
  71. <Compile Include="Common\ChannelRequestEventArgs.cs" />
  72. <Compile Include="Common\ProxyException.cs">
  73. <SubType>Code</SubType>
  74. </Compile>
  75. <Compile Include="Common\ProxyException.NET40.cs" />
  76. <Compile Include="Common\HostKeyEventArgs.cs" />
  77. <Compile Include="Common\NetConfServerException.NET40.cs" />
  78. <Compile Include="Common\DerData.cs" />
  79. <Compile Include="Common\ExceptionEventArgs.cs" />
  80. <Compile Include="Common\Extensions.cs">
  81. <SubType>Code</SubType>
  82. </Compile>
  83. <Compile Include="Common\Extensions.NET40.cs">
  84. <SubType>Code</SubType>
  85. </Compile>
  86. <Compile Include="Common\NetConfServerException.cs" />
  87. <Compile Include="Common\ObjectIdentifier.cs" />
  88. <Compile Include="Common\PipeStream.cs" />
  89. <Compile Include="Common\PortForwardEventArgs.cs">
  90. <SubType>Code</SubType>
  91. </Compile>
  92. <Compile Include="Common\ScpDownloadEventArgs.cs">
  93. <SubType>Code</SubType>
  94. </Compile>
  95. <Compile Include="Common\ScpException.cs">
  96. <SubType>Code</SubType>
  97. </Compile>
  98. <Compile Include="Common\ScpException.NET40.cs">
  99. <SubType>Code</SubType>
  100. </Compile>
  101. <Compile Include="Common\ScpUploadEventArgs.cs">
  102. <SubType>Code</SubType>
  103. </Compile>
  104. <Compile Include="Common\SemaphoreLight.cs">
  105. <SubType>Code</SubType>
  106. </Compile>
  107. <Compile Include="Common\SftpPathNotFoundException.cs" />
  108. <Compile Include="Common\SftpPathNotFoundException.NET40.cs" />
  109. <Compile Include="Common\SftpPermissionDeniedException.cs" />
  110. <Compile Include="Common\SftpPermissionDeniedException.NET40.cs" />
  111. <Compile Include="Common\SshAuthenticationException.cs" />
  112. <Compile Include="Common\SshAuthenticationException.NET40.cs" />
  113. <Compile Include="Common\SshConnectionException.cs" />
  114. <Compile Include="Common\SshConnectionException.NET40.cs" />
  115. <Compile Include="Common\SshData.cs" />
  116. <Compile Include="Common\SshException.cs" />
  117. <Compile Include="Common\SshException.NET40.cs" />
  118. <Compile Include="Common\SshOperationTimeoutException.cs" />
  119. <Compile Include="Common\SshOperationTimeoutException.NET40.cs" />
  120. <Compile Include="Common\SshPassPhraseNullOrEmptyException.cs" />
  121. <Compile Include="Common\SshPassPhraseNullOrEmptyException.NET40.cs" />
  122. <Compile Include="Compression\CompressionMode.cs" />
  123. <Compile Include="Compression\Compressor.cs" />
  124. <Compile Include="Compression\Zlib.cs" />
  125. <Compile Include="Compression\ZlibOpenSsh.cs" />
  126. <Compile Include="Compression\ZlibStream.cs">
  127. <SubType>Code</SubType>
  128. </Compile>
  129. <Compile Include="ConnectionInfo.cs">
  130. <SubType>Code</SubType>
  131. </Compile>
  132. <Compile Include="ForwardedPortDynamic.cs">
  133. <SubType>Code</SubType>
  134. </Compile>
  135. <Compile Include="ForwardedPortDynamic.NET.cs" />
  136. <Compile Include="ForwardedPortDynamic.NET40.cs">
  137. <SubType>Code</SubType>
  138. </Compile>
  139. <Compile Include="ForwardedPortLocal.NET.cs" />
  140. <Compile Include="ProxyTypes.cs">
  141. <SubType>Code</SubType>
  142. </Compile>
  143. <Compile Include="ScpClient.cs">
  144. <SubType>Code</SubType>
  145. </Compile>
  146. <Compile Include="ScpClient.NET.cs" />
  147. <Compile Include="ForwardedPort.cs" />
  148. <Compile Include="ForwardedPortLocal.cs">
  149. <SubType>Code</SubType>
  150. </Compile>
  151. <Compile Include="ForwardedPortLocal.NET40.cs">
  152. <SubType>Code</SubType>
  153. </Compile>
  154. <Compile Include="ForwardedPortRemote.cs" />
  155. <Compile Include="ForwardedPortRemote.NET40.cs" />
  156. <Compile Include="KeyboardInteractiveConnectionInfo.cs" />
  157. <Compile Include="KeyboardInteractiveConnectionInfo.NET40.cs" />
  158. <Compile Include="MessageEventArgs.cs" />
  159. <Compile Include="Messages\Authentication\BannerMessage.cs" />
  160. <Compile Include="Messages\Authentication\FailureMessage.cs" />
  161. <Compile Include="Messages\Authentication\InformationRequestMessage.cs" />
  162. <Compile Include="Messages\Authentication\InformationResponseMessage.cs" />
  163. <Compile Include="Messages\Authentication\PasswordChangeRequiredMessage.cs" />
  164. <Compile Include="Messages\Authentication\PublicKeyMessage.cs" />
  165. <Compile Include="Messages\Authentication\RequestMessage.cs">
  166. <SubType>Code</SubType>
  167. </Compile>
  168. <Compile Include="Messages\Authentication\RequestMessageHost.cs" />
  169. <Compile Include="Messages\Authentication\RequestMessageKeyboardInteractive.cs" />
  170. <Compile Include="Messages\Authentication\RequestMessageNone.cs" />
  171. <Compile Include="Messages\Authentication\RequestMessagePassword.cs" />
  172. <Compile Include="Messages\Authentication\RequestMessagePublicKey.cs" />
  173. <Compile Include="Messages\Authentication\SuccessMessage.cs" />
  174. <Compile Include="Messages\Connection\ChannelCloseMessage.cs" />
  175. <Compile Include="Messages\Connection\ChannelDataMessage.cs" />
  176. <Compile Include="Messages\Connection\ChannelEofMessage.cs" />
  177. <Compile Include="Messages\Connection\ChannelExtendedDataMessage.cs" />
  178. <Compile Include="Messages\Connection\ChannelFailureMessage.cs" />
  179. <Compile Include="Messages\Connection\ChannelMessage.cs" />
  180. <Compile Include="Messages\Connection\ChannelOpenConfirmationMessage.cs" />
  181. <Compile Include="Messages\Connection\ChannelOpenFailureMessage.cs" />
  182. <Compile Include="Messages\Connection\ChannelOpenFailureReasons.cs" />
  183. <Compile Include="Messages\Connection\ChannelOpen\ChannelOpenInfo.cs" />
  184. <Compile Include="Messages\Connection\ChannelOpen\ChannelOpenMessage.cs" />
  185. <Compile Include="Messages\Connection\ChannelOpen\DirectTcpipChannelInfo.cs" />
  186. <Compile Include="Messages\Connection\ChannelOpen\ForwardedTcpipChannelInfo.cs" />
  187. <Compile Include="Messages\Connection\ChannelOpen\SessionChannelOpenInfo.cs" />
  188. <Compile Include="Messages\Connection\ChannelOpen\X11ChannelOpenInfo.cs" />
  189. <Compile Include="Messages\Connection\ChannelRequest\BreakRequestInfo.cs" />
  190. <Compile Include="Messages\Connection\ChannelRequest\ChannelRequestMessage.cs" />
  191. <Compile Include="Messages\Connection\ChannelRequest\EndOfWriteRequestInfo.cs" />
  192. <Compile Include="Messages\Connection\ChannelRequest\EnvironmentVariableRequestInfo.cs" />
  193. <Compile Include="Messages\Connection\ChannelRequest\ExecRequestInfo.cs" />
  194. <Compile Include="Messages\Connection\ChannelRequest\ExitSignalRequestInfo.cs" />
  195. <Compile Include="Messages\Connection\ChannelRequest\ExitStatusRequestInfo.cs" />
  196. <Compile Include="Messages\Connection\ChannelRequest\KeepAliveRequestInfo.cs" />
  197. <Compile Include="Messages\Connection\ChannelRequest\PseudoTerminalInfo.cs" />
  198. <Compile Include="Messages\Connection\ChannelRequest\RequestInfo.cs" />
  199. <Compile Include="Messages\Connection\ChannelRequest\ShellRequestInfo.cs" />
  200. <Compile Include="Messages\Connection\ChannelRequest\SignalRequestInfo.cs" />
  201. <Compile Include="Messages\Connection\ChannelRequest\SubsystemRequestInfo.cs" />
  202. <Compile Include="Messages\Connection\ChannelRequest\WindowChangeRequestInfo.cs" />
  203. <Compile Include="Messages\Connection\ChannelRequest\X11ForwardingRequestInfo.cs" />
  204. <Compile Include="Messages\Connection\ChannelRequest\XonXoffRequestInfo.cs" />
  205. <Compile Include="Messages\Connection\ChannelSuccessMessage.cs" />
  206. <Compile Include="Messages\Connection\ChannelWindowAdjustMessage.cs" />
  207. <Compile Include="Messages\Connection\GlobalRequestMessage.cs" />
  208. <Compile Include="Messages\Connection\GlobalRequestName.cs" />
  209. <Compile Include="Messages\Connection\RequestFailureMessage.cs" />
  210. <Compile Include="Messages\Connection\RequestSuccessMessage.cs" />
  211. <Compile Include="Messages\Message.cs">
  212. <SubType>Code</SubType>
  213. </Compile>
  214. <Compile Include="Messages\MessageAttribute.cs" />
  215. <Compile Include="Messages\ServiceName.cs" />
  216. <Compile Include="Messages\Transport\DebugMessage.cs" />
  217. <Compile Include="Messages\Transport\DisconnectMessage.cs">
  218. <SubType>Code</SubType>
  219. </Compile>
  220. <Compile Include="Messages\Transport\DisconnectReason.cs" />
  221. <Compile Include="Messages\Transport\IgnoreMessage.cs" />
  222. <Compile Include="Messages\Transport\KeyExchangeDhGroupExchangeGroup.cs" />
  223. <Compile Include="Messages\Transport\KeyExchangeDhGroupExchangeInit.cs" />
  224. <Compile Include="Messages\Transport\KeyExchangeDhGroupExchangeReply.cs" />
  225. <Compile Include="Messages\Transport\KeyExchangeDhGroupExchangeRequest.cs" />
  226. <Compile Include="Messages\Transport\KeyExchangeDhInitMessage.cs">
  227. <SubType>Code</SubType>
  228. </Compile>
  229. <Compile Include="Messages\Transport\KeyExchangeDhReplyMessage.cs">
  230. <SubType>Code</SubType>
  231. </Compile>
  232. <Compile Include="Messages\Transport\KeyExchangeInitMessage.cs">
  233. <SubType>Code</SubType>
  234. </Compile>
  235. <Compile Include="Messages\Transport\NewKeysMessage.cs">
  236. <SubType>Code</SubType>
  237. </Compile>
  238. <Compile Include="Messages\Transport\ServiceAcceptMessage.cs" />
  239. <Compile Include="Messages\Transport\ServiceRequestMessage.cs" />
  240. <Compile Include="Messages\Transport\UnimplementedMessage.cs" />
  241. <Compile Include="NetConfClient.cs" />
  242. <Compile Include="Netconf\NetConfSession.cs" />
  243. <Compile Include="NoneConnectionInfo.cs" />
  244. <Compile Include="PasswordConnectionInfo.cs" />
  245. <Compile Include="PasswordConnectionInfo.NET40.cs" />
  246. <Compile Include="PrivateKeyConnectionInfo.cs" />
  247. <Compile Include="PrivateKeyFile.cs" />
  248. <Compile Include="Properties\AssemblyInfo.cs" />
  249. <Compile Include="Security\Algorithm.cs">
  250. <SubType>Code</SubType>
  251. </Compile>
  252. <Compile Include="Security\CertificateHostAlgorithm.cs" />
  253. <Compile Include="Security\Cryptography\AsymmetricCipher.cs" />
  254. <Compile Include="Security\Cryptography\BlockCipher.cs" />
  255. <Compile Include="Security\Cryptography\Cipher.cs" />
  256. <Compile Include="Security\Cryptography\CipherDigitalSignature.cs" />
  257. <Compile Include="Security\Cryptography\Ciphers\AesCipher.cs" />
  258. <Compile Include="Security\Cryptography\Ciphers\Arc4Cipher.cs" />
  259. <Compile Include="Security\Cryptography\Ciphers\BlowfishCipher.cs" />
  260. <Compile Include="Security\Cryptography\Ciphers\CastCipher.cs" />
  261. <Compile Include="Security\Cryptography\Ciphers\CipherMode.cs" />
  262. <Compile Include="Security\Cryptography\Ciphers\CipherPadding.cs" />
  263. <Compile Include="Security\Cryptography\Ciphers\DesCipher.cs" />
  264. <Compile Include="Security\Cryptography\Ciphers\Modes\CbcCipherMode.cs" />
  265. <Compile Include="Security\Cryptography\Ciphers\Modes\CfbCipherMode.cs" />
  266. <Compile Include="Security\Cryptography\Ciphers\Modes\CtrCipherMode.cs" />
  267. <Compile Include="Security\Cryptography\Ciphers\Modes\OfbCipherMode.cs" />
  268. <Compile Include="Security\Cryptography\Ciphers\Paddings\PKCS7Padding.cs" />
  269. <Compile Include="Security\Cryptography\Ciphers\RsaCipher.cs">
  270. <SubType>Code</SubType>
  271. </Compile>
  272. <Compile Include="Security\Cryptography\Ciphers\SerpentCipher.cs" />
  273. <Compile Include="Security\Cryptography\Ciphers\TripleDesCipher.cs" />
  274. <Compile Include="Security\Cryptography\Ciphers\TwofishCipher.cs" />
  275. <Compile Include="Security\Cryptography\DigitalSignature.cs">
  276. <SubType>Code</SubType>
  277. </Compile>
  278. <Compile Include="Security\Cryptography\DsaDigitalSignature.cs">
  279. <SubType>Code</SubType>
  280. </Compile>
  281. <Compile Include="Security\Cryptography\DsaKey.cs">
  282. <SubType>Code</SubType>
  283. </Compile>
  284. <Compile Include="Security\Cryptography\Hashes\MD5Hash.cs">
  285. <SubType>Code</SubType>
  286. </Compile>
  287. <Compile Include="Security\Cryptography\Hashes\SHA1Hash.cs">
  288. <SubType>Code</SubType>
  289. </Compile>
  290. <Compile Include="Security\Cryptography\Hashes\SHA256Hash.cs">
  291. <SubType>Code</SubType>
  292. </Compile>
  293. <Compile Include="Security\Cryptography\HMac.cs">
  294. <SubType>Code</SubType>
  295. </Compile>
  296. <Compile Include="Security\Cryptography\Key.cs">
  297. <SubType>Code</SubType>
  298. </Compile>
  299. <Compile Include="Security\Cryptography\RsaDigitalSignature.cs">
  300. <SubType>Code</SubType>
  301. </Compile>
  302. <Compile Include="Security\Cryptography\RsaKey.cs">
  303. <SubType>Code</SubType>
  304. </Compile>
  305. <Compile Include="Security\Cryptography\StreamCipher.cs" />
  306. <Compile Include="Security\Cryptography\SymmetricCipher.cs" />
  307. <Compile Include="Security\HostAlgorithm.cs" />
  308. <Compile Include="Security\KeyExchange.cs">
  309. <SubType>Code</SubType>
  310. </Compile>
  311. <Compile Include="Security\KeyExchangeDiffieHellman.cs">
  312. <SubType>Code</SubType>
  313. </Compile>
  314. <Compile Include="Security\KeyExchangeDiffieHellmanGroup14Sha1.cs">
  315. <SubType>Code</SubType>
  316. </Compile>
  317. <Compile Include="Security\KeyExchangeDiffieHellmanGroup1Sha1.cs">
  318. <SubType>Code</SubType>
  319. </Compile>
  320. <Compile Include="Security\KeyExchangeDiffieHellmanGroupExchangeSha1.cs">
  321. <SubType>Code</SubType>
  322. </Compile>
  323. <Compile Include="Security\KeyExchangeDiffieHellmanGroupExchangeSha256.cs">
  324. <SubType>Code</SubType>
  325. </Compile>
  326. <Compile Include="Security\KeyHostAlgorithm.cs" />
  327. <Compile Include="Session.cs">
  328. <SubType>Code</SubType>
  329. </Compile>
  330. <Compile Include="Session.NET.cs">
  331. <SubType>Code</SubType>
  332. </Compile>
  333. <Compile Include="Session.NET40.cs">
  334. <SubType>Code</SubType>
  335. </Compile>
  336. <Compile Include="SftpClient.cs">
  337. <SubType>Code</SubType>
  338. </Compile>
  339. <Compile Include="SftpClient.NET40.cs" />
  340. <Compile Include="Sftp\Flags.cs" />
  341. <Compile Include="Sftp\Requests\SftpCloseRequest.cs" />
  342. <Compile Include="Sftp\Requests\SftpFSetStatRequest.cs" />
  343. <Compile Include="Sftp\Requests\SftpFStatRequest.cs" />
  344. <Compile Include="Sftp\Requests\SftpInitRequest.cs" />
  345. <Compile Include="Sftp\Requests\SftpLStatRequest.cs" />
  346. <Compile Include="Sftp\Requests\SftpMkDirRequest.cs" />
  347. <Compile Include="Sftp\Requests\SftpOpenDirRequest.cs" />
  348. <Compile Include="Sftp\Requests\SftpOpenRequest.cs" />
  349. <Compile Include="Sftp\Requests\SftpReadDirRequest.cs" />
  350. <Compile Include="Sftp\Requests\SftpReadLinkRequest.cs" />
  351. <Compile Include="Sftp\Requests\SftpReadRequest.cs" />
  352. <Compile Include="Sftp\Requests\SftpRealPathRequest.cs" />
  353. <Compile Include="Sftp\Requests\SftpRemoveRequest.cs" />
  354. <Compile Include="Sftp\Requests\SftpRenameRequest.cs" />
  355. <Compile Include="Sftp\Requests\SftpRequest.cs" />
  356. <Compile Include="Sftp\Requests\SftpRmDirRequest.cs" />
  357. <Compile Include="Sftp\Requests\SftpSetStatRequest.cs" />
  358. <Compile Include="Sftp\Requests\SftpStatRequest.cs" />
  359. <Compile Include="Sftp\Requests\SftpSymLinkRequest.cs" />
  360. <Compile Include="Sftp\Requests\SftpWriteRequest.cs" />
  361. <Compile Include="Sftp\Responses\SftpAttrsResponse.cs" />
  362. <Compile Include="Sftp\Responses\SftpDataResponse.cs" />
  363. <Compile Include="Sftp\Responses\SftpExtendedReplyResponse.cs" />
  364. <Compile Include="Sftp\Responses\SftpHandleResponse.cs" />
  365. <Compile Include="Sftp\Responses\SftpNameResponse.cs" />
  366. <Compile Include="Sftp\Responses\SftpResponse.cs" />
  367. <Compile Include="Sftp\Responses\SftpStatusResponse.cs" />
  368. <Compile Include="Sftp\Responses\SftpVersionResponse.cs" />
  369. <Compile Include="Sftp\SftpDataMessage.cs">
  370. <SubType>Code</SubType>
  371. </Compile>
  372. <Compile Include="Sftp\SftpDownloadAsyncResult.cs" />
  373. <Compile Include="Sftp\SftpFile.cs" />
  374. <Compile Include="Sftp\SftpFileAttributes.cs" />
  375. <Compile Include="Sftp\SftpFileStream.cs" />
  376. <Compile Include="Sftp\SftpListDirectoryAsyncResult.cs" />
  377. <Compile Include="Sftp\SftpMessage.cs" />
  378. <Compile Include="Sftp\SftpMessageTypes.cs">
  379. <SubType>Code</SubType>
  380. </Compile>
  381. <Compile Include="Sftp\SftpSession.cs">
  382. <SubType>Code</SubType>
  383. </Compile>
  384. <Compile Include="Sftp\SftpUploadAsyncResult.cs" />
  385. <Compile Include="Sftp\StatusCodes.cs">
  386. <SubType>Code</SubType>
  387. </Compile>
  388. <Compile Include="Shell.cs" />
  389. <Compile Include="Shell.NET40.cs" />
  390. <Compile Include="SshClient.cs" />
  391. <Compile Include="SshCommand.cs" />
  392. <Compile Include="SshCommand.NET40.cs" />
  393. <Compile Include="SubsystemSession.cs" />
  394. </ItemGroup>
  395. <ItemGroup>
  396. <None Include="Documentation\Content\About.aml" />
  397. <None Include="Documentation\Content\Guide\Connection\Interactive.aml" />
  398. <None Include="Documentation\Content\Guide\Connection\Overview.aml" />
  399. <None Include="Documentation\Content\Guide\Connection\Password.aml" />
  400. <None Include="Documentation\Content\Guide\Connection\PrivateKey.aml" />
  401. <None Include="Documentation\Content\Guide\Errors.aml" />
  402. <None Include="Documentation\Content\Guide\NetConfClient\Overview.aml" />
  403. <None Include="Documentation\Content\Guide\Overview.aml" />
  404. <None Include="Documentation\Content\Guide\ScpClient\Overview.aml" />
  405. <None Include="Documentation\Content\Guide\SftpClient\Overview.aml" />
  406. <None Include="Documentation\Content\Guide\SftpClient\SftpFile.aml" />
  407. <None Include="Documentation\Content\Guide\SftpClient\SftpFileStream.aml" />
  408. <None Include="Documentation\Content\Guide\SftpClient\SftpOperations.aml" />
  409. <None Include="Documentation\Content\Guide\SshClient\Commands\Asynchronous.aml" />
  410. <None Include="Documentation\Content\Guide\SshClient\Commands\Errors.aml" />
  411. <None Include="Documentation\Content\Guide\SshClient\Commands\Execute.aml" />
  412. <None Include="Documentation\Content\Guide\SshClient\Commands\Multitasking.aml" />
  413. <None Include="Documentation\Content\Guide\SshClient\Commands\Overview.aml" />
  414. <None Include="Documentation\Content\Guide\SshClient\Commands\StatusCode.aml" />
  415. <None Include="Documentation\Content\Guide\SshClient\Commands\Timeout.aml" />
  416. <None Include="Documentation\Content\Guide\SshClient\Overview.aml" />
  417. <None Include="Documentation\Content\Guide\SshClient\PortForwarding\Local.aml" />
  418. <None Include="Documentation\Content\Guide\SshClient\PortForwarding\Overview.aml" />
  419. <None Include="Documentation\Content\Guide\SshClient\PortForwarding\Remote.aml" />
  420. <None Include="Documentation\Content\Guide\SshClient\Shell\Overview.aml" />
  421. <None Include="Documentation\Content\Reference.aml" />
  422. <None Include="Documentation\Renci.SshClient.content" />
  423. </ItemGroup>
  424. <ItemGroup>
  425. <Content Include="Documentation\SshClient.shfbproj" />
  426. </ItemGroup>
  427. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  428. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  429. Other similar extension points exist, see Microsoft.Common.targets.
  430. <Target Name="BeforeBuild">
  431. </Target>
  432. <Target Name="AfterBuild">
  433. </Target>
  434. -->
  435. </Project>