| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | <Project>    <Import Project="$(MSBuildThisFileFullPath).user" Condition="Exists('$(MSBuildThisFileFullPath).user')" />        <!--        Assembly Info properties that apply to all projects/assemblies.    -->    <PropertyGroup>        <SignAssembly>true</SignAssembly>        <AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)src\Renci.SshNet.snk</AssemblyOriginatorKeyFile>        <GenerateDocumentationFile>true</GenerateDocumentationFile>        <LangVersion>latest</LangVersion>        <WarningLevel>9999</WarningLevel>        <TreatWarningsAsErrors>true</TreatWarningsAsErrors>        <AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>    </PropertyGroup>    <!--        Code analysis properties.    -->    <PropertyGroup>        <EnableNETAnalyzers>false</EnableNETAnalyzers>        <AnalysisLevel>preview-All</AnalysisLevel>        <EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>    </PropertyGroup>    <!--        Add the stylecop config to each project.    -->    <ItemGroup>        <AdditionalFiles Include="..\..\stylecop.json" Link="stylecop.json" />    </ItemGroup>    <!--        Use fixed version of analyzers.    -->    <ItemGroup>        <!--        <PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0-preview1.23165.1" PrivateAssets="all" />        <PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.435" PrivateAssets="all" />        <PackageReference Include="Meziantou.Analyzer" Version="2.0.54" PrivateAssets="all" />        <PackageReference Include="SonarAnalyzer.CSharp" Version="8.55.0.65544" PrivateAssets="all" />        -->            </ItemGroup></Project>
 |