Browse Source

ISCSI Console v1.4.9

Tal Aloni 5 years ago
parent
commit
bf71519f92

+ 2 - 2
ISCSI/Properties/AssemblyInfo.cs

@@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
 //
 // You can specify all the values or you can default the Revision and Build Numbers 
 // by using the '*' as shown below:
-[assembly: AssemblyVersion("1.4.8.0")]
-[assembly: AssemblyFileVersion("1.4.8.0")]
+[assembly: AssemblyVersion("1.4.9.0")]
+[assembly: AssemblyFileVersion("1.4.9.0")]

+ 2 - 0
ISCSI/RevisionHistory.txt

@@ -139,3 +139,5 @@ Revision History:
 
 1.4.8 - Bugfix: Incorrect processing of SCSIDataOutPDU in some cases.
         Minor logging and documentation improvements.
+
+1.4.9 - Corrected handling of unsolicited Data Out PDU when InitialR2T=No.

+ 6 - 0
ISCSIConsole/ILMerge/ILMerge.bat

@@ -0,0 +1,6 @@
+set binaryPath=%CD%\..\bin\Release
+set outputPath=%CD%\..\bin\ILMerge
+IF NOT EXIST "%outputPath%" MKDIR "%outputPath%"
+IF ["%programfiles(x86)%"]==[""] SET ilmergePath="%programfiles%\Microsoft\ILMerge"
+IF NOT ["%programfiles(x86)%"]==[""] SET ilmergePath="%programfiles(x86)%\Microsoft\ILMerge"
+%ilmergePath%\ilmerge /ndebug /target:winexe /out:"%outputPath%\ISCSIConsole.exe" "%binaryPath%\ISCSIConsole.exe" "%binaryPath%\Utilities.dll" "%binaryPath%\DiskAccessLibrary.dll" "%binaryPath%\ISCSI.dll"

+ 2 - 2
ISCSIConsole/Properties/AssemblyInfo.cs

@@ -29,5 +29,5 @@ using System.Runtime.InteropServices;
 //      Build Number
 //      Revision
 //
-[assembly: AssemblyVersion("1.4.8.0")]
-[assembly: AssemblyFileVersion("1.4.8.0")]
+[assembly: AssemblyVersion("1.4.9.0")]
+[assembly: AssemblyFileVersion("1.4.9.0")]

+ 2 - 0
ISCSIConsole/RevisionHistory.txt

@@ -102,3 +102,5 @@ Revision History:
 1.4.7 - Updates to the ISCSI library.
 
 1.4.8 - Updates to the ISCSI library.
+
+1.4.9 - Updates to the ISCSI library.