mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-10 09:15:47 +00:00
Update dependencies (#1492)
This commit is contained in:
@@ -5,22 +5,22 @@
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<PackageVersion Include="Appveyor.TestLogger" Version="2.0.0" />
|
||||
<PackageVersion Include="BenchmarkDotNet" Version="0.13.12" />
|
||||
<PackageVersion Include="BenchmarkDotNet" Version="0.14.0" />
|
||||
<PackageVersion Include="BouncyCastle.Cryptography" Version="2.4.0" />
|
||||
<PackageVersion Include="coverlet.collector" Version="6.0.0" />
|
||||
<PackageVersion Include="coverlet.msbuild" Version="6.0.0" />
|
||||
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
|
||||
<PackageVersion Include="coverlet.msbuild" Version="6.0.2" />
|
||||
<PackageVersion Include="LiquidTestReports.Markdown" Version="1.0.9" />
|
||||
<PackageVersion Include="Meziantou.Analyzer" Version="2.0.141" />
|
||||
<PackageVersion Include="Meziantou.Analyzer" Version="2.0.163" />
|
||||
<!-- Must be kept at version 1.0.0 or higher, see https://github.com/sshnet/SSH.NET/pull/1288 for details. -->
|
||||
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="1.0.0" />
|
||||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
|
||||
<PackageVersion Include="MSTest.TestAdapter" Version="3.2.1" />
|
||||
<PackageVersion Include="MSTest.TestFramework" Version="3.2.1" />
|
||||
<PackageVersion Include="Moq" Version="4.18.4" />
|
||||
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
|
||||
<PackageVersion Include="MSTest.TestAdapter" Version="3.6.0" />
|
||||
<PackageVersion Include="MSTest.TestFramework" Version="3.6.0" />
|
||||
<PackageVersion Include="Moq" Version="4.20.72" />
|
||||
<PackageVersion Include="Nerdbank.GitVersioning" Version="3.7.70-alpha" />
|
||||
<PackageVersion Include="SonarAnalyzer.CSharp" Version="9.19.0.84025" />
|
||||
<PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.556" />
|
||||
<PackageVersion Include="System.Formats.Asn1" Version="8.0.1" />
|
||||
<PackageVersion Include="Testcontainers" Version="3.9.0" />
|
||||
<PackageVersion Include="Testcontainers" Version="3.10.0" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
||||
@@ -79,7 +79,7 @@ namespace Renci.SshNet.Common
|
||||
/// <exception cref="ArgumentException">The sum of offset and count is larger than the buffer length.</exception>
|
||||
/// <exception cref="ObjectDisposedException">Methods were called after the stream was closed.</exception>
|
||||
/// <exception cref="NotSupportedException">The stream does not support reading.</exception>
|
||||
/// <exception cref="ArgumentNullException"><paramref name="buffer"/> is <c>null</c>.</exception>
|
||||
/// <exception cref="ArgumentNullException"><paramref name="buffer"/> is <see langword="null" />.</exception>
|
||||
/// <exception cref="IOException">An I/O error occurs.</exception>
|
||||
/// <exception cref="ArgumentOutOfRangeException">offset or count is negative.</exception>
|
||||
public override int Read(byte[] buffer, int offset, int count)
|
||||
@@ -96,7 +96,7 @@ namespace Renci.SshNet.Common
|
||||
/// <exception cref="IOException">An I/O error occurs.</exception>
|
||||
/// <exception cref="NotSupportedException">The stream does not support writing.</exception>
|
||||
/// <exception cref="ObjectDisposedException">Methods were called after the stream was closed.</exception>
|
||||
/// <exception cref="ArgumentNullException"><paramref name="buffer"/> is <c>null</c>.</exception>
|
||||
/// <exception cref="ArgumentNullException"><paramref name="buffer"/> is <see langword="null" />.</exception>
|
||||
/// <exception cref="ArgumentException">The sum of offset and count is greater than the buffer length.</exception>
|
||||
/// <exception cref="ArgumentOutOfRangeException">offset or count is negative.</exception>
|
||||
public override void Write(byte[] buffer, int offset, int count)
|
||||
@@ -133,7 +133,7 @@ namespace Renci.SshNet.Common
|
||||
/// <summary>
|
||||
/// Releases the unmanaged resources used by the Stream and optionally releases the managed resources.
|
||||
/// </summary>
|
||||
/// <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
|
||||
/// <param name="disposing"><see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (!_isDisposed)
|
||||
|
||||
Reference in New Issue
Block a user