Renci.SshNet.Tests.csproj 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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>
  7. </ProductVersion>
  8. <SchemaVersion>2.0</SchemaVersion>
  9. <ProjectGuid>{C45379B9-17B1-4E89-BC2E-6D41726413E8}</ProjectGuid>
  10. <OutputType>Library</OutputType>
  11. <AppDesignerFolder>Properties</AppDesignerFolder>
  12. <RootNamespace>Renci.SshNet.Tests</RootNamespace>
  13. <AssemblyName>Renci.SshNet.Tests</AssemblyName>
  14. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  15. <FileAlignment>512</FileAlignment>
  16. <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
  17. <SccProjectName>SAK</SccProjectName>
  18. <SccLocalPath>SAK</SccLocalPath>
  19. <SccAuxPath>SAK</SccAuxPath>
  20. <SccProvider>SAK</SccProvider>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  23. <DebugSymbols>true</DebugSymbols>
  24. <DebugType>full</DebugType>
  25. <Optimize>false</Optimize>
  26. <OutputPath>bin\Debug\</OutputPath>
  27. <DefineConstants>DEBUG;TRACE</DefineConstants>
  28. <ErrorReport>prompt</ErrorReport>
  29. <WarningLevel>4</WarningLevel>
  30. </PropertyGroup>
  31. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  32. <DebugType>pdbonly</DebugType>
  33. <Optimize>true</Optimize>
  34. <OutputPath>bin\Release\</OutputPath>
  35. <DefineConstants>TRACE</DefineConstants>
  36. <ErrorReport>prompt</ErrorReport>
  37. <WarningLevel>4</WarningLevel>
  38. </PropertyGroup>
  39. <PropertyGroup>
  40. <StartupObject>
  41. </StartupObject>
  42. </PropertyGroup>
  43. <ItemGroup>
  44. <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
  45. <Reference Include="System" />
  46. <Reference Include="System.Core">
  47. <RequiredTargetFramework>3.5</RequiredTargetFramework>
  48. </Reference>
  49. </ItemGroup>
  50. <ItemGroup>
  51. <CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies">
  52. <Visible>False</Visible>
  53. </CodeAnalysisDependentAssemblyPaths>
  54. </ItemGroup>
  55. <ItemGroup>
  56. <Compile Include="ConnectionTest.cs" />
  57. <Compile Include="Properties\Resources.Designer.cs">
  58. <DependentUpon>Resources.resx</DependentUpon>
  59. <DesignTime>True</DesignTime>
  60. <AutoGen>True</AutoGen>
  61. </Compile>
  62. <Compile Include="Security\Cryptography\Ciphers.cs" />
  63. <Compile Include="Security\TestCipher.cs" />
  64. <Compile Include="Security\TestHMac.cs" />
  65. <Compile Include="Security\TestHostKey.cs" />
  66. <Compile Include="Security\TestKeyExchange.cs" />
  67. <Compile Include="Security\TestPrivateKeyFile.cs" />
  68. <Compile Include="SftpClientTests\ChangeDirectory.cs" />
  69. <Compile Include="SftpClientTests\CreateDirectoryTest.cs" />
  70. <Compile Include="SftpClientTests\DeleteDirectoryTest.cs" />
  71. <Compile Include="SftpClientTests\DeleteFileTest.cs" />
  72. <Compile Include="SftpClientTests\GetTest.cs" />
  73. <Compile Include="SftpClientTests\ListDirectoryTest.cs" />
  74. <Compile Include="SftpClientTests\RenameFileTest.cs" />
  75. <Compile Include="SftpClientTests\SftpFileStreamTest.cs" />
  76. <Compile Include="SftpClientTests\SftpFileTest.cs" />
  77. <Compile Include="SftpClientTests\UploadDownloadFileTest.cs" />
  78. <Compile Include="SshClientTests\TestPortForwarding.NET40.cs" />
  79. <Compile Include="SshClientTests\TestSshCommand.NET40.cs" />
  80. <Compile Include="SshClientTests\TestPortForwarding.cs" />
  81. <Compile Include="Properties\AssemblyInfo.cs" />
  82. <Compile Include="SshClientTests\TestShell.cs" />
  83. <Compile Include="SshClientTests\TestSshCommand.cs" />
  84. </ItemGroup>
  85. <ItemGroup>
  86. <ProjectReference Include="..\Renci.SshNet\Renci.SshNet.csproj">
  87. <Project>{2F5F8C90-0BD1-424F-997C-7BC6280919D1}</Project>
  88. <Name>Renci.SshClient</Name>
  89. </ProjectReference>
  90. </ItemGroup>
  91. <ItemGroup>
  92. <EmbeddedResource Include="Properties\Resources.resx">
  93. <Generator>ResXFileCodeGenerator</Generator>
  94. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  95. </EmbeddedResource>
  96. </ItemGroup>
  97. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  98. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  99. Other similar extension points exist, see Microsoft.Common.targets.
  100. <Target Name="BeforeBuild">
  101. </Target>
  102. <Target Name="AfterBuild">
  103. </Target>
  104. -->
  105. </Project>