| 12345678910111213141516171819202122232425262728293031323334353637383940 | <?xml version="1.0" encoding="utf-8"?><package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">    <metadata>        <id>SSH.NET</id>        <version>$version$</version>        <title>SSH.NET</title>        <authors>Renci</authors>        <owners>olegkap,drieseng</owners>        <license type="expression">MIT</license>        <projectUrl>https://github.com/sshnet/SSH.NET/</projectUrl>        <requireLicenseAcceptance>false</requireLicenseAcceptance>        <description>SSH.NET is a Secure Shell (SSH) library for .NET, optimized for parallelism and with broad framework support.</description>        <releaseNotes>https://github.com/sshnet/SSH.NET/releases/tag/$version$</releaseNotes>        <summary>A Secure Shell (SSH) library for .NET, optimized for parallelism.</summary>        <copyright>$copyright$</copyright>        <language>en-US</language>        <tags>ssh scp sftp</tags>        <dependencies>          <group targetFramework="net462">            <dependency id="Microsoft.Bcl.AsyncInterfaces" version="[7.0.0]" />          </group>          <group targetFramework="netstandard2.0">            <dependency id="Microsoft.Bcl.AsyncInterfaces" version="[7.0.0]" />            <dependency id="SshNet.Security.Cryptography" version="[1.3.0]" />          </group>                    <group targetFramework="netstandard2.1">            <dependency id="SshNet.Security.Cryptography" version="[1.3.0]" />          </group>          <group targetFramework="net6.0">            <dependency id="SshNet.Security.Cryptography" version="[1.3.0]" />          </group>          <group targetFramework="net7.0">            <dependency id="SshNet.Security.Cryptography" version="[1.3.0]" />          </group>          <group targetFramework="net8.0">            <dependency id="SshNet.Security.Cryptography" version="[1.3.0]" />          </group>        </dependencies>    </metadata></package>
 |