mirror of
https://github.com/sshnet/SSH.NET.git
synced 2026-09-10 01:05:42 +00:00
Bump the dependencies group (#1761)
* Bump the dependencies group --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Robert Hague <rh@johnstreetcapital.com> Co-authored-by: Rob Hague <rob.hague00@gmail.com>
This commit is contained in:
@@ -620,6 +620,12 @@ dotnet_diagnostic.MA0112.severity = warning
|
||||
# MA0165: Make interpolated string
|
||||
dotnet_diagnostic.MA0165.severity = none
|
||||
|
||||
# MA0182: Avoid unused internal types
|
||||
dotnet_diagnostic.MA0182.severity = none
|
||||
|
||||
# MA0184: Do not use interpolated string without parameters
|
||||
dotnet_diagnostic.MA0184.severity = none
|
||||
|
||||
#### MSTest rules ####
|
||||
|
||||
# MSTEST0015: Test method should not be ignored
|
||||
|
||||
@@ -9,19 +9,19 @@
|
||||
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
|
||||
<PackageVersion Include="coverlet.msbuild" Version="6.0.4" />
|
||||
<PackageVersion Include="GitHubActionsTestLogger" Version="3.0.1" />
|
||||
<PackageVersion Include="Meziantou.Analyzer" Version="2.0.264" />
|
||||
<PackageVersion Include="Meziantou.Analyzer" Version="3.0.18" />
|
||||
<!-- Should stay on LTS .NET releases. -->
|
||||
<PackageVersion Include="Microsoft.Bcl.Cryptography" Version="10.0.1" />
|
||||
<PackageVersion Include="Microsoft.Bcl.Cryptography" Version="10.0.3" />
|
||||
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.3" />
|
||||
<PackageVersion Include="Microsoft.Extensions.Logging.Console" Version="10.0.1" />
|
||||
<PackageVersion Include="MSTest" Version="4.0.2" />
|
||||
<PackageVersion Include="Microsoft.Extensions.Logging.Console" Version="10.0.3" />
|
||||
<PackageVersion Include="MSTest" Version="4.1.0" />
|
||||
<PackageVersion Include="Moq" Version="4.20.72" />
|
||||
<PackageVersion Include="Nerdbank.GitVersioning" Version="3.9.50" />
|
||||
<PackageVersion Include="PolySharp" Version="1.15.0" />
|
||||
<PackageVersion Include="SonarAnalyzer.CSharp" Version="10.17.0.131074" />
|
||||
<PackageVersion Include="SonarAnalyzer.CSharp" Version="10.20.0.135146" />
|
||||
<PackageVersion Include="StyleCop.Analyzers" Version="1.2.0-beta.556" />
|
||||
<!-- Should stay on LTS .NET releases. -->
|
||||
<PackageVersion Include="System.Formats.Asn1" Version="10.0.1" />
|
||||
<PackageVersion Include="Testcontainers" Version="4.9.0" />
|
||||
<PackageVersion Include="System.Formats.Asn1" Version="10.0.3" />
|
||||
<PackageVersion Include="Testcontainers" Version="4.10.0" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
||||
@@ -1,28 +0,0 @@
|
||||
namespace Renci.SshNet.Messages.Connection
|
||||
{
|
||||
/// <summary>
|
||||
/// List channel open failure reasons defined by the protocol.
|
||||
/// </summary>
|
||||
internal enum ChannelOpenFailureReasons : uint
|
||||
{
|
||||
/// <summary>
|
||||
/// SSH_OPEN_ADMINISTRATIVELY_PROHIBITED.
|
||||
/// </summary>
|
||||
AdministativelyProhibited = 1,
|
||||
|
||||
/// <summary>
|
||||
/// SSH_OPEN_CONNECT_FAILED.
|
||||
/// </summary>
|
||||
ConnectFailed = 2,
|
||||
|
||||
/// <summary>
|
||||
/// SSH_OPEN_UNKNOWN_CHANNEL_TYPE.
|
||||
/// </summary>
|
||||
UnknownChannelType = 3,
|
||||
|
||||
/// <summary>
|
||||
/// SSH_OPEN_RESOURCE_SHORTAGE.
|
||||
/// </summary>
|
||||
ResourceShortage = 4
|
||||
}
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
using System;
|
||||
|
||||
using Renci.SshNet.Common;
|
||||
|
||||
namespace Renci.SshNet.Sftp
|
||||
{
|
||||
internal sealed class SFtpStatAsyncResult : AsyncResult<SftpFileAttributes>
|
||||
{
|
||||
public SFtpStatAsyncResult(AsyncCallback asyncCallback, object state)
|
||||
: base(asyncCallback, state)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
using System;
|
||||
|
||||
using Renci.SshNet.Common;
|
||||
|
||||
namespace Renci.SshNet.Sftp
|
||||
{
|
||||
internal sealed class SftpReadAsyncResult : AsyncResult<byte[]>
|
||||
{
|
||||
public SftpReadAsyncResult(AsyncCallback asyncCallback, object state)
|
||||
: base(asyncCallback, state)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -66,9 +66,8 @@ namespace Renci.SshNet.IntegrationTests.TestsFixtures
|
||||
|
||||
await _sshServerImage.CreateAsync();
|
||||
|
||||
_sshServer = new ContainerBuilder()
|
||||
_sshServer = new ContainerBuilder(_sshServerImage)
|
||||
.WithHostname("renci-ssh-tests-server")
|
||||
.WithImage(_sshServerImage)
|
||||
.WithPortBinding(22, true)
|
||||
.WithLogger(containerLogger)
|
||||
.Build();
|
||||
|
||||
Reference in New Issue
Block a user