Skip to content

Commit 68e4b9e

Browse files
authored
Update dependencies (#1492)
1 parent f4bf62b commit 68e4b9e

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

Directory.Packages.props

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@
55
</PropertyGroup>
66
<ItemGroup>
77
<PackageVersion Include="Appveyor.TestLogger" Version="2.0.0" />
8-
<PackageVersion Include="BenchmarkDotNet" Version="0.13.12" />
8+
<PackageVersion Include="BenchmarkDotNet" Version="0.14.0" />
99
<PackageVersion Include="BouncyCastle.Cryptography" Version="2.4.0" />
10-
<PackageVersion Include="coverlet.collector" Version="6.0.0" />
11-
<PackageVersion Include="coverlet.msbuild" Version="6.0.0" />
10+
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
11+
<PackageVersion Include="coverlet.msbuild" Version="6.0.2" />
1212
<PackageVersion Include="LiquidTestReports.Markdown" Version="1.0.9" />
13-
<PackageVersion Include="Meziantou.Analyzer" Version="2.0.141" />
13+
<PackageVersion Include="Meziantou.Analyzer" Version="2.0.163" />
1414
<!-- Must be kept at version 1.0.0 or higher, see https://github.com/sshnet/SSH.NET/pull/1288 for details. -->
1515
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="1.0.0" />
16-
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
17-
<PackageVersion Include="MSTest.TestAdapter" Version="3.2.1" />
18-
<PackageVersion Include="MSTest.TestFramework" Version="3.2.1" />
19-
<PackageVersion Include="Moq" Version="4.18.4" />
16+
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
17+
<PackageVersion Include="MSTest.TestAdapter" Version="3.6.0" />
18+
<PackageVersion Include="MSTest.TestFramework" Version="3.6.0" />
19+
<PackageVersion Include="Moq" Version="4.20.72" />
2020
<PackageVersion Include="Nerdbank.GitVersioning" Version="3.7.70-alpha" />
2121
<PackageVersion Include="SonarAnalyzer.CSharp" Version="9.19.0.84025" />
2222
<PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.556" />
2323
<PackageVersion Include="System.Formats.Asn1" Version="8.0.1" />
24-
<PackageVersion Include="Testcontainers" Version="3.9.0" />
24+
<PackageVersion Include="Testcontainers" Version="3.10.0" />
2525
</ItemGroup>
2626
</Project>

src/Renci.SshNet/Common/ChannelInputStream.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public override void SetLength(long value)
7979
/// <exception cref="ArgumentException">The sum of offset and count is larger than the buffer length.</exception>
8080
/// <exception cref="ObjectDisposedException">Methods were called after the stream was closed.</exception>
8181
/// <exception cref="NotSupportedException">The stream does not support reading.</exception>
82-
/// <exception cref="ArgumentNullException"><paramref name="buffer"/> is <c>null</c>.</exception>
82+
/// <exception cref="ArgumentNullException"><paramref name="buffer"/> is <see langword="null" />.</exception>
8383
/// <exception cref="IOException">An I/O error occurs.</exception>
8484
/// <exception cref="ArgumentOutOfRangeException">offset or count is negative.</exception>
8585
public override int Read(byte[] buffer, int offset, int count)
@@ -96,7 +96,7 @@ public override int Read(byte[] buffer, int offset, int count)
9696
/// <exception cref="IOException">An I/O error occurs.</exception>
9797
/// <exception cref="NotSupportedException">The stream does not support writing.</exception>
9898
/// <exception cref="ObjectDisposedException">Methods were called after the stream was closed.</exception>
99-
/// <exception cref="ArgumentNullException"><paramref name="buffer"/> is <c>null</c>.</exception>
99+
/// <exception cref="ArgumentNullException"><paramref name="buffer"/> is <see langword="null" />.</exception>
100100
/// <exception cref="ArgumentException">The sum of offset and count is greater than the buffer length.</exception>
101101
/// <exception cref="ArgumentOutOfRangeException">offset or count is negative.</exception>
102102
public override void Write(byte[] buffer, int offset, int count)
@@ -133,7 +133,7 @@ public override void Write(byte[] buffer, int offset, int count)
133133
/// <summary>
134134
/// Releases the unmanaged resources used by the Stream and optionally releases the managed resources.
135135
/// </summary>
136-
/// <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
136+
/// <param name="disposing"><see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to release only unmanaged resources.</param>
137137
protected override void Dispose(bool disposing)
138138
{
139139
if (!_isDisposed)

0 commit comments

Comments
 (0)