| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 | <?xml version="1.0" encoding="utf-8"?><Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">  <PropertyGroup>    <!-- A target framework version is required by Visual Studio. It can be any version with a targeting pack installed. -->    <TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>    <!-- 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>{f7266fb1-f50a-4a5b-b35a-5ea8ebdc1be9}</ProjectGuid>    <SHFBSchemaVersion>2017.9.26.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 -->    <FrameworkVersion>.NET Framework 4.6.2</FrameworkVersion>    <OutputPath>..\target\help</OutputPath>    <HtmlHelpName>SshNet.Help</HtmlHelpName>    <Language>en-US</Language>    <MaximumGroupParts>2</MaximumGroupParts>    <NamespaceGrouping>False</NamespaceGrouping>    <SyntaxFilters>C#</SyntaxFilters>    <SdkLinkTarget>Blank</SdkLinkTarget>    <RootNamespaceContainer>False</RootNamespaceContainer>    <PresentationStyle>VS2013</PresentationStyle>    <Preliminary>False</Preliminary>    <NamingMethod>Guid</NamingMethod>    <HelpTitle>SSH.NET Client Library Documentation</HelpTitle>    <ContentPlacement>AboveNamespaces</ContentPlacement>    <DocumentationSources>      <DocumentationSource sourceFile="..\..\src\Renci.SshNet\bin\Release\net462\Renci.SshNet.dll" xmlns="" />      <DocumentationSource sourceFile="..\..\src\Renci.SshNet\bin\Release\net462\Renci.SshNet.xml" xmlns="" />    </DocumentationSources>    <MissingTags>Summary, Parameter, Returns, AutoDocumentCtors, TypeParameter, AutoDocumentDispose</MissingTags>    <BuildAssemblerVerbosity>OnlyWarningsAndErrors</BuildAssemblerVerbosity>    <HelpFileFormat>HtmlHelp1</HelpFileFormat>    <IndentHtml>False</IndentHtml>    <KeepLogFile>False</KeepLogFile>    <DisableCodeBlockComponent>False</DisableCodeBlockComponent>    <CppCommentsFixup>False</CppCommentsFixup>    <CleanIntermediates>True</CleanIntermediates>  </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>
 |