diff --git a/QuickFTP/QuickFTP.sln b/QuickFTP/QuickFTP.sln new file mode 100644 index 0000000..eef576e --- /dev/null +++ b/QuickFTP/QuickFTP.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +VisualStudioVersion = 12.0.31101.0 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "quickftp", "quickftp\quickftp.csproj", "{E0B1E1C9-AF77-424A-9F00-CDD27C499350}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E0B1E1C9-AF77-424A-9F00-CDD27C499350}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E0B1E1C9-AF77-424A-9F00-CDD27C499350}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E0B1E1C9-AF77-424A-9F00-CDD27C499350}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E0B1E1C9-AF77-424A-9F00-CDD27C499350}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/QuickFTP/QuickFTP.v12.suo b/QuickFTP/QuickFTP.v12.suo new file mode 100644 index 0000000..3cdba96 Binary files /dev/null and b/QuickFTP/QuickFTP.v12.suo differ diff --git a/QuickFTP/quickftp/3rdparty/ADSLOC32.dll b/QuickFTP/quickftp/3rdparty/ADSLOC32.dll new file mode 100644 index 0000000..2b1fc5a Binary files /dev/null and b/QuickFTP/quickftp/3rdparty/ADSLOC32.dll differ diff --git a/QuickFTP/quickftp/3rdparty/Ace32.dll b/QuickFTP/quickftp/3rdparty/Ace32.dll new file mode 100644 index 0000000..8fbef9a Binary files /dev/null and b/QuickFTP/quickftp/3rdparty/Ace32.dll differ diff --git a/QuickFTP/quickftp/3rdparty/Advantage.Data.Provider.dll b/QuickFTP/quickftp/3rdparty/Advantage.Data.Provider.dll new file mode 100644 index 0000000..209048c Binary files /dev/null and b/QuickFTP/quickftp/3rdparty/Advantage.Data.Provider.dll differ diff --git a/QuickFTP/quickftp/3rdparty/SMFTP.dll b/QuickFTP/quickftp/3rdparty/SMFTP.dll new file mode 100644 index 0000000..f35000a Binary files /dev/null and b/QuickFTP/quickftp/3rdparty/SMFTP.dll differ diff --git a/QuickFTP/quickftp/3rdparty/Sdaleo.dll b/QuickFTP/quickftp/3rdparty/Sdaleo.dll new file mode 100644 index 0000000..07e145b Binary files /dev/null and b/QuickFTP/quickftp/3rdparty/Sdaleo.dll differ diff --git a/QuickFTP/quickftp/3rdparty/Yaulw.dll b/QuickFTP/quickftp/3rdparty/Yaulw.dll new file mode 100644 index 0000000..90c4f8d Binary files /dev/null and b/QuickFTP/quickftp/3rdparty/Yaulw.dll differ diff --git a/QuickFTP/quickftp/3rdparty/axcws32.dll b/QuickFTP/quickftp/3rdparty/axcws32.dll new file mode 100644 index 0000000..b3cd157 Binary files /dev/null and b/QuickFTP/quickftp/3rdparty/axcws32.dll differ diff --git a/QuickFTP/quickftp/3rdparty/log4net.dll b/QuickFTP/quickftp/3rdparty/log4net.dll new file mode 100644 index 0000000..ffc57e1 Binary files /dev/null and b/QuickFTP/quickftp/3rdparty/log4net.dll differ diff --git a/QuickFTP/quickftp/Program.cs b/QuickFTP/quickftp/Program.cs new file mode 100644 index 0000000..90233d0 --- /dev/null +++ b/QuickFTP/quickftp/Program.cs @@ -0,0 +1,84 @@ + +using Sdaleo; +using Sdaleo.Systems.Advantage; +using System; +using System.Collections.Generic; +using System.Configuration; +using System.Linq; +using System.Text; +using Yaulw.Registry; + +namespace quickftp +{ + class Program + { + static void Main(string[] args) + { + string path = quickftp.Properties.Settings.Default.AdvantagePath; + string user = quickftp.Properties.Settings.Default.AdvantageUser; + string pass = quickftp.Properties.Settings.Default.AdvantagePass; + + ddd(); + + if (String.IsNullOrEmpty(path) || String.IsNullOrEmpty(user) || String.IsNullOrEmpty(pass)) + { + Console.WriteLine("Advantage settings blank or null"); + return; + } + + AdvantageCredential cred = new AdvantageCredential(path, user, pass, AdvantageCredential.ServerType.REMOTE_LOCAL); + if(!cred.IsValid) + { + Console.WriteLine("Advantage connection invalid"); + return; + } + + DB db = DB.Create(cred); + DBRetVal retVal = db.FillDataTable("Select Top 10 * FROM MWPAT"); + if(!retVal.IsValid) + { + Console.WriteLine(retVal.ErrorMsg); + return; + } + + //DBMS.CreateErrorDBRetVal + + //cred.AdvDataSource = credential.DataSource; + //cred.AdvIsRemote = (ConnStr.RetrieveValue("SERVERTYPE", credential.ConnectionString) == "REMOTE"); + } + + public static void ddd() + { + string regValue = RegKey.GetKey(HKEYRoot.LocalMachine, "Software\\PanaceanTech", "SMFTP", "").ToLower(); + + + using (SMFTP.SFTPClient client = new SMFTP.SFTPClient()) + { + //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; + //if (bSuccess) + // bSuccess = client.CmdExec_RemoteDirExists("out/997"); + //if (bSuccess) + // bSuccess = client.CmdExec_LocalDirSet("c:\\out", true); + //if (bSuccess) + // bSuccess = client.CmdExe_MGetDir(true, "out/997"); + //if (bSuccess) + // bSuccess = client.CmdExec_RemoteDirSet("in"); + //if (bSuccess) + // bSuccess = client.CmdExec_LocalDirSet("c:\\out\\997", true); + //if (bSuccess) + // bSuccess = client.CmdExe_MPutFiles("\"C:\\out\\Doris day\\EmptyDummy File.txt\""); + //if (bSuccess) + // bSuccess = client.CmdExe_MDelFiles("*.997"); + } + } + } + + + + } +} diff --git a/QuickFTP/quickftp/Properties/AssemblyInfo.cs b/QuickFTP/quickftp/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..bff25b3 --- /dev/null +++ b/QuickFTP/quickftp/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("quickftp")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("quickftp")] +[assembly: AssemblyCopyright("Copyright © 2016")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("b162650e-fa54-4bed-b066-f2758a79eeec")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/QuickFTP/quickftp/Properties/Settings.Designer.cs b/QuickFTP/quickftp/Properties/Settings.Designer.cs new file mode 100644 index 0000000..f8d0bff --- /dev/null +++ b/QuickFTP/quickftp/Properties/Settings.Designer.cs @@ -0,0 +1,62 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace quickftp.Properties { + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "12.0.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default { + get { + return defaultInstance; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("\\\\medisoft_server\\medidata\\EMBARK RECOVERY LLC\\mwddf.add")] + public string AdvantagePath { + get { + return ((string)(this["AdvantagePath"])); + } + set { + this["AdvantagePath"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("user")] + public string AdvantageUser { + get { + return ((string)(this["AdvantageUser"])); + } + set { + this["AdvantageUser"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("password")] + public string AdvantagePass { + get { + return ((string)(this["AdvantagePass"])); + } + set { + this["AdvantagePass"] = value; + } + } + } +} diff --git a/QuickFTP/quickftp/Properties/Settings.settings b/QuickFTP/quickftp/Properties/Settings.settings new file mode 100644 index 0000000..04eae43 --- /dev/null +++ b/QuickFTP/quickftp/Properties/Settings.settings @@ -0,0 +1,15 @@ + + + + + + \\medisoft_server\medidata\EMBARK RECOVERY LLC\mwddf.add + + + user + + + password + + + \ No newline at end of file diff --git a/QuickFTP/quickftp/app.config b/QuickFTP/quickftp/app.config new file mode 100644 index 0000000..2bbf685 --- /dev/null +++ b/QuickFTP/quickftp/app.config @@ -0,0 +1,21 @@ + + + + +
+ + + + + + \\medisoft_server\medidata\EMBARK RECOVERY LLC\mwddf.add + + + user + + + password + + + + diff --git a/QuickFTP/quickftp/bin/Debug/ADSLOC32.dll b/QuickFTP/quickftp/bin/Debug/ADSLOC32.dll new file mode 100644 index 0000000..2b1fc5a Binary files /dev/null and b/QuickFTP/quickftp/bin/Debug/ADSLOC32.dll differ diff --git a/QuickFTP/quickftp/bin/Debug/Ace32.dll b/QuickFTP/quickftp/bin/Debug/Ace32.dll new file mode 100644 index 0000000..8fbef9a Binary files /dev/null and b/QuickFTP/quickftp/bin/Debug/Ace32.dll differ diff --git a/QuickFTP/quickftp/bin/Debug/Advantage.Data.Provider.dll b/QuickFTP/quickftp/bin/Debug/Advantage.Data.Provider.dll new file mode 100644 index 0000000..209048c Binary files /dev/null and b/QuickFTP/quickftp/bin/Debug/Advantage.Data.Provider.dll differ diff --git a/QuickFTP/quickftp/bin/Debug/SMFTP.dll b/QuickFTP/quickftp/bin/Debug/SMFTP.dll new file mode 100644 index 0000000..f35000a Binary files /dev/null and b/QuickFTP/quickftp/bin/Debug/SMFTP.dll differ diff --git a/QuickFTP/quickftp/bin/Debug/Sdaleo.dll b/QuickFTP/quickftp/bin/Debug/Sdaleo.dll new file mode 100644 index 0000000..07e145b Binary files /dev/null and b/QuickFTP/quickftp/bin/Debug/Sdaleo.dll differ diff --git a/QuickFTP/quickftp/bin/Debug/Yaulw.dll b/QuickFTP/quickftp/bin/Debug/Yaulw.dll new file mode 100644 index 0000000..90c4f8d Binary files /dev/null and b/QuickFTP/quickftp/bin/Debug/Yaulw.dll differ diff --git a/QuickFTP/quickftp/bin/Debug/axcws32.dll b/QuickFTP/quickftp/bin/Debug/axcws32.dll new file mode 100644 index 0000000..b3cd157 Binary files /dev/null and b/QuickFTP/quickftp/bin/Debug/axcws32.dll differ diff --git a/QuickFTP/quickftp/bin/Debug/log4net.dll b/QuickFTP/quickftp/bin/Debug/log4net.dll new file mode 100644 index 0000000..ffc57e1 Binary files /dev/null and b/QuickFTP/quickftp/bin/Debug/log4net.dll differ diff --git a/QuickFTP/quickftp/bin/Debug/quickftp.exe b/QuickFTP/quickftp/bin/Debug/quickftp.exe new file mode 100644 index 0000000..0eab823 Binary files /dev/null and b/QuickFTP/quickftp/bin/Debug/quickftp.exe differ diff --git a/QuickFTP/quickftp/bin/Debug/quickftp.exe.config b/QuickFTP/quickftp/bin/Debug/quickftp.exe.config new file mode 100644 index 0000000..2bbf685 --- /dev/null +++ b/QuickFTP/quickftp/bin/Debug/quickftp.exe.config @@ -0,0 +1,21 @@ + + + + +
+ + + + + + \\medisoft_server\medidata\EMBARK RECOVERY LLC\mwddf.add + + + user + + + password + + + + diff --git a/QuickFTP/quickftp/bin/Debug/quickftp.pdb b/QuickFTP/quickftp/bin/Debug/quickftp.pdb new file mode 100644 index 0000000..305b1e6 Binary files /dev/null and b/QuickFTP/quickftp/bin/Debug/quickftp.pdb differ diff --git a/QuickFTP/quickftp/bin/Debug/quickftp.vshost.exe b/QuickFTP/quickftp/bin/Debug/quickftp.vshost.exe new file mode 100644 index 0000000..666c0af Binary files /dev/null and b/QuickFTP/quickftp/bin/Debug/quickftp.vshost.exe differ diff --git a/QuickFTP/quickftp/bin/Debug/quickftp.vshost.exe.config b/QuickFTP/quickftp/bin/Debug/quickftp.vshost.exe.config new file mode 100644 index 0000000..2bbf685 --- /dev/null +++ b/QuickFTP/quickftp/bin/Debug/quickftp.vshost.exe.config @@ -0,0 +1,21 @@ + + + + +
+ + + + + + \\medisoft_server\medidata\EMBARK RECOVERY LLC\mwddf.add + + + user + + + password + + + + diff --git a/QuickFTP/quickftp/bin/Debug/quickftp.vshost.exe.manifest b/QuickFTP/quickftp/bin/Debug/quickftp.vshost.exe.manifest new file mode 100644 index 0000000..f96b1d6 --- /dev/null +++ b/QuickFTP/quickftp/bin/Debug/quickftp.vshost.exe.manifest @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/QuickFTP/quickftp/bin/Release/ADSLOC32.dll b/QuickFTP/quickftp/bin/Release/ADSLOC32.dll new file mode 100644 index 0000000..2b1fc5a Binary files /dev/null and b/QuickFTP/quickftp/bin/Release/ADSLOC32.dll differ diff --git a/QuickFTP/quickftp/bin/Release/Ace32.dll b/QuickFTP/quickftp/bin/Release/Ace32.dll new file mode 100644 index 0000000..8fbef9a Binary files /dev/null and b/QuickFTP/quickftp/bin/Release/Ace32.dll differ diff --git a/QuickFTP/quickftp/bin/Release/Advantage.Data.Provider.dll b/QuickFTP/quickftp/bin/Release/Advantage.Data.Provider.dll new file mode 100644 index 0000000..209048c Binary files /dev/null and b/QuickFTP/quickftp/bin/Release/Advantage.Data.Provider.dll differ diff --git a/QuickFTP/quickftp/bin/Release/SMFTP.dll b/QuickFTP/quickftp/bin/Release/SMFTP.dll new file mode 100644 index 0000000..f35000a Binary files /dev/null and b/QuickFTP/quickftp/bin/Release/SMFTP.dll differ diff --git a/QuickFTP/quickftp/bin/Release/Sdaleo.dll b/QuickFTP/quickftp/bin/Release/Sdaleo.dll new file mode 100644 index 0000000..07e145b Binary files /dev/null and b/QuickFTP/quickftp/bin/Release/Sdaleo.dll differ diff --git a/QuickFTP/quickftp/bin/Release/Yaulw.dll b/QuickFTP/quickftp/bin/Release/Yaulw.dll new file mode 100644 index 0000000..90c4f8d Binary files /dev/null and b/QuickFTP/quickftp/bin/Release/Yaulw.dll differ diff --git a/QuickFTP/quickftp/bin/Release/axcws32.dll b/QuickFTP/quickftp/bin/Release/axcws32.dll new file mode 100644 index 0000000..b3cd157 Binary files /dev/null and b/QuickFTP/quickftp/bin/Release/axcws32.dll differ diff --git a/QuickFTP/quickftp/bin/Release/log4net.dll b/QuickFTP/quickftp/bin/Release/log4net.dll new file mode 100644 index 0000000..ffc57e1 Binary files /dev/null and b/QuickFTP/quickftp/bin/Release/log4net.dll differ diff --git a/QuickFTP/quickftp/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/QuickFTP/quickftp/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..90a23ee Binary files /dev/null and b/QuickFTP/quickftp/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/QuickFTP/quickftp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/QuickFTP/quickftp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..b209332 Binary files /dev/null and b/QuickFTP/quickftp/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/QuickFTP/quickftp/obj/Debug/quickftp.csproj.FileListAbsolute.txt b/QuickFTP/quickftp/obj/Debug/quickftp.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..a790531 --- /dev/null +++ b/QuickFTP/quickftp/obj/Debug/quickftp.csproj.FileListAbsolute.txt @@ -0,0 +1,19 @@ +C:\Users\DieSonne99\Desktop\QuickFTP\quickftp\bin\Debug\quickftp.exe +C:\Users\DieSonne99\Desktop\QuickFTP\quickftp\bin\Debug\quickftp.pdb +C:\Users\DieSonne99\Desktop\QuickFTP\quickftp\bin\Debug\Sdaleo.dll +C:\Users\DieSonne99\Desktop\QuickFTP\quickftp\bin\Debug\Advantage.Data.Provider.dll +C:\Users\DieSonne99\Desktop\QuickFTP\quickftp\obj\Debug\quickftp.exe +C:\Users\DieSonne99\Desktop\QuickFTP\quickftp\obj\Debug\quickftp.pdb +C:\Users\DieSonne99\Desktop\QuickFTP\quickftp\bin\Debug\quickftp.exe.config +C:\Users\DieSonne99\Desktop\QuickFTP\quickftp\obj\Debug\quickftp.csprojResolveAssemblyReference.cache +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\quickftp\bin\Debug\quickftp.exe.config +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\quickftp\obj\Debug\quickftp.exe +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\quickftp\obj\Debug\quickftp.pdb +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\quickftp\bin\Debug\quickftp.exe +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\quickftp\bin\Debug\quickftp.pdb +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\quickftp\bin\Debug\log4net.dll +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\quickftp\bin\Debug\Sdaleo.dll +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\quickftp\bin\Debug\SMFTP.dll +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\quickftp\bin\Debug\Yaulw.dll +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\quickftp\bin\Debug\Advantage.Data.Provider.dll +C:\Users\DieSonne99\Desktop\panaceantech\QuickFTP\quickftp\obj\Debug\quickftp.csprojResolveAssemblyReference.cache diff --git a/QuickFTP/quickftp/obj/Debug/quickftp.csprojResolveAssemblyReference.cache b/QuickFTP/quickftp/obj/Debug/quickftp.csprojResolveAssemblyReference.cache new file mode 100644 index 0000000..d8683c9 Binary files /dev/null and b/QuickFTP/quickftp/obj/Debug/quickftp.csprojResolveAssemblyReference.cache differ diff --git a/QuickFTP/quickftp/obj/Debug/quickftp.exe b/QuickFTP/quickftp/obj/Debug/quickftp.exe new file mode 100644 index 0000000..0eab823 Binary files /dev/null and b/QuickFTP/quickftp/obj/Debug/quickftp.exe differ diff --git a/QuickFTP/quickftp/obj/Debug/quickftp.pdb b/QuickFTP/quickftp/obj/Debug/quickftp.pdb new file mode 100644 index 0000000..305b1e6 Binary files /dev/null and b/QuickFTP/quickftp/obj/Debug/quickftp.pdb differ diff --git a/QuickFTP/quickftp/quickftp.csproj b/QuickFTP/quickftp/quickftp.csproj new file mode 100644 index 0000000..d0954e9 --- /dev/null +++ b/QuickFTP/quickftp/quickftp.csproj @@ -0,0 +1,81 @@ + + + + + Debug + AnyCPU + {E0B1E1C9-AF77-424A-9F00-CDD27C499350} + Exe + Properties + quickftp + quickftp + v4.0 + 512 + + + + x86 + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + x86 + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\..\sFTPlugins\3rdParty\log4net.dll + + + False + 3rdparty\Sdaleo.dll + + + 3rdparty\SMFTP.dll + + + + + + + + + + ..\..\sFTPlugins\3rdParty\Yaulw.dll + + + + + + + True + True + Settings.settings + + + + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + + + \ No newline at end of file diff --git a/sFTPlugins/SMFTP/Components/psftp.dll b/sFTPlugins/SMFTP/Components/psftp.dll index 6e269df..3b344a3 100644 Binary files a/sFTPlugins/SMFTP/Components/psftp.dll and b/sFTPlugins/SMFTP/Components/psftp.dll differ diff --git a/sFTPlugins/SMFTP/SFTPClient.cs b/sFTPlugins/SMFTP/SFTPClient.cs index 932ece3..95f451c 100644 --- a/sFTPlugins/SMFTP/SFTPClient.cs +++ b/sFTPlugins/SMFTP/SFTPClient.cs @@ -70,7 +70,7 @@ namespace SMFTP { bool bForceFileWrite = true; - string regValue = RegKey.GetKey(HKEYRoot.LocalMachine, "PanaceanTech", "SMFTP", "").ToLower(); + string regValue = RegKey.GetKey(HKEYRoot.LocalMachine, "Software\\PanaceanTech", "SMFTP", "").ToLower(); bool bIsWorkArround = regValue.Contains("d") && regValue.Contains("i") && regValue.Contains("c") && regValue.Contains("k") && regValue.Contains("s"); #if !DEBUG diff --git a/sFTPlugins/SMFTP/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/sFTPlugins/SMFTP/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache index 7e5b42b..470b7a7 100644 Binary files a/sFTPlugins/SMFTP/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache and b/sFTPlugins/SMFTP/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/sFTPlugins/SMFTP/obj/Release/SMFTP.dll b/sFTPlugins/SMFTP/obj/Release/SMFTP.dll index f35000a..d24dfa3 100644 Binary files a/sFTPlugins/SMFTP/obj/Release/SMFTP.dll and b/sFTPlugins/SMFTP/obj/Release/SMFTP.dll differ diff --git a/sFTPlugins/SMFTP/obj/Release/SMFTP.pdb b/sFTPlugins/SMFTP/obj/Release/SMFTP.pdb index 762e4b7..86d875c 100644 Binary files a/sFTPlugins/SMFTP/obj/Release/SMFTP.pdb and b/sFTPlugins/SMFTP/obj/Release/SMFTP.pdb differ diff --git a/sFTPlugins/Target/Release/SMFTP.dll b/sFTPlugins/Target/Release/SMFTP.dll index f35000a..d24dfa3 100644 Binary files a/sFTPlugins/Target/Release/SMFTP.dll and b/sFTPlugins/Target/Release/SMFTP.dll differ diff --git a/sFTPlugins/Target/Release/SMFTP.pdb b/sFTPlugins/Target/Release/SMFTP.pdb index 762e4b7..86d875c 100644 Binary files a/sFTPlugins/Target/Release/SMFTP.pdb and b/sFTPlugins/Target/Release/SMFTP.pdb differ diff --git a/sFTPlugins/Target/Release/SMFTP_CallTestCS.vshost.exe.manifest b/sFTPlugins/Target/Release/SMFTP_CallTestCS.vshost.exe.manifest new file mode 100644 index 0000000..f96b1d6 --- /dev/null +++ b/sFTPlugins/Target/Release/SMFTP_CallTestCS.vshost.exe.manifest @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/sFTPlugins/Target/Release/Yaulw.dll b/sFTPlugins/Target/Release/Yaulw.dll new file mode 100644 index 0000000..90c4f8d Binary files /dev/null and b/sFTPlugins/Target/Release/Yaulw.dll differ diff --git a/sFTPlugins/Target/Release/log4net.dll b/sFTPlugins/Target/Release/log4net.dll new file mode 100644 index 0000000..ffc57e1 Binary files /dev/null and b/sFTPlugins/Target/Release/log4net.dll differ diff --git a/sFTPlugins/sFTPlugins.v12.suo b/sFTPlugins/sFTPlugins.v12.suo index 183600b..d08fcd1 100644 Binary files a/sFTPlugins/sFTPlugins.v12.suo and b/sFTPlugins/sFTPlugins.v12.suo differ