Skip to content

Commit adfaafd

Browse files
committed
Apply optimization changes to other projects.
1 parent c61633a commit adfaafd

File tree

52 files changed

+128
-163
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+128
-163
lines changed

Renci.SshClient/Renci.SshNet.NET35/Renci.SshNet.NET35.csproj

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222
<DebugType>full</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
25-
<DefineConstants>DEBUG;TRACE</DefineConstants>
25+
<DefineConstants>TRACE;DEBUG;TUNING</DefineConstants>
2626
<ErrorReport>prompt</ErrorReport>
2727
<WarningLevel>4</WarningLevel>
2828
</PropertyGroup>
2929
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3030
<DebugType>none</DebugType>
3131
<Optimize>true</Optimize>
3232
<OutputPath>bin\Release\</OutputPath>
33-
<DefineConstants>TRACE</DefineConstants>
33+
<DefineConstants>TRACE;TUNING</DefineConstants>
3434
<ErrorReport>prompt</ErrorReport>
3535
<WarningLevel>4</WarningLevel>
3636
<DocumentationFile>bin\Release\Renci.SshNet.xml</DocumentationFile>
@@ -135,6 +135,9 @@
135135
<Compile Include="..\Renci.SshNet\Common\ChannelEventArgs.cs">
136136
<Link>Common\ChannelEventArgs.cs</Link>
137137
</Compile>
138+
<Compile Include="..\Renci.SshNet\Common\ChannelExtendedDataEventArgs.cs">
139+
<Link>Common\ChannelExtendedDataEventArgs.cs</Link>
140+
</Compile>
138141
<Compile Include="..\Renci.SshNet\Common\ChannelOpenConfirmedEventArgs.cs">
139142
<Link>Common\ChannelOpenConfirmedEventArgs.cs</Link>
140143
</Compile>
@@ -222,6 +225,9 @@
222225
<Compile Include="..\Renci.SshNet\Common\SshData.cs">
223226
<Link>Common\SshData.cs</Link>
224227
</Compile>
228+
<Compile Include="..\Renci.SshNet\Common\SshDataStream.cs">
229+
<Link>Common\SshDataStream.cs</Link>
230+
</Compile>
225231
<Compile Include="..\Renci.SshNet\Common\SshException.cs">
226232
<Link>Common\SshException.cs</Link>
227233
</Compile>
@@ -861,9 +867,6 @@
861867
<Compile Include="..\Renci.SshNet\Sftp\Responses\SftpVersionResponse.cs">
862868
<Link>Sftp\Responses\SftpVersionResponse.cs</Link>
863869
</Compile>
864-
<Compile Include="..\Renci.SshNet\Sftp\SftpDataMessage.cs">
865-
<Link>Sftp\SftpDataMessage.cs</Link>
866-
</Compile>
867870
<Compile Include="..\Renci.SshNet\Sftp\SftpDownloadAsyncResult.cs">
868871
<Link>Sftp\SftpDownloadAsyncResult.cs</Link>
869872
</Compile>
@@ -943,7 +946,7 @@
943946
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
944947
<ProjectExtensions>
945948
<VisualStudio>
946-
<UserProperties ProjectLinkReference="2f5f8c90-0bd1-424f-997c-7bc6280919d1" ProjectLinkerExcludeFilter="\\?desktop(\\.*)?$;\\?silverlight(\\.*)?$;\.desktop;\.silverlight;\.xaml;^service references(\\.*)?$;\.clientconfig;^web references(\\.*)?$" />
949+
<UserProperties ProjectLinkerExcludeFilter="\\?desktop(\\.*)?$;\\?silverlight(\\.*)?$;\.desktop;\.silverlight;\.xaml;^service references(\\.*)?$;\.clientconfig;^web references(\\.*)?$" ProjectLinkReference="2f5f8c90-0bd1-424f-997c-7bc6280919d1" />
947950
</VisualStudio>
948951
</ProjectExtensions>
949952
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

Renci.SshClient/Renci.SshNet.NET35/Session.NET35.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
using System.Linq;
22
using System;
3-
using System.Net.Sockets;
4-
using System.Net;
53
using Renci.SshNet.Messages;
6-
using Renci.SshNet.Common;
74
using System.Threading;
8-
using Renci.SshNet.Messages.Transport;
95
using System.Reflection;
106
using System.Collections.Generic;
117
using System.Diagnostics;

Renci.SshClient/Renci.SshNet.Silverlight/Common/Extensions.SilverlightShared.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
using System;
2-
using System.Collections.Generic;
32
using System.Linq;
4-
using System.Text;
53
using System.Net.Sockets;
64
using System.Threading;
75
using System.Security.Cryptography;
@@ -13,7 +11,7 @@ namespace Renci.SshNet.Common
1311
/// <summary>
1412
/// Collection of different extension method specific for Silverlight
1513
/// </summary>
16-
public static partial class Extensions
14+
internal static partial class Extensions
1715
{
1816
/// <summary>
1917
/// Determines whether [is null or white space] [the specified value].

Renci.SshClient/Renci.SshNet.Silverlight/Renci.SshNet.Silverlight.csproj

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<DebugType>full</DebugType>
3434
<Optimize>false</Optimize>
3535
<OutputPath>Bin\Debug</OutputPath>
36-
<DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants>
36+
<DefineConstants>TRACE;DEBUG;SILVERLIGHT;TUNING</DefineConstants>
3737
<NoStdLib>true</NoStdLib>
3838
<NoConfig>true</NoConfig>
3939
<ErrorReport>prompt</ErrorReport>
@@ -44,7 +44,7 @@
4444
<DebugType>none</DebugType>
4545
<Optimize>true</Optimize>
4646
<OutputPath>Bin\Release</OutputPath>
47-
<DefineConstants>TRACE;SILVERLIGHT</DefineConstants>
47+
<DefineConstants>TRACE;SILVERLIGHT;TUNING</DefineConstants>
4848
<NoStdLib>true</NoStdLib>
4949
<NoConfig>true</NoConfig>
5050
<ErrorReport>prompt</ErrorReport>
@@ -148,6 +148,9 @@
148148
<Compile Include="..\Renci.SshNet\Common\ChannelEventArgs.cs">
149149
<Link>Common\ChannelEventArgs.cs</Link>
150150
</Compile>
151+
<Compile Include="..\Renci.SshNet\Common\ChannelExtendedDataEventArgs.cs">
152+
<Link>Common\ChannelExtendedDataEventArgs.cs</Link>
153+
</Compile>
151154
<Compile Include="..\Renci.SshNet\Common\ChannelOpenConfirmedEventArgs.cs">
152155
<Link>Common\ChannelOpenConfirmedEventArgs.cs</Link>
153156
</Compile>
@@ -211,6 +214,9 @@
211214
<Compile Include="..\Renci.SshNet\Common\SshData.cs">
212215
<Link>Common\SshData.cs</Link>
213216
</Compile>
217+
<Compile Include="..\Renci.SshNet\Common\SshDataStream.cs">
218+
<Link>Common\SshDataStream.cs</Link>
219+
</Compile>
214220
<Compile Include="..\Renci.SshNet\Common\SshException.cs">
215221
<Link>Common\SshException.cs</Link>
216222
</Compile>
@@ -808,9 +814,6 @@
808814
<Compile Include="..\Renci.SshNet\Sftp\Responses\SftpVersionResponse.cs">
809815
<Link>Sftp\Responses\SftpVersionResponse.cs</Link>
810816
</Compile>
811-
<Compile Include="..\Renci.SshNet\Sftp\SftpDataMessage.cs">
812-
<Link>Sftp\SftpDataMessage.cs</Link>
813-
</Compile>
814817
<Compile Include="..\Renci.SshNet\Sftp\SftpDownloadAsyncResult.cs">
815818
<Link>Sftp\SftpDownloadAsyncResult.cs</Link>
816819
</Compile>
@@ -891,7 +894,7 @@
891894
<FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}">
892895
<SilverlightProjectProperties />
893896
</FlavorProperties>
894-
<UserProperties ProjectLinkerExcludeFilter="\\?desktop(\\.*)?$;\\?silverlight(\\.*)?$;\.desktop;\.silverlight;\.xaml;^service references(\\.*)?$;\.clientconfig;^web references(\\.*)?$" ProjectLinkReference="2f5f8c90-0bd1-424f-997c-7bc6280919d1" />
897+
<UserProperties ProjectLinkReference="2f5f8c90-0bd1-424f-997c-7bc6280919d1" ProjectLinkerExcludeFilter="\\?desktop(\\.*)?$;\\?silverlight(\\.*)?$;\.desktop;\.silverlight;\.xaml;^service references(\\.*)?$;\.clientconfig;^web references(\\.*)?$" />
895898
</VisualStudio>
896899
</ProjectExtensions>
897900
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

Renci.SshClient/Renci.SshNet.Silverlight/Session.SilverlightShared.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,17 +176,19 @@ partial void SocketRead(int length, ref byte[] buffer)
176176
/// Writes the specified data to the server.
177177
/// </summary>
178178
/// <param name="data">The data to write to the server.</param>
179+
/// <param name="offset">The zero-based offset in <paramref name="data"/> at which to begin taking data from.</param>
180+
/// <param name="length">The number of bytes of <paramref name="data"/> to write.</param>
179181
/// <exception cref="SshOperationTimeoutException">The write has timed-out.</exception>
180182
/// <exception cref="SocketException">The write failed.</exception>
181-
partial void SocketWrite(byte[] data)
183+
private void SocketWrite(byte[] data, int offset, int length)
182184
{
183185
var timeout = ConnectionInfo.Timeout;
184186
var totalBytesSent = 0; // how many bytes are already sent
185-
var totalBytesToSend = data.Length;
187+
var totalBytesToSend = length;
186188

187189
do
188190
{
189-
var args = CreateSocketAsyncEventArgs(_sendEvent, data, 0, totalBytesToSend - totalBytesSent);
191+
var args = CreateSocketAsyncEventArgs(_sendEvent, data, offset + totalBytesSent, totalBytesToSend - totalBytesSent);
190192
if (_socket.SendAsync(args))
191193
{
192194
if (!_sendEvent.WaitOne(timeout))

Renci.SshClient/Renci.SshNet.Silverlight5/Renci.SshNet.Silverlight5.csproj

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<DebugType>full</DebugType>
3535
<Optimize>false</Optimize>
3636
<OutputPath>Bin\Debug</OutputPath>
37-
<DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants>
37+
<DefineConstants>TRACE;DEBUG;SILVERLIGHT;TUNING</DefineConstants>
3838
<NoStdLib>true</NoStdLib>
3939
<NoConfig>true</NoConfig>
4040
<ErrorReport>prompt</ErrorReport>
@@ -46,7 +46,7 @@
4646
<DebugType>none</DebugType>
4747
<Optimize>true</Optimize>
4848
<OutputPath>Bin\Release</OutputPath>
49-
<DefineConstants>TRACE;SILVERLIGHT</DefineConstants>
49+
<DefineConstants>TRACE;SILVERLIGHT;TUNING</DefineConstants>
5050
<NoStdLib>true</NoStdLib>
5151
<NoConfig>true</NoConfig>
5252
<ErrorReport>prompt</ErrorReport>
@@ -190,6 +190,9 @@
190190
<Compile Include="..\Renci.SshNet\Common\ChannelEventArgs.cs">
191191
<Link>Common\ChannelEventArgs.cs</Link>
192192
</Compile>
193+
<Compile Include="..\Renci.SshNet\Common\ChannelExtendedDataEventArgs.cs">
194+
<Link>Common\ChannelExtendedDataEventArgs.cs</Link>
195+
</Compile>
193196
<Compile Include="..\Renci.SshNet\Common\ChannelOpenConfirmedEventArgs.cs">
194197
<Link>Common\ChannelOpenConfirmedEventArgs.cs</Link>
195198
</Compile>
@@ -256,6 +259,9 @@
256259
<Compile Include="..\Renci.SshNet\Common\SshData.cs">
257260
<Link>Common\SshData.cs</Link>
258261
</Compile>
262+
<Compile Include="..\Renci.SshNet\Common\SshDataStream.cs">
263+
<Link>Common\SshDataStream.cs</Link>
264+
</Compile>
259265
<Compile Include="..\Renci.SshNet\Common\SshException.cs">
260266
<Link>Common\SshException.cs</Link>
261267
</Compile>
@@ -853,9 +859,6 @@
853859
<Compile Include="..\Renci.SshNet\Sftp\Responses\SftpVersionResponse.cs">
854860
<Link>Sftp\Responses\SftpVersionResponse.cs</Link>
855861
</Compile>
856-
<Compile Include="..\Renci.SshNet\Sftp\SftpDataMessage.cs">
857-
<Link>Sftp\SftpDataMessage.cs</Link>
858-
</Compile>
859862
<Compile Include="..\Renci.SshNet\Sftp\SftpDownloadAsyncResult.cs">
860863
<Link>Sftp\SftpDownloadAsyncResult.cs</Link>
861864
</Compile>
@@ -923,7 +926,7 @@
923926
<FlavorProperties GUID="{A1591282-1198-4647-A2B1-27E5FF5F6F3B}">
924927
<SilverlightProjectProperties />
925928
</FlavorProperties>
926-
<UserProperties ProjectLinkerExcludeFilter="\\?desktop(\\.*)?$;\\?silverlight(\\.*)?$;\.desktop;\.silverlight;\.xaml;^service references(\\.*)?$;\.clientconfig;^web references(\\.*)?$" ProjectLinkReference="2f5f8c90-0bd1-424f-997c-7bc6280919d1" />
929+
<UserProperties ProjectLinkReference="2f5f8c90-0bd1-424f-997c-7bc6280919d1" ProjectLinkerExcludeFilter="\\?desktop(\\.*)?$;\\?silverlight(\\.*)?$;\.desktop;\.silverlight;\.xaml;^service references(\\.*)?$;\.clientconfig;^web references(\\.*)?$" />
927930
</VisualStudio>
928931
</ProjectExtensions>
929932
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

Renci.SshClient/Renci.SshNet.Tests.NET35/Renci.SshNet.Tests.NET35.csproj

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@
2525
<DebugType>full</DebugType>
2626
<Optimize>false</Optimize>
2727
<OutputPath>bin\Debug\</OutputPath>
28-
<DefineConstants>DEBUG;TRACE</DefineConstants>
28+
<DefineConstants>TRACE;DEBUG;TUNING</DefineConstants>
2929
<ErrorReport>prompt</ErrorReport>
3030
<WarningLevel>4</WarningLevel>
3131
</PropertyGroup>
3232
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
3333
<DebugType>pdbonly</DebugType>
3434
<Optimize>true</Optimize>
3535
<OutputPath>bin\Release\</OutputPath>
36-
<DefineConstants>TRACE</DefineConstants>
36+
<DefineConstants>TRACE;TUNING</DefineConstants>
3737
<ErrorReport>prompt</ErrorReport>
3838
<WarningLevel>0</WarningLevel>
3939
</PropertyGroup>
@@ -529,9 +529,6 @@
529529
<Compile Include="..\Renci.SshNet.Tests\Classes\Messages\Authentication\RequestMessagePublicKeyTest.cs">
530530
<Link>Classes\Messages\Authentication\RequestMessagePublicKeyTest.cs</Link>
531531
</Compile>
532-
<Compile Include="..\Renci.SshNet.Tests\Classes\Messages\Authentication\RequestMessageTest.cs">
533-
<Link>Classes\Messages\Authentication\RequestMessageTest.cs</Link>
534-
</Compile>
535532
<Compile Include="..\Renci.SshNet.Tests\Classes\Messages\Authentication\SuccessMessageTest.cs">
536533
<Link>Classes\Messages\Authentication\SuccessMessageTest.cs</Link>
537534
</Compile>
@@ -955,9 +952,6 @@
955952
<Compile Include="..\Renci.SshNet.Tests\Classes\Sftp\Responses\SftpVersionResponseTest.cs">
956953
<Link>Classes\Sftp\Responses\SftpVersionResponseTest.cs</Link>
957954
</Compile>
958-
<Compile Include="..\Renci.SshNet.Tests\Classes\Sftp\SftpDataMessageTest.cs">
959-
<Link>Classes\Sftp\SftpDataMessageTest.cs</Link>
960-
</Compile>
961955
<Compile Include="..\Renci.SshNet.Tests\Classes\Sftp\SftpDownloadAsyncResultTest.cs">
962956
<Link>Classes\Sftp\SftpDownloadAsyncResultTest.cs</Link>
963957
</Compile>
@@ -1072,15 +1066,21 @@
10721066
<Compile Include="..\Renci.SshNet.Tests\Classes\Sftp\SftpListDirectoryAsyncResultTest.cs">
10731067
<Link>Classes\Sftp\SftpListDirectoryAsyncResultTest.cs</Link>
10741068
</Compile>
1075-
<Compile Include="..\Renci.SshNet.Tests\Classes\Sftp\SftpSessionTest.cs">
1076-
<Link>Classes\Sftp\SftpSessionTest.cs</Link>
1069+
<Compile Include="..\Renci.SshNet.Tests\Classes\Sftp\SftpSessionTest_Connected_RequestRead.cs">
1070+
<Link>Classes\Sftp\SftpSessionTest_Connected_RequestRead.cs</Link>
1071+
</Compile>
1072+
<Compile Include="..\Renci.SshNet.Tests\Classes\Sftp\SftpSessionTest_Connected_RequestStatVfs.cs">
1073+
<Link>Classes\Sftp\SftpSessionTest_Connected_RequestStatVfs.cs</Link>
10771074
</Compile>
10781075
<Compile Include="..\Renci.SshNet.Tests\Classes\Sftp\SftpSynchronizeDirectoriesAsyncResultTest.cs">
10791076
<Link>Classes\Sftp\SftpSynchronizeDirectoriesAsyncResultTest.cs</Link>
10801077
</Compile>
10811078
<Compile Include="..\Renci.SshNet.Tests\Classes\Sftp\SftpUploadAsyncResultTest.cs">
10821079
<Link>Classes\Sftp\SftpUploadAsyncResultTest.cs</Link>
10831080
</Compile>
1081+
<Compile Include="..\Renci.SshNet.Tests\Classes\Sftp\SftpVersionResponseBuilder.cs">
1082+
<Link>Classes\Sftp\SftpVersionResponseBuilder.cs</Link>
1083+
</Compile>
10841084
<Compile Include="..\Renci.SshNet.Tests\Classes\ShellStreamTest.cs">
10851085
<Link>Classes\ShellStreamTest.cs</Link>
10861086
</Compile>
@@ -1258,7 +1258,7 @@
12581258
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
12591259
<ProjectExtensions>
12601260
<VisualStudio>
1261-
<UserProperties ProjectLinkReference="c45379b9-17b1-4e89-bc2e-6d41726413e8" ProjectLinkerExcludeFilter="\\?desktop(\\.*)?$;\\?silverlight(\\.*)?$;\.desktop;\.silverlight;\.xaml;^service references(\\.*)?$;\.clientconfig;^web references(\\.*)?$" />
1261+
<UserProperties ProjectLinkerExcludeFilter="\\?desktop(\\.*)?$;\\?silverlight(\\.*)?$;\.desktop;\.silverlight;\.xaml;^service references(\\.*)?$;\.clientconfig;^web references(\\.*)?$" ProjectLinkReference="c45379b9-17b1-4e89-bc2e-6d41726413e8" />
12621262
</VisualStudio>
12631263
</ProjectExtensions>
12641264
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.

Renci.SshClient/Renci.SshNet.Tests/Renci.SshNet.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<DebugType>pdbonly</DebugType>
3333
<Optimize>true</Optimize>
3434
<OutputPath>bin\Release\</OutputPath>
35-
<DefineConstants>TRACE</DefineConstants>
35+
<DefineConstants>TRACE;TUNING</DefineConstants>
3636
<ErrorReport>prompt</ErrorReport>
3737
<WarningLevel>0</WarningLevel>
3838
</PropertyGroup>
Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,9 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
5-
using System.Net.Sockets;
6-
using System.Threading;
7-
using System.Security.Cryptography;
8-
using System.Diagnostics;
9-
10-
namespace Renci.SshNet.Common
1+
namespace Renci.SshNet.Common
112
{
123
/// <summary>
134
/// Collection of different extension method specific for Windows Phone
145
/// </summary>
15-
public static partial class Extensions
6+
internal static partial class Extensions
167
{
178
}
189
}

Renci.SshClient/Renci.SshNet.WindowsPhone/Renci.SshNet.WindowsPhone.csproj

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<DebugType>full</DebugType>
2929
<Optimize>false</Optimize>
3030
<OutputPath>Bin\Debug</OutputPath>
31-
<DefineConstants>DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants>
31+
<DefineConstants>TRACE;DEBUG;SILVERLIGHT;WINDOWS_PHONE;TUNING</DefineConstants>
3232
<NoStdLib>true</NoStdLib>
3333
<NoConfig>true</NoConfig>
3434
<ErrorReport>prompt</ErrorReport>
@@ -39,7 +39,7 @@
3939
<DebugType>none</DebugType>
4040
<Optimize>true</Optimize>
4141
<OutputPath>Bin\Release</OutputPath>
42-
<DefineConstants>TRACE;SILVERLIGHT;WINDOWS_PHONE</DefineConstants>
42+
<DefineConstants>TRACE;SILVERLIGHT;WINDOWS_PHONE;TUNING</DefineConstants>
4343
<NoStdLib>true</NoStdLib>
4444
<NoConfig>true</NoConfig>
4545
<ErrorReport>prompt</ErrorReport>
@@ -133,6 +133,9 @@
133133
<Compile Include="..\Renci.SshNet\Common\ChannelEventArgs.cs">
134134
<Link>Common\ChannelEventArgs.cs</Link>
135135
</Compile>
136+
<Compile Include="..\Renci.SshNet\Common\ChannelExtendedDataEventArgs.cs">
137+
<Link>Common\ChannelExtendedDataEventArgs.cs</Link>
138+
</Compile>
136139
<Compile Include="..\Renci.SshNet\Common\ChannelOpenConfirmedEventArgs.cs">
137140
<Link>Common\ChannelOpenConfirmedEventArgs.cs</Link>
138141
</Compile>
@@ -199,6 +202,9 @@
199202
<Compile Include="..\Renci.SshNet\Common\SshData.cs">
200203
<Link>Common\SshData.cs</Link>
201204
</Compile>
205+
<Compile Include="..\Renci.SshNet\Common\SshDataStream.cs">
206+
<Link>Common\SshDataStream.cs</Link>
207+
</Compile>
202208
<Compile Include="..\Renci.SshNet\Common\SshException.cs">
203209
<Link>Common\SshException.cs</Link>
204210
</Compile>
@@ -808,9 +814,6 @@
808814
<Compile Include="..\Renci.SshNet\Sftp\Responses\SftpVersionResponse.cs">
809815
<Link>Sftp\Responses\SftpVersionResponse.cs</Link>
810816
</Compile>
811-
<Compile Include="..\Renci.SshNet\Sftp\SftpDataMessage.cs">
812-
<Link>Sftp\SftpDataMessage.cs</Link>
813-
</Compile>
814817
<Compile Include="..\Renci.SshNet\Sftp\SftpDownloadAsyncResult.cs">
815818
<Link>Sftp\SftpDownloadAsyncResult.cs</Link>
816819
</Compile>

0 commit comments

Comments
 (0)