diff --git a/Renci.SshClient/Renci.SshClient/Documentation/Content/Extensibility.AddAuthenticationMethod.aml b/Renci.SshClient/Renci.SshClient/Documentation/Content/Extensibility.AddAuthenticationMethod.aml
deleted file mode 100644
index 0b213804..00000000
--- a/Renci.SshClient/Renci.SshClient/Documentation/Content/Extensibility.AddAuthenticationMethod.aml
+++ /dev/null
@@ -1,96 +0,0 @@
-
-
-
-
-
-
-
- Required introduction
-
-
-
-
- Procedure title
-
-
-
- First step
-
-
-
-
- Second step
-
-
-
-
-
-
-
- Optional section title
-
-
- Procedure #2
-
-
-
- First step
-
-
-
-
- Second step
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Renci.SshClient/Renci.SshClient/Documentation/Content/Extensibility.AddEncryption.aml b/Renci.SshClient/Renci.SshClient/Documentation/Content/Extensibility.AddEncryption.aml
deleted file mode 100644
index 83e3d974..00000000
--- a/Renci.SshClient/Renci.SshClient/Documentation/Content/Extensibility.AddEncryption.aml
+++ /dev/null
@@ -1,96 +0,0 @@
-
-
-
-
-
-
-
- Required introduction
-
-
-
-
- Procedure title
-
-
-
- First step
-
-
-
-
- Second step
-
-
-
-
-
-
-
- Optional section title
-
-
- Procedure #2
-
-
-
- First step
-
-
-
-
- Second step
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Renci.SshClient/Renci.SshClient/Documentation/Content/Extensibility.AddHashAlgorithm.aml b/Renci.SshClient/Renci.SshClient/Documentation/Content/Extensibility.AddHashAlgorithm.aml
deleted file mode 100644
index 90218463..00000000
--- a/Renci.SshClient/Renci.SshClient/Documentation/Content/Extensibility.AddHashAlgorithm.aml
+++ /dev/null
@@ -1,96 +0,0 @@
-
-
-
-
-
-
-
- Required introduction
-
-
-
-
- Procedure title
-
-
-
- First step
-
-
-
-
- Second step
-
-
-
-
-
-
-
- Optional section title
-
-
- Procedure #2
-
-
-
- First step
-
-
-
-
- Second step
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Renci.SshClient/Renci.SshClient/Documentation/Content/Extensibility.aml b/Renci.SshClient/Renci.SshClient/Documentation/Content/Extensibility.aml
deleted file mode 100644
index 6377bdce..00000000
--- a/Renci.SshClient/Renci.SshClient/Documentation/Content/Extensibility.aml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
- Required introduction
-
-
-
- "In This Section" info
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Renci.SshClient/Renci.SshClient/Documentation/Content/HowTo.Connect.aml b/Renci.SshClient/Renci.SshClient/Documentation/Content/HowTo.Connect.aml
deleted file mode 100644
index eef4b7b7..00000000
--- a/Renci.SshClient/Renci.SshClient/Documentation/Content/HowTo.Connect.aml
+++ /dev/null
@@ -1,157 +0,0 @@
-
-
-
-
-
- The library supports differnet method to connect to SSH server.
- It also has support to add a custom authentication method if needed. Method supported out of the box are :publickey, password and keyboard-interactive. There is also support for different events that can occure during authentication. For example: server can send an information that need to be presented to the user upon login, user's password is expired and new password could be provided to change user's password and others scenrios.
-
- By using T:Renci.SshClient.ConnectionInfo you can specify connection timeout, which in this case will wait 30 seconds while tying to connect to the server after which it will throw an exception if it did not connect.
-
-
-
-
- Connect using password.
-
- Following examples show how to connect using username and password combination.
-
-
-
- Connecting using username to server's default port
-
- using (var client = new SshClient("host", "username", "password"))
- {
- client.Connect();
- client.Disconnect();
- }
-
-
-
- Connecting using username to server's port 1234
-
- using (var client = new SshClient("host", 1234, "username", "password"))
- {
- client.Connect();
- client.Disconnect();
- }
-
-
-
-
- This is similar to previouse example but it uses T:Renci.SshClient.ConnectionInfo objet to provide connection information.
-
-
- var connectionInfo = new PasswordConnectionInfo("host", "username", "password");
- using (var client = new SshClient(connectionInfo))
- {
- client.Connect();
- client.Disconnect();
- }
-
-
-
- Try to connect to the host within 30 seconds.
-
- var connectionInfo = new PasswordConnectionInfo("host", "username", "password");
- connectionInfo.Timeout = TimeSpan.FromSeconds(30);
- using (var client = new SshClient(connectionInfo))
- {
- client.Connect();
- client.Disconnect();
- }
-
-
-
-
-
-
-
-
- Connect using private key file.
-
- Following examples show how to connect using one or many private keys wich can be encrypted with passphrase.
-
-
-
- Connecting using private key file without providing a passphrase
-
- using (var client = new SshClient("host", "username", new PrivateKeyFile(File.OpenRead(@"private.key"))))
- {
- client.Connect();
- client.Disconnect();
- }
-
-
-
- Connecting using private key file without providing a passphrase
-
- using (var client = new SshClient("host", "username", new PrivateKeyFile(File.OpenRead(@"private.key"))))
- {
- client.Connect();
- client.Disconnect();
- }
-
-
-
-
-
-
-
-
- Connect using keyboar interactive method.
-
- Examples of how to use keyboard interactive method to authenticate users.
-
-
-
- Example description
-
-
-
-
-
-
-
-
-
- Display server propmt to the user.
-
- Description
-
-
-
- Example description
-
-
-
-
-
-
-
-
-
- Change user password when logging in.
-
- Description
-
-
-
- Example description
-
-
-
-
-
-
-
-
-
-
- T:Renci.SshClient.PrivateKeyConnectionInfo
- T:Renci.SshClient.PasswordConnectionInfo
- T:Renci.SshClient.SshClient
- M:Renci.SshClient.SshBaseClient.Connect
-
-
-
-
\ No newline at end of file
diff --git a/Renci.SshClient/Renci.SshClient/Documentation/Content/HowTo.Sftp.aml b/Renci.SshClient/Renci.SshClient/Documentation/Content/HowTo.Sftp.aml
deleted file mode 100644
index d84d16c4..00000000
--- a/Renci.SshClient/Renci.SshClient/Documentation/Content/HowTo.Sftp.aml
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
- Required introduction
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Renci.SshClient/Renci.SshClient/Documentation/Content/HowTo.SshCommand.Run.aml b/Renci.SshClient/Renci.SshClient/Documentation/Content/HowTo.SshCommand.Run.aml
deleted file mode 100644
index 22fd4e42..00000000
--- a/Renci.SshClient/Renci.SshClient/Documentation/Content/HowTo.SshCommand.Run.aml
+++ /dev/null
@@ -1,68 +0,0 @@
-
-
-
-
- Optional summary abstract
-
-
- Required introduction
-
-
-
- Procedure title
-
-
-
- First step
-
-
-
-
- Second step
-
-
-
- Optional conclusion
-
- Optional code example
-
- Optional discussion of error handling and other
- issues related to writing solid code.
- Optional discussion of security issues.
-
-
-
-
-
\ No newline at end of file
diff --git a/Renci.SshClient/Renci.SshClient/Documentation/Content/HowTo.SshCommand.aml b/Renci.SshClient/Renci.SshClient/Documentation/Content/HowTo.SshCommand.aml
deleted file mode 100644
index 276d75c2..00000000
--- a/Renci.SshClient/Renci.SshClient/Documentation/Content/HowTo.SshCommand.aml
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
- Required introduction
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Renci.SshClient/Renci.SshClient/Documentation/Content/HowTo.aml b/Renci.SshClient/Renci.SshClient/Documentation/Content/HowTo.aml
deleted file mode 100644
index 0b1008d5..00000000
--- a/Renci.SshClient/Renci.SshClient/Documentation/Content/HowTo.aml
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
- Required introduction
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Renci.SshClient/Renci.SshClient/Documentation/Content/Introduction.aml b/Renci.SshClient/Renci.SshClient/Documentation/Content/Introduction.aml
deleted file mode 100644
index e7baf7c1..00000000
--- a/Renci.SshClient/Renci.SshClient/Documentation/Content/Introduction.aml
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-
-
- Optional summary abstract
-
-
- Required introduction
-
- Optional description of content in this section
-
-
- Optional external resources section
-
-
-
-
-
\ No newline at end of file
diff --git a/Renci.SshClient/Renci.SshClient/Documentation/Content/Reference.aml b/Renci.SshClient/Renci.SshClient/Documentation/Content/Reference.aml
deleted file mode 100644
index 47a38e3f..00000000
--- a/Renci.SshClient/Renci.SshClient/Documentation/Content/Reference.aml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
- Assembly name
-
-
-
- API member ID
-
-
-
-
\ No newline at end of file
diff --git a/Renci.SshClient/Renci.SshClient/Documentation/Renci.SshClient.content b/Renci.SshClient/Renci.SshClient/Documentation/Renci.SshClient.content
deleted file mode 100644
index c16bbc1f..00000000
--- a/Renci.SshClient/Renci.SshClient/Documentation/Renci.SshClient.content
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Renci.SshClient/Renci.SshClient/Documentation/SshClient.shfbproj b/Renci.SshClient/Renci.SshClient/Documentation/SshClient.shfbproj
deleted file mode 100644
index b701f435..00000000
--- a/Renci.SshClient/Renci.SshClient/Documentation/SshClient.shfbproj
+++ /dev/null
@@ -1,133 +0,0 @@
-
-
-
- Debug
- AnyCPU
- 2.0
- {0b73772a-c19f-4218-bd92-efa8d5f2ddd3}
- 1.9.0.0
-
- Documentation
- Documentation
- Documentation
-
- .\Help\
- SshClient
- en-US
-
-
-
- 4.0.30319
- A Ssh.Net Client Documentation
- olegkap%40gmail.com
- http://sshnet.codeplex.com
- Summary, Parameter, Returns, AutoDocumentCtors, Namespace, TypeParameter
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/Renci.SshClient/Renci.SshClient/Renci.SshClient.csproj b/Renci.SshClient/Renci.SshClient/Renci.SshClient.csproj
index ebfd887e..0660cfea 100644
--- a/Renci.SshClient/Renci.SshClient/Renci.SshClient.csproj
+++ b/Renci.SshClient/Renci.SshClient/Renci.SshClient.csproj
@@ -266,21 +266,8 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+