| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
- <ProductVersion>
- </ProductVersion>
- <SchemaVersion>2.0</SchemaVersion>
- <ProjectGuid>{C45379B9-17B1-4E89-BC2E-6D41726413E8}</ProjectGuid>
- <OutputType>Library</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>Renci.SshNet.Tests</RootNamespace>
- <AssemblyName>Renci.SshNet.Tests</AssemblyName>
- <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
- <FileAlignment>512</FileAlignment>
- <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- <DebugSymbols>true</DebugSymbols>
- <DebugType>full</DebugType>
- <Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
- <DefineConstants>DEBUG;TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- <DebugType>pdbonly</DebugType>
- <Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
- <DefineConstants>TRACE</DefineConstants>
- <ErrorReport>prompt</ErrorReport>
- <WarningLevel>4</WarningLevel>
- </PropertyGroup>
- <PropertyGroup>
- <StartupObject>
- </StartupObject>
- </PropertyGroup>
- <ItemGroup>
- <Reference Include="Microsoft.CSharp" />
- <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
- <Reference Include="System" />
- <Reference Include="System.Core">
- <RequiredTargetFramework>3.5</RequiredTargetFramework>
- </Reference>
- <Reference Include="System.Data" />
- <Reference Include="System.Xml" />
- <Reference Include="System.Xml.Linq" />
- </ItemGroup>
- <ItemGroup>
- <CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies">
- <Visible>False</Visible>
- </CodeAnalysisDependentAssemblyPaths>
- </ItemGroup>
- <ItemGroup>
- <Compile Include="AuthenticationMethodDerivativesTest.cs" />
- <Compile Include="Common\PipeStreamTest.cs" />
- <Compile Include="ConnectionTest.cs" />
- <Compile Include="Properties\Resources.Designer.cs">
- <DependentUpon>Resources.resx</DependentUpon>
- <DesignTime>True</DesignTime>
- <AutoGen>True</AutoGen>
- </Compile>
- <Compile Include="ScpClientTests\UploadDownloadTest.cs">
- <SubType>Code</SubType>
- </Compile>
- <Compile Include="Security\Cryptography\Ciphers.cs" />
- <Compile Include="Security\TestCipher.cs" />
- <Compile Include="Security\TestHMac.cs" />
- <Compile Include="Security\TestHostKey.cs" />
- <Compile Include="Security\TestKeyExchange.cs" />
- <Compile Include="Security\TestPrivateKeyFile.cs" />
- <Compile Include="SftpClientTests\ChangeDirectory.cs" />
- <Compile Include="SftpClientTests\CreateDirectoryTest.cs" />
- <Compile Include="SftpClientTests\DeleteDirectoryTest.cs" />
- <Compile Include="SftpClientTests\DeleteFileTest.cs" />
- <Compile Include="SftpClientTests\GetTest.cs" />
- <Compile Include="SftpClientTests\ListDirectoryTest.cs" />
- <Compile Include="SftpClientTests\RenameFileTest.cs" />
- <Compile Include="SftpClientTests\SftpFileStreamTest.cs" />
- <Compile Include="SftpClientTests\SftpFileTest.cs" />
- <Compile Include="SftpClientTests\UploadDownloadFileTest.cs" />
- <Compile Include="SshClientTests\TestPortForwarding.NET40.cs" />
- <Compile Include="SshClientTests\TestSshCommand.NET40.cs" />
- <Compile Include="SshClientTests\TestPortForwarding.cs" />
- <Compile Include="Properties\AssemblyInfo.cs" />
- <Compile Include="SshClientTests\TestShell.cs" />
- <Compile Include="SshClientTests\TestSshCommand.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Renci.SshNet\Renci.SshNet.csproj">
- <Project>{2F5F8C90-0BD1-424F-997C-7BC6280919D1}</Project>
- <Name>Renci.SshClient</Name>
- </ProjectReference>
- </ItemGroup>
- <ItemGroup>
- <EmbeddedResource Include="Properties\Resources.resx">
- <Generator>ResXFileCodeGenerator</Generator>
- <LastGenOutput>Resources.Designer.cs</LastGenOutput>
- </EmbeddedResource>
- </ItemGroup>
- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
- <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
- Other similar extension points exist, see Microsoft.Common.targets.
- <Target Name="BeforeBuild">
- </Target>
- <Target Name="AfterBuild">
- </Target>
- -->
- </Project>
|