mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-07-12 20:38:09 +02:00
SMBServer 1.4.7
This commit is contained in:
parent
849b99ad83
commit
3c47285484
8 changed files with 21 additions and 11 deletions
|
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
||||||
//
|
//
|
||||||
// You can specify all the values or you can default the Revision and Build Numbers
|
// You can specify all the values or you can default the Revision and Build Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
[assembly: AssemblyVersion("1.4.6.0")]
|
[assembly: AssemblyVersion("1.4.7.0")]
|
||||||
[assembly: AssemblyFileVersion("1.4.6.0")]
|
[assembly: AssemblyFileVersion("1.4.7.0")]
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks>
|
<TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks>
|
||||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||||
<AssemblyName>SMBLibrary.Adapters</AssemblyName>
|
<AssemblyName>SMBLibrary.Adapters</AssemblyName>
|
||||||
<Version>1.4.6</Version>
|
<Version>1.4.7</Version>
|
||||||
<NoWarn>1573;1591</NoWarn>
|
<NoWarn>1573;1591</NoWarn>
|
||||||
<RootNamespace>SMBLibrary.Adapters</RootNamespace>
|
<RootNamespace>SMBLibrary.Adapters</RootNamespace>
|
||||||
<Authors>Tal Aloni</Authors>
|
<Authors>Tal Aloni</Authors>
|
||||||
|
|
|
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
||||||
//
|
//
|
||||||
// You can specify all the values or you can default the Revision and Build Numbers
|
// You can specify all the values or you can default the Revision and Build Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
[assembly: AssemblyVersion("1.4.6.0")]
|
[assembly: AssemblyVersion("1.4.7.0")]
|
||||||
[assembly: AssemblyFileVersion("1.4.6.0")]
|
[assembly: AssemblyFileVersion("1.4.7.0")]
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks>
|
<TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks>
|
||||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||||
<AssemblyName>SMBLibrary.Win32</AssemblyName>
|
<AssemblyName>SMBLibrary.Win32</AssemblyName>
|
||||||
<Version>1.4.6</Version>
|
<Version>1.4.7</Version>
|
||||||
<NoWarn>1573;1591</NoWarn>
|
<NoWarn>1573;1591</NoWarn>
|
||||||
<RootNamespace>SMBLibrary.Win32</RootNamespace>
|
<RootNamespace>SMBLibrary.Win32</RootNamespace>
|
||||||
<Authors>Tal Aloni</Authors>
|
<Authors>Tal Aloni</Authors>
|
||||||
|
|
|
@ -31,6 +31,6 @@ using System.Runtime.InteropServices;
|
||||||
//
|
//
|
||||||
// You can specify all the values or you can default the Revision and Build Numbers
|
// You can specify all the values or you can default the Revision and Build Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
[assembly: AssemblyVersion("1.4.6.2")]
|
[assembly: AssemblyVersion("1.4.7.0")]
|
||||||
[assembly: AssemblyFileVersion("1.4.6.2")]
|
[assembly: AssemblyFileVersion("1.4.7.0")]
|
||||||
[assembly: InternalsVisibleTo("SMBLibrary.Tests")]
|
[assembly: InternalsVisibleTo("SMBLibrary.Tests")]
|
|
@ -459,3 +459,13 @@ Revision History:
|
||||||
NTLM: Bugfix: IndependentNTLMAuthenticationProvider login failed to to modification of message byte arrays.
|
NTLM: Bugfix: IndependentNTLMAuthenticationProvider login failed to to modification of message byte arrays.
|
||||||
|
|
||||||
1.4.6 - SMB2Client: Fixed InvalidCastException on failed login to SMB 3.0 server.
|
1.4.6 - SMB2Client: Fixed InvalidCastException on failed login to SMB 3.0 server.
|
||||||
|
|
||||||
|
1.4.7 - SMBServer: Added private Start overload allowing to specify the listening port.
|
||||||
|
Client: Added private Connect overload allowing to specify the server port.
|
||||||
|
SMB2Client: Correctly handle async responses.
|
||||||
|
SMB2Client: WaitForCommand: Compare MessageID instead of CommandName.
|
||||||
|
Client: SMB2FileStore: Implement Flush.
|
||||||
|
Client: Added support for accessing Cluster Shared Volumes file shares.
|
||||||
|
SMB2Command: Add MessageID property.
|
||||||
|
NTStatus: Added STATUS_WRONG_PASSWORD.
|
||||||
|
NTStatus: Correct STATUS_PASSWORD_MUST_CHANGE value.
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks>
|
<TargetFrameworks>net20;net40;netstandard2.0</TargetFrameworks>
|
||||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||||
<AssemblyName>SMBLibrary</AssemblyName>
|
<AssemblyName>SMBLibrary</AssemblyName>
|
||||||
<Version>1.4.6.2</Version>
|
<Version>1.4.7</Version>
|
||||||
<NoWarn>1573;1591</NoWarn>
|
<NoWarn>1573;1591</NoWarn>
|
||||||
<RootNamespace>SMBLibrary</RootNamespace>
|
<RootNamespace>SMBLibrary</RootNamespace>
|
||||||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
||||||
|
|
|
@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
|
||||||
// Build Number
|
// Build Number
|
||||||
// Revision
|
// Revision
|
||||||
//
|
//
|
||||||
[assembly: AssemblyVersion("1.4.6.0")]
|
[assembly: AssemblyVersion("1.4.7.0")]
|
||||||
[assembly: AssemblyFileVersion("1.4.6.0")]
|
[assembly: AssemblyFileVersion("1.4.7.0")]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue