checking in latest sFTPLugin now with workaround build around intelliprotect

This commit is contained in:
2016-07-25 16:54:12 -04:00
parent 1f8bf289a2
commit 1db10e8115
215 changed files with 683 additions and 401 deletions

View File

@@ -13,15 +13,17 @@ namespace SMFTP_CallTestCS
static void Main(string[] args)
{
#if DEBUG
_sftpasm = Assembly.LoadFile(@"C:\_ROOT_\PanaceanTech\sFTPlugins\Target\Debug\SMFTP.dll");
if (_sftpasm != null)
DebugModeTest();
#else
_sftpasm = Assembly.LoadFile(@"C:\_ROOT_\PanaceanTech\sFTPlugins\Target\Release\SMFTP.dll");
if (_sftpasm != null)
ReleaseModeTest();
#endif
//#if DEBUG
//_sftpasm = Assembly.LoadFile(@"C:\_ROOT_\PanaceanTech\sFTPlugins\Target\Debug\SMFTP.dll");
//if (_sftpasm != null)
// DebugModeTest();
//#else
//_sftpasm = Assembly.LoadFile(@"C:\_ROOT_\PanaceanTech\sFTPlugins\Target\Release\SMFTP.dll");
//if (_sftpasm != null)
// ReleaseModeTest();
//#endif
DebugModeTest();
}
/// <summary>
@@ -80,7 +82,9 @@ namespace SMFTP_CallTestCS
{
using (SMFTP.SFTPClient client = new SMFTP.SFTPClient())
{
bool bConnected = client.Connect("secureftp.navicure.com", "5S3F054P", "LPM2055");
//bool bConnected = client.Connect("secureftp.navicure.com", "5S3F054P", "LPM2055");
bool bConnected = client.Connect("ftp.eresourceplanner.com", "billingsolutions_embark", "Emb@rkD4t4");
if (bConnected)
{
bool bSuccess = true;