-
-
Notifications
You must be signed in to change notification settings - Fork 940
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the assembly resolution build warning (#1165)
- Loading branch information
Showing
6 changed files
with
20 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
using Renci.SshNet; | ||
|
||
namespace IntegrationTests | ||
{ | ||
/// <summary> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
using Renci.SshNet; | ||
using Renci.SshNet.Common; | ||
|
||
namespace IntegrationTests | ||
{ | ||
/// <summary> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
using Renci.SshNet; | ||
|
||
namespace IntegrationTests | ||
{ | ||
/// <summary> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,9 @@ | ||
#pragma warning disable IDE0005 | ||
|
||
extern alias LocalSshNet; | ||
|
||
global using System.Text; | ||
|
||
global using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
|
||
global using IntegrationTests.TestsFixtures; | ||
|
||
// The testcontainers library uses SSH.NET, so we have two versions of SSH.NET in the project. | ||
// We need to explicitly choose which version we want to test. | ||
// To avoid problems, we import all namespaces. | ||
global using LocalSshNet::Renci.SshNet; | ||
global using LocalSshNet::Renci.SshNet.Abstractions; | ||
global using LocalSshNet::Renci.SshNet.Channels; | ||
global using LocalSshNet::Renci.SshNet.Common; | ||
global using LocalSshNet::Renci.SshNet.Compression; | ||
global using LocalSshNet::Renci.SshNet.Connection; | ||
global using LocalSshNet::Renci.SshNet.Messages; | ||
global using LocalSshNet::Renci.SshNet.Messages.Authentication; | ||
global using LocalSshNet::Renci.SshNet.Messages.Connection; | ||
global using LocalSshNet::Renci.SshNet.Messages.Transport; | ||
global using LocalSshNet::Renci.SshNet.NetConf; | ||
global using LocalSshNet::Renci.SshNet.Security; | ||
global using LocalSshNet::Renci.SshNet.Security.Chaos; | ||
global using LocalSshNet::Renci.SshNet.Security.Chaos.NaCl; | ||
global using LocalSshNet::Renci.SshNet.Security.Chaos.NaCl.Internal; | ||
global using LocalSshNet::Renci.SshNet.Security.Cryptography; | ||
global using LocalSshNet::Renci.SshNet.Security.Cryptography.Ciphers; | ||
global using LocalSshNet::Renci.SshNet.Security.Org; | ||
global using LocalSshNet::Renci.SshNet.Security.Org.BouncyCastle; | ||
|
||
global using LocalSshNet::Renci.SshNet.Sftp; | ||
|
||
|
This file was deleted.
Oops, something went wrong.