| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 | <?xml version="1.0" encoding="utf-8"?><Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">  <PropertyGroup>    <!-- The configuration and platform will be used to determine which         assemblies to include from solution and project documentation         sources -->    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>    <SchemaVersion>2.0</SchemaVersion>    <ProjectGuid>{f4b5a704-a7e7-4719-a343-ede32568762b}</ProjectGuid>    <SHFBSchemaVersion>1.9.5.0</SHFBSchemaVersion>    <!-- AssemblyName, Name, and RootNamespace are not used by SHFB but Visual         Studio adds them anyway -->    <AssemblyName>Documentation</AssemblyName>    <RootNamespace>Documentation</RootNamespace>    <Name>Documentation</Name>    <!-- SHFB properties -->    <OutputPath>.\Help\</OutputPath>    <HtmlHelpName>SshNet.Help</HtmlHelpName>    <Language>en-US</Language>    <SyntaxFilters>Standard</SyntaxFilters>    <SdkLinkTarget>Blank</SdkLinkTarget>    <RootNamespaceContainer>False</RootNamespaceContainer>    <PresentationStyle>VS2010</PresentationStyle>    <Preliminary>False</Preliminary>    <NamingMethod>Guid</NamingMethod>    <HelpTitle>SSH .NET Client Library Documentation</HelpTitle>    <ContentPlacement>AboveNamespaces</ContentPlacement>    <DocumentationSources>      <DocumentationSource sourceFile="..\bin\Debug\Renci.SshNet.dll" xmlns="" /><DocumentationSource sourceFile="..\bin\Debug\Renci.SshNet.xml" xmlns="" /></DocumentationSources>    <BuildAssemblerVerbosity>OnlyWarningsAndErrors</BuildAssemblerVerbosity>    <HelpFileFormat>HtmlHelp1</HelpFileFormat>    <IndentHtml>False</IndentHtml>    <FrameworkVersion>.NET Framework 4.0</FrameworkVersion>    <KeepLogFile>True</KeepLogFile>    <DisableCodeBlockComponent>False</DisableCodeBlockComponent>    <CppCommentsFixup>False</CppCommentsFixup>    <CleanIntermediates>True</CleanIntermediates>    <ComponentConfigurations />  </PropertyGroup>  <!-- There are no properties for these groups.  AnyCPU needs to appear in       order for Visual Studio to perform the build.  The others are optional       common platform types that may appear. -->  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|Win32' ">  </PropertyGroup>  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|Win32' ">  </PropertyGroup>  <!-- Import the SHFB build targets -->  <Import Project="$(SHFBROOT)\SandcastleHelpFileBuilder.targets" /></Project>
 |