checking in latest changes for Quick FTP
This commit is contained in:
Binary file not shown.
BIN
QuickFTP/quickftp/3rdparty/SMFTP.dll
vendored
BIN
QuickFTP/quickftp/3rdparty/SMFTP.dll
vendored
Binary file not shown.
@@ -4,6 +4,8 @@ using Sdaleo.Systems.Advantage;
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Configuration;
|
using System.Configuration;
|
||||||
|
using System.Data;
|
||||||
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using Yaulw.Registry;
|
using Yaulw.Registry;
|
||||||
@@ -18,8 +20,6 @@ namespace quickftp
|
|||||||
string user = quickftp.Properties.Settings.Default.AdvantageUser;
|
string user = quickftp.Properties.Settings.Default.AdvantageUser;
|
||||||
string pass = quickftp.Properties.Settings.Default.AdvantagePass;
|
string pass = quickftp.Properties.Settings.Default.AdvantagePass;
|
||||||
|
|
||||||
ddd();
|
|
||||||
|
|
||||||
if (String.IsNullOrEmpty(path) || String.IsNullOrEmpty(user) || String.IsNullOrEmpty(pass))
|
if (String.IsNullOrEmpty(path) || String.IsNullOrEmpty(user) || String.IsNullOrEmpty(pass))
|
||||||
{
|
{
|
||||||
Console.WriteLine("Advantage settings blank or null");
|
Console.WriteLine("Advantage settings blank or null");
|
||||||
@@ -33,20 +33,52 @@ namespace quickftp
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
string query1 = ReadQuery("query1.txt");
|
||||||
|
if (String.IsNullOrEmpty(query1))
|
||||||
|
return;
|
||||||
|
|
||||||
DB db = DB.Create(cred);
|
DB db = DB.Create(cred);
|
||||||
DBRetVal retVal = db.FillDataTable("Select Top 10 * FROM MWPAT");
|
DBRetVal retVal = db.FillDataTable(query1);
|
||||||
if(!retVal.IsValid)
|
if(!retVal.IsValid)
|
||||||
{
|
{
|
||||||
Console.WriteLine(retVal.ErrorMsg);
|
Console.WriteLine(retVal.ErrorMsg);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
foreach (DataRow r in retVal.GetDataTableRetVal().Rows)
|
||||||
|
{
|
||||||
|
var d = r[1];
|
||||||
|
}
|
||||||
|
|
||||||
|
//Console.Writeline()
|
||||||
|
|
||||||
|
ddd();
|
||||||
|
|
||||||
//DBMS.CreateErrorDBRetVal
|
//DBMS.CreateErrorDBRetVal
|
||||||
|
|
||||||
//cred.AdvDataSource = credential.DataSource;
|
//cred.AdvDataSource = credential.DataSource;
|
||||||
//cred.AdvIsRemote = (ConnStr.RetrieveValue("SERVERTYPE", credential.ConnectionString) == "REMOTE");
|
//cred.AdvIsRemote = (ConnStr.RetrieveValue("SERVERTYPE", credential.ConnectionString) == "REMOTE");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static string ReadQuery(string filename)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{ // Open the text file using a stream reader.
|
||||||
|
using (StreamReader sr = new StreamReader(filename))
|
||||||
|
{
|
||||||
|
// Read the stream to a string, and write the string to the console.
|
||||||
|
String line = sr.ReadToEnd();
|
||||||
|
return line;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
Console.WriteLine(String.Format("The file could not be read: {0}", filename));
|
||||||
|
Console.WriteLine(e.Message);
|
||||||
|
}
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
public static void ddd()
|
public static void ddd()
|
||||||
{
|
{
|
||||||
string regValue = RegKey.GetKey<string>(HKEYRoot.LocalMachine, "Software\\PanaceanTech", "SMFTP", "").ToLower();
|
string regValue = RegKey.GetKey<string>(HKEYRoot.LocalMachine, "Software\\PanaceanTech", "SMFTP", "").ToLower();
|
||||||
|
|||||||
Binary file not shown.
178
QuickFTP/quickftp/bin/Debug/query1.txt
Normal file
178
QuickFTP/quickftp/bin/Debug/query1.txt
Normal file
@@ -0,0 +1,178 @@
|
|||||||
|
Select
|
||||||
|
A."Entry Number",
|
||||||
|
A.Chart_Number,
|
||||||
|
A."First Name" as First_Name,
|
||||||
|
A."Last Name" as Last_Name,
|
||||||
|
A.Claim_Number,
|
||||||
|
A.Date_From,
|
||||||
|
A.Description as Level_Of_Care,
|
||||||
|
A.Amount,
|
||||||
|
B.Payment_Status,
|
||||||
|
A.Diagnosis1,
|
||||||
|
A.Diagnosis_Description,
|
||||||
|
D.DED,
|
||||||
|
I.ERA_DED,
|
||||||
|
A.Insurance_Name,
|
||||||
|
A.Insurance_Class,
|
||||||
|
A."Insurance_1_Amount_Paid",
|
||||||
|
A."Insurance_2_Amount_Paid",
|
||||||
|
A.Adjustment_Amount,
|
||||||
|
A.Referring_Provider,
|
||||||
|
A.Policy_1,
|
||||||
|
A.Group_Number_1,
|
||||||
|
A.Initial_Billing_Date,
|
||||||
|
A.Primary_Billing_Date,
|
||||||
|
A.Referring_Provider,
|
||||||
|
MWPRI."Date From" as Primary_Paid_Date,
|
||||||
|
MWSEC."Date From" as Secondary_Paid_Date,
|
||||||
|
MWGUA."Date From" as Guarantor_Paid_Date
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
from
|
||||||
|
//Main Query
|
||||||
|
(Select distinct MWTRN."Entry Number",
|
||||||
|
MWTRN."Chart Number" as Chart_Number,
|
||||||
|
MWPAT."First Name",
|
||||||
|
MWPAT."Last Name",
|
||||||
|
MWTRN."Claim Number" AS Claim_Number,
|
||||||
|
MWTRN."Date From" AS Date_From,
|
||||||
|
|
||||||
|
|
||||||
|
MWTRN."Diagnosis Code 1" as Diagnosis1,
|
||||||
|
MWTRN."Diagnosis Code 2" as Diagnosis2,
|
||||||
|
DIA."Description" as Diagnosis_Description ,
|
||||||
|
DIA2."Description" Diagnosis2_Description,
|
||||||
|
|
||||||
|
MWINS."Insurance Class" as Insurance_Class,
|
||||||
|
|
||||||
|
MWTRN.Amount,
|
||||||
|
//whatthehellisthis "Procedure Code" As Units,
|
||||||
|
MWPRO.Description,
|
||||||
|
"Adjustment Amount",
|
||||||
|
MWPRO."Description",
|
||||||
|
MWINS."Name" as Insurance_Name,
|
||||||
|
MWTRN.Amount,
|
||||||
|
MonthName("MWTRN"."Date Created") as MonthofYear,
|
||||||
|
Year("MWTRN"."Date Created") as TheYear,
|
||||||
|
MWTRN."Diagnosis_12_Description" as Blank,
|
||||||
|
MWPRO."Description" As Level_Of_Care,
|
||||||
|
MWINS."Insurance Class" as Insurance_Class,
|
||||||
|
MWINS."Name" as Insurance_Name,
|
||||||
|
MWCAS."Policy Number #1" as Policy_1,
|
||||||
|
MWCAS."Group Number #1" as Group_Number_1,
|
||||||
|
MWCLA."Initial Billing Date 1" as Initial_Billing_Date,
|
||||||
|
MWCLA."Primary BIlling Date"as Primary_Billing_Date,
|
||||||
|
MWTRN."Attending Provider" AS Attending_Provider,
|
||||||
|
MWTRN."Insurance 1 Amount Paid" AS Insurance_1_Amount_Paid,
|
||||||
|
MWTRN."Insurance 2 Amount Paid" AS Insurance_2_Amount_Paid,
|
||||||
|
MWTRN."Insurance 3 Amount Paid" AS Insurance_3_Amount_Paid,
|
||||||
|
MWTRN."Guarantor Amount Paid" AS Guarantor_Amount_Paid,
|
||||||
|
MWTRN."Adjustment Amount" AS Adjustment_Amount,
|
||||||
|
(MWRPH."First Name" + MWRPH."Last Name") AS Referring_Provider,
|
||||||
|
MWRPH."Code" as Referring_Provider_Code
|
||||||
|
|
||||||
|
|
||||||
|
FROM MWTRN
|
||||||
|
INNER JOIN MWCAS MWCAS ON
|
||||||
|
(MWCAS."Case Number" = MWTRN."Case Number")
|
||||||
|
INNER JOIN MWINS MWINS ON
|
||||||
|
(MWINS."Code" = MWCAS."Insurance Carrier #1")
|
||||||
|
INNER JOIN MWDIA DIA ON
|
||||||
|
MWTRN."Diagnosis Code 1" = DIA."Code 1"
|
||||||
|
left outer JOIN MWDIA DIA2 ON
|
||||||
|
MWTRN."Diagnosis Code 2" = DIA2."Code 1"
|
||||||
|
INNER JOIN MWPAT MWPAT ON
|
||||||
|
(MWPAT."Chart Number" = MWTRN."Chart Number")
|
||||||
|
INNER JOIN MWPRO MWPRO ON
|
||||||
|
(MWTRN."Procedure Code" = MWPRO."Code 1")
|
||||||
|
left outer JOIN MWRPH ON
|
||||||
|
MWCAS."Referring Provider" = MWRPH."Code"
|
||||||
|
INNER JOIN MWCLA MWCLA ON
|
||||||
|
(MWCLA."Claim Number" = MWTRN."Claim Number")
|
||||||
|
WHERE (MWTRN."Transaction Type" BETWEEN 'A' AND 'H') AND
|
||||||
|
(MWTRN."Date From" between '01/1/2015' and '12/31/2016') AND (MWCLA."Claim Status 1" in ('2', '3', '4', '6'))) A
|
||||||
|
|
||||||
|
//Primary Payments (MWPRI)
|
||||||
|
LEFT OUTER JOIN
|
||||||
|
(Select distinct MWTRN."Entry Number", MAX(MWTRN2."Date From") as "Date From"
|
||||||
|
from MWTRN INNER JOIN MWPAX ON
|
||||||
|
MWPAX."Charge Reference" = MWTRN."Entry Number"
|
||||||
|
INNER JOIN MWTRN MWTRN2 ON
|
||||||
|
MWPAX."Payment Reference" = MWTRN2."Entry Number"
|
||||||
|
Where MWPAX."Who Paid" = '1' and MWPAX."Payment Amount" < 0
|
||||||
|
and MWTRN2."Transaction Type" in ('I', 'M')
|
||||||
|
group by MWTRN."Entry Number") MWPRI ON
|
||||||
|
A."Entry Number" = MWPRI."Entry Number"
|
||||||
|
|
||||||
|
//Gather Secondary Payments (MWSEC)
|
||||||
|
left outer JOIN
|
||||||
|
(Select distinct MWTRN."Entry Number", MAX(MWTRN2."Date From") as "Date From"
|
||||||
|
from MWTRN INNER JOIN MWPAX ON
|
||||||
|
MWPAX."Charge Reference" = MWTRN."Entry Number"
|
||||||
|
INNER JOIN MWTRN MWTRN2 ON
|
||||||
|
MWPAX."Payment Reference" = MWTRN2."Entry Number"
|
||||||
|
Where MWPAX."Who Paid" = '2' and MWTRN2."Transaction Type" in ('I', 'M')
|
||||||
|
group by MWTRN."Entry Number") MWSEC ON
|
||||||
|
A."Entry Number" = MWSEC."Entry Number"
|
||||||
|
left outer JOIN
|
||||||
|
|
||||||
|
//Gather Guarantor Payments (MWGUA)
|
||||||
|
(Select distinct MWTRN."Entry Number", MAX(MWTRN2."Date From") as "Date From"
|
||||||
|
from MWTRN INNER JOIN MWPAX ON
|
||||||
|
MWPAX."Charge Reference" = MWTRN."Entry Number"
|
||||||
|
INNER JOIN MWTRN MWTRN2 ON
|
||||||
|
MWPAX."Payment Reference" = MWTRN2."Entry Number"
|
||||||
|
Where MWPAX."Who Paid" = 'G'
|
||||||
|
group by MWTRN."Entry Number") MWGUA ON
|
||||||
|
A."Entry Number" = MWGUA."Entry Number"
|
||||||
|
|
||||||
|
//Deductible Stuff (D)
|
||||||
|
left outer join
|
||||||
|
(Select abs(sum(cast(MWPAX."Payment Amount" as SQL_NUMERIC(9,2)))) as DED, MWTRN."Entry Number", MWTRN."Chart Number" from MWTRN INNER JOIN MWPAX on MWTRN."Entry Number" = MWPAX."Charge Reference"
|
||||||
|
inner join MWTRN MWTRN2 on MWPAX."Payment Reference" = MWTRN2."Entry Number"
|
||||||
|
Where MWTRN2."Transaction Type" = 'P'
|
||||||
|
group by MWTRN."Chart Number", MWTRN."Entry Number") D
|
||||||
|
on D."Entry Number" = A."Entry Number"
|
||||||
|
|
||||||
|
//I have no clue (I)
|
||||||
|
left outer join (Select sum(cast((Substring(replace(MWTRN."Description", ',', ''), (LOCATE('$', MWTRN."Description") +1),
|
||||||
|
((LOCATE(' ', MWTRN."Description") -1) - (LOCATE('$', MWTRN."Description") +1) ))) as SQL_Numeric(9,2))) as ERA_DED, mwtrn2."Entry Number", MWTRN2."Chart Number" from MWTRN
|
||||||
|
INNER JOIN MWPAX on MWTRN."Entry Number" = MWPAX."Payment Reference"
|
||||||
|
inner join MWTRN MWTRN2 on MWPAX."Charge Reference" = MWTRN2."Entry Number"
|
||||||
|
Where MWTRN."Description" like 'ERA:Deductible=%' or MWTRN."Description" like 'ERA:PR1=%'
|
||||||
|
group by MWTRN2."Chart Number", MWTRN2."Entry Number") I
|
||||||
|
ON I."Entry Number" = A."Entry Number"
|
||||||
|
|
||||||
|
left outer join
|
||||||
|
|
||||||
|
(Select "Charge Reference" as CRef,
|
||||||
|
(Case When MWDEP."Deposit Code" = 'A' Then 'ERA_Payment_Posting'
|
||||||
|
When MWDEP."Deposit Code" = 'B' Then 'ERA_Payment_Confirmed'
|
||||||
|
When MWDEP."Deposit Code" = 'F' Then 'Paid_Confirmed_Aging_To_Facility'
|
||||||
|
When MWDEP."Deposit Code" = 'G' Then 'Paid_Per_Check_To_Facility'
|
||||||
|
When MWDEP."Deposit Code" = 'J' Then 'Paid_Per_AR_To_Patient'
|
||||||
|
When MWDEP."Deposit Code" = 'K' Then 'Paid_Per_Check_To_Patient'
|
||||||
|
When MWDEP."Deposit Code" = 'N' Then 'Paid_Per_Aging_To_Facility'
|
||||||
|
Else 'Unpaid' End) as Payment_Status,
|
||||||
|
|
||||||
|
sum(Case When MWDEP."Deposit Code" in ('A', 'B', 'E', 'F', 'G', 'J', 'K', 'N') Then (Cast(MWPAX."Payment Amount" as
|
||||||
|
|
||||||
|
SQL_NUMERIC(9,2))) Else 0 End) as Total_Deposit,
|
||||||
|
Sum(Case WHen MWTRN."Transaction Type" = 'P' Then (Cast(MWPAX."Payment Amount" as SQL_NUMERIC(9,2))) Else 0 End) as D,
|
||||||
|
Sum(Case WHen MWTRN."Transaction Type" in ('J', 'K', 'L') Then (Cast(MWPAX."Payment Amount" as SQL_NUMERIC(9,2))) Else 0
|
||||||
|
|
||||||
|
End) as C,
|
||||||
|
Sum(Case WHen MWTRN."Transaction Type" in ('M', 'N', 'O') Then (Cast(MWPAX."Payment Amount" as SQL_NUMERIC(9,2))) Else 0
|
||||||
|
|
||||||
|
End) as P
|
||||||
|
|
||||||
|
|
||||||
|
from MWPAX
|
||||||
|
inner join MWDEP on
|
||||||
|
MWDEP."Entry Number" = MWPAX."Deposit ID"
|
||||||
|
inner join MWTRN on
|
||||||
|
MWTRN."Entry Number" = MWPAX."Payment Reference" where MWTRN."Transaction Type" in ('I', 'J', 'K', 'N', 'O', 'P')
|
||||||
|
Group By Cref, Payment_Status ) B
|
||||||
|
ON A."Entry Number" = B.CREF
|
||||||
|
// Group BY A.Chart_Number, A.Procedure_Code, A."First Name", A."Last Name", A.Insurance_Class, A.MonthofYear, A.TheYear,A.Blank,
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -26,6 +26,7 @@
|
|||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<PlatformTarget>x86</PlatformTarget>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
<DebugType>pdbonly</DebugType>
|
<DebugType>pdbonly</DebugType>
|
||||||
|
|||||||
@@ -5,6 +5,5 @@ C:\_ROOT_\PanaceanTech\sFTPlugins\SMFTP\obj\Release\SMFTP.dll
|
|||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\SMFTP\obj\Release\SMFTP.pdb
|
C:\_ROOT_\PanaceanTech\sFTPlugins\SMFTP\obj\Release\SMFTP.pdb
|
||||||
C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\Target\Release\SMFTP.dll
|
C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\Target\Release\SMFTP.dll
|
||||||
C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\Target\Release\SMFTP.pdb
|
C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\Target\Release\SMFTP.pdb
|
||||||
C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\SMFTP\obj\Release\SMFTP.csprojResolveAssemblyReference.cache
|
|
||||||
C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\SMFTP\obj\Release\SMFTP.dll
|
C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\SMFTP\obj\Release\SMFTP.dll
|
||||||
C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\SMFTP\obj\Release\SMFTP.pdb
|
C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\SMFTP\obj\Release\SMFTP.pdb
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -11,7 +11,8 @@
|
|||||||
<RootNamespace>SMFTP_CallTestCS</RootNamespace>
|
<RootNamespace>SMFTP_CallTestCS</RootNamespace>
|
||||||
<AssemblyName>SMFTP_CallTestCS</AssemblyName>
|
<AssemblyName>SMFTP_CallTestCS</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||||
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
|
<TargetFrameworkProfile>
|
||||||
|
</TargetFrameworkProfile>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<SccProjectName>SAK</SccProjectName>
|
<SccProjectName>SAK</SccProjectName>
|
||||||
<SccLocalPath>SAK</SccLocalPath>
|
<SccLocalPath>SAK</SccLocalPath>
|
||||||
@@ -57,6 +58,9 @@
|
|||||||
<Private>True</Private>
|
<Private>True</Private>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="app.config" />
|
||||||
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
Other similar extension points exist, see Microsoft.Common.targets.
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
|||||||
3
sFTPlugins/SMFTP_CallTestCS/app.config
Normal file
3
sFTPlugins/SMFTP_CallTestCS/app.config
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>
|
||||||
Binary file not shown.
@@ -5,3 +5,7 @@ C:\_ROOT_\PanaceanTech\sFTPlugins\SMFTP_CallTestCS\obj\x86\Release\SMFTP_CallTes
|
|||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\SMFTP_CallTestCS\obj\x86\Release\SMFTP_CallTestCS.pdb
|
C:\_ROOT_\PanaceanTech\sFTPlugins\SMFTP_CallTestCS\obj\x86\Release\SMFTP_CallTestCS.pdb
|
||||||
C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\SMFTP_CallTestCS\obj\x86\Release\SMFTP_CallTestCS.exe
|
C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\SMFTP_CallTestCS\obj\x86\Release\SMFTP_CallTestCS.exe
|
||||||
C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\SMFTP_CallTestCS\obj\x86\Release\SMFTP_CallTestCS.pdb
|
C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\SMFTP_CallTestCS\obj\x86\Release\SMFTP_CallTestCS.pdb
|
||||||
|
C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\SMFTP_CallTestCS\obj\x86\Release\SMFTP_CallTestCS.csprojResolveAssemblyReference.cache
|
||||||
|
C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\Target\Release\SMFTP_CallTestCS.exe.config
|
||||||
|
C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\Target\Release\SMFTP_CallTestCS.exe
|
||||||
|
C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\Target\Release\SMFTP_CallTestCS.pdb
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,7 +1,7 @@
|
|||||||
'------------------------------------------------------------------------------
|
'------------------------------------------------------------------------------
|
||||||
' <auto-generated>
|
' <auto-generated>
|
||||||
' This code was generated by a tool.
|
' This code was generated by a tool.
|
||||||
' Runtime Version:4.0.30319.225
|
' Runtime Version:4.0.30319.42000
|
||||||
'
|
'
|
||||||
' Changes to this file may cause incorrect behavior and will be lost if
|
' Changes to this file may cause incorrect behavior and will be lost if
|
||||||
' the code is regenerated.
|
' the code is regenerated.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
'------------------------------------------------------------------------------
|
'------------------------------------------------------------------------------
|
||||||
' <auto-generated>
|
' <auto-generated>
|
||||||
' This code was generated by a tool.
|
' This code was generated by a tool.
|
||||||
' Runtime Version:4.0.30319.225
|
' Runtime Version:4.0.30319.42000
|
||||||
'
|
'
|
||||||
' Changes to this file may cause incorrect behavior and will be lost if
|
' Changes to this file may cause incorrect behavior and will be lost if
|
||||||
' the code is regenerated.
|
' the code is regenerated.
|
||||||
@@ -11,6 +11,7 @@
|
|||||||
Option Strict On
|
Option Strict On
|
||||||
Option Explicit On
|
Option Explicit On
|
||||||
|
|
||||||
|
Imports System
|
||||||
|
|
||||||
Namespace My.Resources
|
Namespace My.Resources
|
||||||
|
|
||||||
@@ -54,7 +55,7 @@ Namespace My.Resources
|
|||||||
Get
|
Get
|
||||||
Return resourceCulture
|
Return resourceCulture
|
||||||
End Get
|
End Get
|
||||||
Set(ByVal value As Global.System.Globalization.CultureInfo)
|
Set
|
||||||
resourceCulture = value
|
resourceCulture = value
|
||||||
End Set
|
End Set
|
||||||
End Property
|
End Property
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
'------------------------------------------------------------------------------
|
'------------------------------------------------------------------------------
|
||||||
' <auto-generated>
|
' <auto-generated>
|
||||||
' This code was generated by a tool.
|
' This code was generated by a tool.
|
||||||
' Runtime Version:4.0.30319.225
|
' Runtime Version:4.0.30319.42000
|
||||||
'
|
'
|
||||||
' Changes to this file may cause incorrect behavior and will be lost if
|
' Changes to this file may cause incorrect behavior and will be lost if
|
||||||
' the code is regenerated.
|
' the code is regenerated.
|
||||||
@@ -15,12 +15,12 @@ Option Explicit On
|
|||||||
Namespace My
|
Namespace My
|
||||||
|
|
||||||
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "10.0.0.0"), _
|
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "12.0.0.0"), _
|
||||||
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||||
Partial Friend NotInheritable Class MySettings
|
Partial Friend NotInheritable Class MySettings
|
||||||
Inherits Global.System.Configuration.ApplicationSettingsBase
|
Inherits Global.System.Configuration.ApplicationSettingsBase
|
||||||
|
|
||||||
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings), MySettings)
|
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings)
|
||||||
|
|
||||||
#Region "My.Settings Auto-Save Functionality"
|
#Region "My.Settings Auto-Save Functionality"
|
||||||
#If _MyType = "WindowsForms" Then
|
#If _MyType = "WindowsForms" Then
|
||||||
|
|||||||
@@ -15,7 +15,8 @@
|
|||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<MyType>Console</MyType>
|
<MyType>Console</MyType>
|
||||||
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||||
<TargetFrameworkProfile>Client</TargetFrameworkProfile>
|
<TargetFrameworkProfile>
|
||||||
|
</TargetFrameworkProfile>
|
||||||
<SccProjectName>SAK</SccProjectName>
|
<SccProjectName>SAK</SccProjectName>
|
||||||
<SccLocalPath>SAK</SccLocalPath>
|
<SccLocalPath>SAK</SccLocalPath>
|
||||||
<SccAuxPath>SAK</SccAuxPath>
|
<SccAuxPath>SAK</SccAuxPath>
|
||||||
@@ -99,6 +100,7 @@
|
|||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<None Include="app.config" />
|
||||||
<None Include="My Project\Application.myapp">
|
<None Include="My Project\Application.myapp">
|
||||||
<Generator>MyApplicationCodeGenerator</Generator>
|
<Generator>MyApplicationCodeGenerator</Generator>
|
||||||
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
||||||
|
|||||||
23
sFTPlugins/SMFTP_CallTestVB/app.config
Normal file
23
sFTPlugins/SMFTP_CallTestVB/app.config
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<system.diagnostics>
|
||||||
|
<sources>
|
||||||
|
<!-- This section defines the logging configuration for My.Application.Log -->
|
||||||
|
<source name="DefaultSource" switchName="DefaultSwitch">
|
||||||
|
<listeners>
|
||||||
|
<add name="FileLog"/>
|
||||||
|
<!-- Uncomment the below section to write to the Application Event Log -->
|
||||||
|
<!--<add name="EventLog"/>-->
|
||||||
|
</listeners>
|
||||||
|
</source>
|
||||||
|
</sources>
|
||||||
|
<switches>
|
||||||
|
<add name="DefaultSwitch" value="Information"/>
|
||||||
|
</switches>
|
||||||
|
<sharedListeners>
|
||||||
|
<add name="FileLog" type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" initializeData="FileLogWriter"/>
|
||||||
|
<!-- Uncomment the below section and replace APPLICATION_NAME with the name of your application to write to the Application Event Log -->
|
||||||
|
<!--<add name="EventLog" type="System.Diagnostics.EventLogTraceListener" initializeData="APPLICATION_NAME"/> -->
|
||||||
|
</sharedListeners>
|
||||||
|
</system.diagnostics>
|
||||||
|
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3
sFTPlugins/Target/Release/SMFTP_CallTestCS.exe.config
Normal file
3
sFTPlugins/Target/Release/SMFTP_CallTestCS.exe.config
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>
|
||||||
Binary file not shown.
@@ -0,0 +1,3 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
||||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
|
||||||
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
|
|
||||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
|
|
||||||
<security>
|
|
||||||
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
|
||||||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
|
||||||
</requestedPrivileges>
|
|
||||||
</security>
|
|
||||||
</trustInfo>
|
|
||||||
</assembly>
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,69 +1,62 @@
|
|||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\.\Release\psftp.dll
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\vc120.pdb
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\.\Release\psftp.dll.intermediate.manifest
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\sshdes.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\BE_NONE.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\sshcrcda.obj
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\cl.command.1.tlog
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\sshcrc.obj
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\CL.read.1.tlog
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\sshbn.obj
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\CL.write.1.tlog
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\sshblowf.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\CMDLINE.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\ssharcf.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\CPROXY.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\sshaes.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\INT64.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\ssh.obj
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\link.command.1.tlog
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\sftp.obj
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\link.read.1.tlog
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\settings.obj
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\link.write.1.tlog
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\psftp.obj
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\link-cvtres.read.1.tlog
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\proxy.obj
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\link-cvtres.write.1.tlog
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\portfwd.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\LOGGING.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\pinger.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\MISC.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\misc.obj
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\mt.command.1.tlog
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\logging.obj
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\mt.read.1.tlog
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\int64.obj
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\mt.write.1.tlog
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\cproxy.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\PINGER.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\cmdline.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\PORTFWD.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\be_none.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\PROXY.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\winnoise.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\PSFTP.DLL
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\winnet.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\PSFTP.DLL.INTERMEDIATE.MANIFEST
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\winmisc.obj
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\psftp.exp
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\winhandl.obj
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\psftp.lib
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\windefs.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\PSFTP.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\wincons.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\PSFTP.RES
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\wildcard.obj
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\psftp.write.1.tlog
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\version.obj
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\rc.command.1.tlog
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\tree234.obj
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\rc.read.1.tlog
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\timing.obj
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\rc.write.1.tlog
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\sshzlib.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SETTINGS.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\sshsha.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SFTP.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\sshsh512.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSH.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\sshsh256.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSHAES.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\sshrsa.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSHARCF.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\sshrand.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSHBLOWF.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\sshpubk.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSHBN.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\sshmd5.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSHCRC.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\sshdss.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSHCRCDA.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\sshdh.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSHDES.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\x11fwd.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSHDH.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\wintime.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSHDSS.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\winstore.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSHMD5.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\winsftp.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSHPUBK.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\winproxy.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSHRAND.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\winpgntc.obj
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSHRSA.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\psftp.dll
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSHSH256.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\psftp.lib
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSHSH512.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\psftp.exp
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSHSHA.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\psftp.res
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\SSHZLIB.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\.\release\psftp.dll
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\TIMING.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\psftp.tlog\cl.command.1.tlog
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\TREE234.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\psftp.tlog\cl.read.1.tlog
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\VC100.PDB
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\psftp.tlog\cl.write.1.tlog
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\VERSION.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\psftp.tlog\link.command.1.tlog
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\WILDCARD.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\psftp.tlog\link.read.1.tlog
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\WINCONS.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\psftp.tlog\link.write.1.tlog
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\WINDEFS.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\psftp.tlog\psftp.write.1u.tlog
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\WINHANDL.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\psftp.tlog\rc.command.1.tlog
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\WINMISC.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\psftp.tlog\rc.read.1.tlog
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\WINNET.OBJ
|
c:\users\diesonne99\desktop\panaceantech\sftplugins\psftp\windows\msvc\psftp\release\psftp.tlog\rc.write.1.tlog
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\WINNOISE.OBJ
|
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\WINPGNTC.OBJ
|
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\WINPROXY.OBJ
|
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\WINSFTP.OBJ
|
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\WINSTORE.OBJ
|
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\WINTIME.OBJ
|
|
||||||
C:\_ROOT_\PANACEANTECH\SFTPLUGINS\PSFTP\WINDOWS\MSVC\PSFTP\RELEASE\X11FWD.OBJ
|
|
||||||
|
|||||||
Binary file not shown.
@@ -1,10 +0,0 @@
|
|||||||
<?xml version='1.0' encoding='UTF-8' standalone='yes'?>
|
|
||||||
<assembly xmlns='urn:schemas-microsoft-com:asm.v1' manifestVersion='1.0'>
|
|
||||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
|
||||||
<security>
|
|
||||||
<requestedPrivileges>
|
|
||||||
<requestedExecutionLevel level='asInvoker' uiAccess='false' />
|
|
||||||
</requestedPrivileges>
|
|
||||||
</security>
|
|
||||||
</trustInfo>
|
|
||||||
</assembly>
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,5 +1,5 @@
|
|||||||
Build started 7/25/2016 4:00:01 PM.
|
Build started 7/25/2016 5:20:25 PM.
|
||||||
1>Project "C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\psftp.vcxproj" on node 2 (Build target(s)).
|
1>Project "C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\psftp.vcxproj" on node 2 (Rebuild target(s)).
|
||||||
1>ClCompile:
|
1>ClCompile:
|
||||||
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /I..\..\..\./ /I..\..\..\charset/ /I..\..\..\windows/ /I..\..\..\unix/ /I..\..\..\mac/ /I..\..\..\macosx/ /Zi /nologo /W3 /WX- /O2 /Ob1 /Oy- /D WIN32 /D NDEBUG /D _WINDOWS /D _VC80_UPGRADE=0x0600 /D _WINDLL /D _MBCS /GF /Gm- /EHsc /MT /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Fo".\Release\\" /Fd".\Release\vc120.pdb" /Gd /TC /analyze- /errorReport:prompt ..\..\..\be_none.c ..\..\..\cmdline.c ..\..\..\cproxy.c ..\..\..\int64.c ..\..\..\logging.c ..\..\..\misc.c ..\..\..\pinger.c ..\..\..\portfwd.c ..\..\..\proxy.c ..\..\..\psftp.c ..\..\..\settings.c ..\..\..\sftp.c ..\..\..\ssh.c ..\..\..\sshaes.c ..\..\..\ssharcf.c ..\..\..\sshblowf.c ..\..\..\sshbn.c ..\..\..\sshcrc.c ..\..\..\sshcrcda.c ..\..\..\sshdes.c ..\..\..\sshdh.c ..\..\..\sshdss.c ..\..\..\sshmd5.c ..\..\..\sshpubk.c ..\..\..\sshrand.c ..\..\..\sshrsa.c ..\..\..\sshsh256.c ..\..\..\sshsh512.c ..\..\..\sshsha.c ..\..\..\sshzlib.c ..\..\..\timing.c ..\..\..\tree234.c ..\..\..\version.c ..\..\..\wildcard.c ..\..\wincons.c ..\..\windefs.c ..\..\winhandl.c ..\..\winmisc.c ..\..\winnet.c ..\..\winnoise.c ..\..\winpgntc.c ..\..\winproxy.c ..\..\winsftp.c ..\..\winstore.c ..\..\wintime.c ..\..\..\x11fwd.c
|
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin\CL.exe /c /I..\..\..\./ /I..\..\..\charset/ /I..\..\..\windows/ /I..\..\..\unix/ /I..\..\..\mac/ /I..\..\..\macosx/ /Zi /nologo /W3 /WX- /O2 /Ob1 /Oy- /D WIN32 /D NDEBUG /D _WINDOWS /D _VC80_UPGRADE=0x0600 /D _WINDLL /D _MBCS /GF /Gm- /EHsc /MT /GS /Gy /fp:precise /Zc:wchar_t /Zc:forScope /Fo".\Release\\" /Fd".\Release\vc120.pdb" /Gd /TC /analyze- /errorReport:prompt ..\..\..\be_none.c ..\..\..\cmdline.c ..\..\..\cproxy.c ..\..\..\int64.c ..\..\..\logging.c ..\..\..\misc.c ..\..\..\pinger.c ..\..\..\portfwd.c ..\..\..\proxy.c ..\..\..\psftp.c ..\..\..\settings.c ..\..\..\sftp.c ..\..\..\ssh.c ..\..\..\sshaes.c ..\..\..\ssharcf.c ..\..\..\sshblowf.c ..\..\..\sshbn.c ..\..\..\sshcrc.c ..\..\..\sshcrcda.c ..\..\..\sshdes.c ..\..\..\sshdh.c ..\..\..\sshdss.c ..\..\..\sshmd5.c ..\..\..\sshpubk.c ..\..\..\sshrand.c ..\..\..\sshrsa.c ..\..\..\sshsh256.c ..\..\..\sshsh512.c ..\..\..\sshsha.c ..\..\..\sshzlib.c ..\..\..\timing.c ..\..\..\tree234.c ..\..\..\version.c ..\..\..\wildcard.c ..\..\wincons.c ..\..\windefs.c ..\..\winhandl.c ..\..\winmisc.c ..\..\winnet.c ..\..\winnoise.c ..\..\winpgntc.c ..\..\winproxy.c ..\..\winsftp.c ..\..\winstore.c ..\..\wintime.c ..\..\..\x11fwd.c
|
||||||
be_none.c
|
be_none.c
|
||||||
@@ -336,8 +336,8 @@
|
|||||||
.\Release\x11fwd.obj
|
.\Release\x11fwd.obj
|
||||||
Creating library .\Release\psftp.lib and object .\Release\psftp.exp
|
Creating library .\Release\psftp.lib and object .\Release\psftp.exp
|
||||||
psftp.vcxproj -> C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\.\Release\psftp.dll
|
psftp.vcxproj -> C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\.\Release\psftp.dll
|
||||||
1>Done Building Project "C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\psftp.vcxproj" (Build target(s)).
|
1>Done Building Project "C:\Users\DieSonne99\Desktop\panaceantech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\psftp.vcxproj" (Rebuild target(s)).
|
||||||
|
|
||||||
Build succeeded.
|
Build succeeded.
|
||||||
|
|
||||||
Time Elapsed 00:00:12.23
|
Time Elapsed 00:00:11.41
|
||||||
|
|||||||
Binary file not shown.
@@ -1,5 +0,0 @@
|
|||||||
^C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\psftp.vcxproj
|
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\psftp.lib
|
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\psftp.lib
|
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\psftp.exp
|
|
||||||
C:\_ROOT_\PanaceanTech\sFTPlugins\psftp\WINDOWS\MSVC\PSFTP\Release\psftp.exp
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user