runtime and conversion fixes

This commit is contained in:
Sparer, David
2016-03-10 15:35:09 -07:00
parent a937d5c4f7
commit 7c74d447bc
72 changed files with 478 additions and 5108 deletions

Binary file not shown.

View File

@@ -1687,7 +1687,6 @@ namespace mRemoteNG.App
try
{
Uri uri = new Uri("dummyscheme" + System.Uri.SchemeDelimiter + connectionString);
if (string.IsNullOrEmpty(uri.Host))
{
return null;

View File

@@ -80,11 +80,11 @@ namespace mRemoteNG.Config.Putty
treeNode.SelectedImageIndex = (int)Images.Enums.TreeImage.ConnectionClosed;
isNewNode = true;
}
sessionInfo.RootPuttySessionsInfo = provider.RootInfo;
sessionInfo.TreeNode = treeNode;
sessionInfo.Inherit.TurnOffInheritanceCompletely();
treeNode.Tag = sessionInfo;
if (isNewNode)

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,4 @@
using System;
using Microsoft.VisualBasic;
using System.Windows.Forms;
using System.Threading;
using mRemoteNG.App;
@@ -7,18 +6,30 @@ using mRemoteNG.App;
namespace mRemoteNG.Connection.Protocol
{
public class Base
{
#region Properties
public abstract class Base
{
#region Private Variables
private string _Name;
private UI.Window.Connection _connectionWindow;
private InterfaceControl _interfaceControl;
private Control _Control;
private mRemoteNG.Connection.Info.Force _Force;
private ConnectingEventHandler ConnectingEvent;
private ConnectedEventHandler ConnectedEvent;
private DisconnectedEventHandler DisconnectedEvent;
private ErrorOccuredEventHandler ErrorOccuredEvent;
private ClosingEventHandler ClosingEvent;
private ClosedEventHandler ClosedEvent;
#endregion
#region Public Properties
#region Control
private string _Name;
public string Name
{
get { return this._Name; }
set { this._Name = value; }
}
private UI.Window.Connection _connectionWindow;
public UI.Window.Connection ConnectionWindow
{
get { return _connectionWindow; }
@@ -30,36 +41,24 @@ namespace mRemoteNG.Connection.Protocol
_connectionWindow.ResizeEnd += ResizeEnd;
}
}
private InterfaceControl _interfaceControl;
public InterfaceControl InterfaceControl
{
get
{
return _interfaceControl;
}
get { return _interfaceControl; }
set
{
_interfaceControl = value;
ConnectionWindow = _interfaceControl.GetContainerControl() as UI.Window.Connection;
}
}
private Control _Control;
public Control Control
{
get
{
return this._Control;
}
set
{
this._Control = value;
}
get { return this._Control; }
set { this._Control = value; }
}
#endregion
private mRemoteNG.Connection.Info.Force _Force;
public mRemoteNG.Connection.Info.Force Force
{
get { return this._Force; }
@@ -71,6 +70,8 @@ namespace mRemoteNG.Connection.Protocol
#endregion
#region Methods
//public abstract int GetDefaultPort();
public virtual void Focus()
{
try
@@ -79,23 +80,20 @@ namespace mRemoteNG.Connection.Protocol
}
catch (Exception ex)
{
Runtime.MessageCollector.AddMessage(Messages.MessageClass.ErrorMsg, "Couldn\'t focus Control (Connection.Protocol.Base)" + Constants.vbNewLine + ex.Message, true);
Runtime.MessageCollector.AddMessage(Messages.MessageClass.ErrorMsg, "Couldn\'t focus Control (Connection.Protocol.Base)" + Environment.NewLine + ex.Message, true);
}
}
public virtual void ResizeBegin(System.Object sender, EventArgs e)
{
{
}
public virtual void Resize(System.Object sender, EventArgs e)
{
}
public virtual void ResizeEnd(System.Object sender, EventArgs e)
{
}
public virtual bool SetProps()
@@ -118,7 +116,7 @@ namespace mRemoteNG.Connection.Protocol
}
catch (Exception ex)
{
Runtime.MessageCollector.AddMessage(Messages.MessageClass.ErrorMsg, "Couldn\'t SetProps (Connection.Protocol.Base)" + Constants.vbNewLine + ex.Message, true);
Runtime.MessageCollector.AddMessage(Messages.MessageClass.ErrorMsg, "Couldn\'t SetProps (Connection.Protocol.Base)" + Environment.NewLine + ex.Message, true);
return false;
}
}
@@ -151,9 +149,10 @@ namespace mRemoteNG.Connection.Protocol
private void CloseBG()
{
if (ClosedEvent != null)
ClosedEvent(this);
if (ClosedEvent != null)
{
ClosedEvent(this);
}
try
{
tmrReconnect.Enabled = false;
@@ -166,7 +165,7 @@ namespace mRemoteNG.Connection.Protocol
}
catch (Exception ex)
{
Runtime.MessageCollector.AddMessage(Messages.MessageClass.WarningMsg, "Could not dispose control, probably form is already closed (Connection.Protocol.Base)" + Constants.vbNewLine + ex.Message, true);
Runtime.MessageCollector.AddMessage(Messages.MessageClass.WarningMsg, "Could not dispose control, probably form is already closed (Connection.Protocol.Base)" + Environment.NewLine + ex.Message, true);
}
}
@@ -186,13 +185,13 @@ namespace mRemoteNG.Connection.Protocol
}
catch (Exception ex)
{
Runtime.MessageCollector.AddMessage(Messages.MessageClass.WarningMsg, "Could not set InterfaceControl.Parent.Tag or Dispose Interface, probably form is already closed (Connection.Protocol.Base)" + Constants.vbNewLine + ex.Message, true);
Runtime.MessageCollector.AddMessage(Messages.MessageClass.WarningMsg, "Could not set InterfaceControl.Parent.Tag or Dispose Interface, probably form is already closed (Connection.Protocol.Base)" + Environment.NewLine + ex.Message, true);
}
}
}
catch (Exception ex)
{
Runtime.MessageCollector.AddMessage(Messages.MessageClass.ErrorMsg, "Couldn\'t Close InterfaceControl BG (Connection.Protocol.Base)" + Constants.vbNewLine + ex.Message, true);
Runtime.MessageCollector.AddMessage(Messages.MessageClass.ErrorMsg, "Couldn\'t Close InterfaceControl BG (Connection.Protocol.Base)" + Environment.NewLine + ex.Message, true);
}
}
@@ -241,93 +240,45 @@ namespace mRemoteNG.Connection.Protocol
#region Events
public delegate void ConnectingEventHandler(object sender);
private ConnectingEventHandler ConnectingEvent;
public event ConnectingEventHandler Connecting
{
add
{
ConnectingEvent = (ConnectingEventHandler) System.Delegate.Combine(ConnectingEvent, value);
}
remove
{
ConnectingEvent = (ConnectingEventHandler) System.Delegate.Remove(ConnectingEvent, value);
}
add { ConnectingEvent = (ConnectingEventHandler) System.Delegate.Combine(ConnectingEvent, value); }
remove { ConnectingEvent = (ConnectingEventHandler) System.Delegate.Remove(ConnectingEvent, value); }
}
public delegate void ConnectedEventHandler(object sender);
private ConnectedEventHandler ConnectedEvent;
public event ConnectedEventHandler Connected
{
add
{
ConnectedEvent = (ConnectedEventHandler) System.Delegate.Combine(ConnectedEvent, value);
}
remove
{
ConnectedEvent = (ConnectedEventHandler) System.Delegate.Remove(ConnectedEvent, value);
}
add { ConnectedEvent = (ConnectedEventHandler) System.Delegate.Combine(ConnectedEvent, value); }
remove { ConnectedEvent = (ConnectedEventHandler) System.Delegate.Remove(ConnectedEvent, value); }
}
public delegate void DisconnectedEventHandler(object sender, string DisconnectedMessage);
private DisconnectedEventHandler DisconnectedEvent;
public event DisconnectedEventHandler Disconnected
{
add
{
DisconnectedEvent = (DisconnectedEventHandler) System.Delegate.Combine(DisconnectedEvent, value);
}
remove
{
DisconnectedEvent = (DisconnectedEventHandler) System.Delegate.Remove(DisconnectedEvent, value);
}
add { DisconnectedEvent = (DisconnectedEventHandler) System.Delegate.Combine(DisconnectedEvent, value); }
remove { DisconnectedEvent = (DisconnectedEventHandler) System.Delegate.Remove(DisconnectedEvent, value); }
}
public delegate void ErrorOccuredEventHandler(object sender, string ErrorMessage);
private ErrorOccuredEventHandler ErrorOccuredEvent;
public event ErrorOccuredEventHandler ErrorOccured
{
add
{
ErrorOccuredEvent = (ErrorOccuredEventHandler) System.Delegate.Combine(ErrorOccuredEvent, value);
}
remove
{
ErrorOccuredEvent = (ErrorOccuredEventHandler) System.Delegate.Remove(ErrorOccuredEvent, value);
}
add { ErrorOccuredEvent = (ErrorOccuredEventHandler) System.Delegate.Combine(ErrorOccuredEvent, value); }
remove { ErrorOccuredEvent = (ErrorOccuredEventHandler) System.Delegate.Remove(ErrorOccuredEvent, value); }
}
public delegate void ClosingEventHandler(object sender);
private ClosingEventHandler ClosingEvent;
public event ClosingEventHandler Closing
{
add
{
ClosingEvent = (ClosingEventHandler) System.Delegate.Combine(ClosingEvent, value);
}
remove
{
ClosingEvent = (ClosingEventHandler) System.Delegate.Remove(ClosingEvent, value);
}
add { ClosingEvent = (ClosingEventHandler) System.Delegate.Combine(ClosingEvent, value); }
remove { ClosingEvent = (ClosingEventHandler) System.Delegate.Remove(ClosingEvent, value); }
}
public delegate void ClosedEventHandler(object sender);
private ClosedEventHandler ClosedEvent;
public event ClosedEventHandler Closed
{
add
{
ClosedEvent = (ClosedEventHandler) System.Delegate.Combine(ClosedEvent, value);
}
remove
{
ClosedEvent = (ClosedEventHandler) System.Delegate.Remove(ClosedEvent, value);
}
add { ClosedEvent = (ClosedEventHandler) System.Delegate.Combine(ClosedEvent, value); }
remove { ClosedEvent = (ClosedEventHandler) System.Delegate.Remove(ClosedEvent, value); }
}
@@ -373,4 +324,4 @@ namespace mRemoteNG.Connection.Protocol
}
#endregion
}
}
}

View File

@@ -110,38 +110,23 @@ namespace mRemoteNG.Tools
public System.ComponentModel.IComponent Component
{
get
{
throw (new NotImplementedException());
}
get { throw (new NotImplementedException()); }
}
public System.ComponentModel.IContainer Container
{
get
{
return null;
}
get { return null; }
}
public bool DesignMode
{
get
{
return true;
}
get { return true; }
}
public string Name
{
get
{
throw (new NotImplementedException());
}
set
{
throw (new NotImplementedException());
}
get { throw (new NotImplementedException()); }
set { throw (new NotImplementedException()); }
}
public void AddCommand(MenuCommand command)
@@ -186,14 +171,8 @@ namespace mRemoteNG.Tools
private bool _Command = false;
public bool Command
{
get
{
return _Command;
}
set
{
_Command = value;
}
get { return _Command; }
set { _Command = value; }
}
public CommandAttribute(bool isCommand = true)
{

View File

@@ -938,9 +938,7 @@ namespace mRemoteNG
cmbQuickConnect.Focus();
return ;
}
cmbQuickConnect.Add(connectionInfo);
Runtime.OpenConnection(connectionInfo, Connection.Info.Force.DoNotJump);
}
catch (Exception ex)
@@ -948,17 +946,17 @@ namespace mRemoteNG
Runtime.MessageCollector.AddExceptionMessage("btnQuickConnect_ButtonClick() failed.", ex, Messages.MessageClass.ErrorMsg, true);
}
}
public void cmbQuickConnect_ProtocolChanged(object sender, Controls.QuickConnectComboBox.ProtocolChangedEventArgs e)
{
SetQuickConnectProtocol(Connection.Protocol.Converter.ProtocolToString(e.Protocol));
}
public void btnQuickConnect_DropDownItemClicked(System.Object sender, System.Windows.Forms.ToolStripItemClickedEventArgs e)
{
SetQuickConnectProtocol(e.ClickedItem.Text);
}
private void SetQuickConnectProtocol(string protocol)
{
My.Settings.Default.QuickConnectProtocol = protocol;
@@ -1077,7 +1075,7 @@ namespace mRemoteNG
{
_inSizeMove = true;
}
public void frmMain_Resize(object sender, EventArgs e)
{
if (WindowState == FormWindowState.Minimized)
@@ -1096,7 +1094,7 @@ namespace mRemoteNG
PreviousWindowState = WindowState;
}
}
public void frmMain_ResizeEnd(object sender, EventArgs e)
{
_inSizeMove = false;
@@ -1104,7 +1102,6 @@ namespace mRemoteNG
ActivateConnection();
}
/*
protected override void WndProc(ref Message m)
{
// Listen for and handle operating system messages
@@ -1207,13 +1204,12 @@ namespace mRemoteNG
base.WndProc(ref m);
}
*/
private void ActivateConnection()
{
if (pnlDock.ActiveDocument is UI.Window.Connection)
{
UI.Window.Connection cW = (UI.Window.Connection)pnlDock.ActiveDocument;
UI.Window.Connection cW = pnlDock.ActiveDocument as UI.Window.Connection;
if (cW.TabController.SelectedTab != null)
{
Crownwood.Magic.Controls.TabPage tab = cW.TabController.SelectedTab;
@@ -1223,17 +1219,17 @@ namespace mRemoteNG
}
}
}
public void pnlDock_ActiveDocumentChanged(object sender, EventArgs e)
{
ActivateConnection();
UI.Window.Connection connectionWindow = (UI.Window.Connection)pnlDock.ActiveDocument;
UI.Window.Connection connectionWindow = pnlDock.ActiveDocument as UI.Window.Connection;
if (connectionWindow != null)
{
connectionWindow.UpdateSelectedConnection();
}
}
private void UpdateWindowTitle()
{
if (InvokeRequired)
@@ -1277,7 +1273,7 @@ namespace mRemoteNG
this.Text = titleBuilder.ToString();
}
public void ShowHidePanelTabs(DockContent closingDocument = null)
{
DocumentStyle newDocumentStyle = pnlDock.DocumentStyle;
@@ -1313,7 +1309,7 @@ namespace mRemoteNG
pnlDock.Size = new Size(1, 1);
}
}
private void SelectTabRelative(int relativeIndex)
{
if (!(pnlDock.ActiveDocument is UI.Window.Connection))

View File

@@ -251,7 +251,6 @@ namespace mRemoteNG.UI.Window
#region Public Methods
public Connection(DockContent Panel, string FormText = "")
{
if (FormText == "")
{
FormText = My.Language.strNewPanel;

View File

@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Connections Name="Connections" Export="False" Protected="l+MGD1gRIn+W+wRefai6jWO5ccGb33kLl0S2nCOEXdlRKn/p/LhPrZSjw2Oe/TUX" ConfVersion="2.5" />

View File

@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Connections Name="Connections" Export="False" Protected="GiUis20DIbnYzWPcdaQKfjE2H5jh//L5v4RGrJMGNXuIq2CttB/d/BxaBP2LwRhY" ConfVersion="2.5" />

View File

@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Connections Name="Connections" Export="False" Protected="l+MGD1gRIn+W+wRefai6jWO5ccGb33kLl0S2nCOEXdlRKn/p/LhPrZSjw2Oe/TUX" ConfVersion="2.5" />

View File

@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Connections Name="Connections" Export="False" Protected="l+MGD1gRIn+W+wRefai6jWO5ccGb33kLl0S2nCOEXdlRKn/p/LhPrZSjw2Oe/TUX" ConfVersion="2.5" />

View File

@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Connections Name="Connections" Export="False" Protected="l+MGD1gRIn+W+wRefai6jWO5ccGb33kLl0S2nCOEXdlRKn/p/LhPrZSjw2Oe/TUX" ConfVersion="2.5" />

View File

@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Connections Name="Connections" Export="False" Protected="l+MGD1gRIn+W+wRefai6jWO5ccGb33kLl0S2nCOEXdlRKn/p/LhPrZSjw2Oe/TUX" ConfVersion="2.5" />

View File

@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Connections Name="Connections" Export="False" Protected="l+MGD1gRIn+W+wRefai6jWO5ccGb33kLl0S2nCOEXdlRKn/p/LhPrZSjw2Oe/TUX" ConfVersion="2.5" />

View File

@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Connections Name="Connections" Export="False" Protected="l+MGD1gRIn+W+wRefai6jWO5ccGb33kLl0S2nCOEXdlRKn/p/LhPrZSjw2Oe/TUX" ConfVersion="2.5" />

View File

@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Connections Name="Connections" Export="False" Protected="l+MGD1gRIn+W+wRefai6jWO5ccGb33kLl0S2nCOEXdlRKn/p/LhPrZSjw2Oe/TUX" ConfVersion="2.5" />

View File

@@ -1,2 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Connections Name="Connections" Export="False" Protected="GiUis20DIbnYzWPcdaQKfjE2H5jh//L5v4RGrJMGNXuIq2CttB/d/BxaBP2LwRhY" ConfVersion="2.5" />

View File

@@ -1,18 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="mRemoteNG.application" version="1.64.0.1" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="mRemoteNG" asmv2:product="mRemoteNG" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<dependency>
<dependentAssembly dependencyType="install" codebase="mRemoteNG.exe.manifest" size="65791">
<assemblyIdentity name="mRemoteNG.exe" version="1.64.0.1" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>pmsrvzrZmCSBhx0DCRyoBT40fWQ=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
</asmv1:assembly>

File diff suppressed because it is too large Load Diff

View File

@@ -1,10 +0,0 @@
2016-03-09 15:10:43,879 [8] ERROR- Connections file "C:\Users\vsparda\Documents\Repositories\mRemoteNG_MyFork\mRemoteV1\bin\Debug Portable\confCons.xml" could not be loaded!
Input string was not in a correct format.
2016-03-09 15:12:44,416 [10] ERROR- Connections file "C:\Users\vsparda\Documents\Repositories\mRemoteNG_MyFork\mRemoteV1\bin\Debug Portable\confCons.xml" could not be loaded!
Input string was not in a correct format.
2016-03-09 15:31:06,476 [7] ERROR- Connections file "C:\Users\vsparda\Documents\Repositories\mRemoteNG_MyFork\mRemoteV1\bin\Debug Portable\confCons.xml" could not be loaded!
Object reference not set to an instance of an object.
2016-03-09 15:32:14,090 [9] ERROR- Connections file "C:\Users\vsparda\Documents\Repositories\mRemoteNG_MyFork\mRemoteV1\bin\Debug Portable\confCons.xml" could not be loaded!
Object reference not set to an instance of an object.
2016-03-09 15:33:13,719 [9] ERROR- Connections file "C:\Users\vsparda\Documents\Repositories\mRemoteNG_MyFork\mRemoteV1\bin\Debug Portable\confCons.xml" could not be loaded!
Object reference not set to an instance of an object.

View File

@@ -1,18 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="mRemoteNG.application" version="1.64.0.1" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="mRemoteNG" asmv2:product="mRemoteNG" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<dependency>
<dependentAssembly dependencyType="install" codebase="mRemoteNG.exe.manifest" size="65791">
<assemblyIdentity name="mRemoteNG.exe" version="1.64.0.1" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>pmsrvzrZmCSBhx0DCRyoBT40fWQ=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
</asmv1:assembly>

File diff suppressed because it is too large Load Diff

View File

@@ -7,7 +7,7 @@
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{4934A491-40BC-4E5B-9166-EA1169A220F6}</ProjectGuid>
<OutputType>WinExe</OutputType>
<StartupObject>mRemoteNG.My.MyApplication</StartupObject>
<StartupObject>mRemoteNG.ProgramRoot</StartupObject>
<RootNamespace>mRemoteNG</RootNamespace>
<AssemblyName>mRemoteNG</AssemblyName>
<MyType>WindowsForms</MyType>
@@ -166,7 +166,7 @@
<Folder Include="Properties\DataSources\" />
</ItemGroup>
<ItemGroup>
<Compile Include="ApplicationEvents.cs" />
<Compile Include="App\ApplicationEvents.cs" />
<Compile Include="App\App.Info.cs" />
<Compile Include="App\App.Native.cs" />
<Compile Include="App\App.Runtime.cs" />
@@ -186,12 +186,12 @@
<Compile Include="Config\Import\PuttyConnectionManager.cs" />
<Compile Include="Config\Import\RemoteDesktopConnection.cs" />
<Compile Include="Config\Import\RemoteDesktopConnectionManager.cs" />
<Compile Include="Config\Putty\RegistryProvider.cs" />
<Compile Include="Config\Putty\XmingProvider.cs" />
<Compile Include="Config\Putty\Sessions.cs" />
<Compile Include="Config\Putty\Provider.cs" />
<Compile Include="Config\Putty\Config.Putty.RegistryProvider.cs" />
<Compile Include="Config\Putty\Config.Putty.XmingProvider.cs" />
<Compile Include="Config\Putty\Config.Putty.Sessions.cs" />
<Compile Include="Config\Putty\Config.Putty.Provider.cs" />
<Compile Include="Connection\Connection.Info.Inheritance.cs" />
<Compile Include="ProgramRoot.cs" />
<Compile Include="App\ProgramRoot.cs" />
<Compile Include="UI\Controls\ListView.cs">
<SubType>Component</SubType>
</Compile>

View File

@@ -1,18 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2">
<assemblyIdentity name="mRemoteNG.application" version="1.64.0.1" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" xmlns="urn:schemas-microsoft-com:asm.v1" />
<description asmv2:publisher="mRemoteNG" asmv2:product="mRemoteNG" xmlns="urn:schemas-microsoft-com:asm.v1" />
<deployment install="true" mapFileExtensions="true" />
<dependency>
<dependentAssembly dependencyType="install" codebase="mRemoteNG.exe.manifest" size="65791">
<assemblyIdentity name="mRemoteNG.exe" version="1.64.0.1" publicKeyToken="0000000000000000" language="neutral" processorArchitecture="x86" type="win32" />
<hash>
<dsig:Transforms>
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>pmsrvzrZmCSBhx0DCRyoBT40fWQ=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
</asmv1:assembly>

File diff suppressed because it is too large Load Diff