From 2507544595b3b10145f03243b86edec15b5543b9 Mon Sep 17 00:00:00 2001 From: Boaz Brickner Date: Sat, 21 May 2016 13:23:18 +0300 Subject: [PATCH 1/6] Fix ICMP test. Code Coverage 97.44% 1 warning left. --- PcapDotNet/src/PcapDotNet.Packets.Test/IcmpTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PcapDotNet/src/PcapDotNet.Packets.Test/IcmpTests.cs b/PcapDotNet/src/PcapDotNet.Packets.Test/IcmpTests.cs index 7ff78ed2..0b13d4c5 100644 --- a/PcapDotNet/src/PcapDotNet.Packets.Test/IcmpTests.cs +++ b/PcapDotNet/src/PcapDotNet.Packets.Test/IcmpTests.cs @@ -182,7 +182,7 @@ public void RandomIcmpTest() case IcmpMessageType.AddressMaskReply: break; case IcmpMessageType.TraceRoute: - Assert.AreEqual(((IcmpTraceRouteLayer)icmpLayer).OutboundHopCount == 0xFFFF, ((IcmpTraceRouteDatagram)actualIcmp).IsOutbound); + Assert.AreEqual(((IcmpTraceRouteLayer)icmpLayer).ReturnHopCount == 0xFFFF, ((IcmpTraceRouteDatagram)actualIcmp).IsOutbound); break; case IcmpMessageType.DomainNameRequest: case IcmpMessageType.SecurityFailures: From 58a61dc5f64b8eadce5bf13967be5eb2432865c7 Mon Sep 17 00:00:00 2001 From: Boaz Brickner Date: Sat, 21 May 2016 13:46:44 +0300 Subject: [PATCH 2/6] Fix IcmpDatagramFactory following DataSegment update. Code Coverage 97.42% --- PcapDotNet/src/PcapDotNet.Packets/Icmp/IcmpDatagramFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PcapDotNet/src/PcapDotNet.Packets/Icmp/IcmpDatagramFactory.cs b/PcapDotNet/src/PcapDotNet.Packets/Icmp/IcmpDatagramFactory.cs index 9850393c..7aa4a598 100644 --- a/PcapDotNet/src/PcapDotNet.Packets/Icmp/IcmpDatagramFactory.cs +++ b/PcapDotNet/src/PcapDotNet.Packets/Icmp/IcmpDatagramFactory.cs @@ -28,7 +28,7 @@ where typeof(IcmpDatagram).IsAssignableFrom(type) && select new { GetRegistrationAttribute(type).MessageType, - Datagram = (IcmpDatagram)constructor.Invoke(new object[] {null, 0, 0}) + Datagram = (IcmpDatagram)constructor.Invoke(new object[] {new byte[0], 0, 0}) }; return prototypes.ToDictionary(prototype => prototype.MessageType, prototype => prototype.Datagram); From 5a83c74323b6167ce079e1cc1f8d971815c78941 Mon Sep 17 00:00:00 2001 From: Boaz Brickner Date: Sat, 21 May 2016 14:11:29 +0300 Subject: [PATCH 3/6] Version 1.0.4 --- PcapDotNet/doc/PcapDotNet.shfbproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PcapDotNet/doc/PcapDotNet.shfbproj b/PcapDotNet/doc/PcapDotNet.shfbproj index cfa00877..93902f1e 100644 --- a/PcapDotNet/doc/PcapDotNet.shfbproj +++ b/PcapDotNet/doc/PcapDotNet.shfbproj @@ -33,7 +33,7 @@ True Pcap.Net Documented Class Library None - 1.0.3.0 + 1.0.4.0 False False False From 80d3a80a9a4fd7385b63036d7724d86ea3a441d1 Mon Sep 17 00:00:00 2001 From: Boaz Brickner Date: Sat, 21 May 2016 14:37:40 +0300 Subject: [PATCH 4/6] Developer's Pack to use .NET 4.5 --- .../src/CaptureInvalidPackets/CaptureInvalidPackets.csproj | 4 +++- .../src/CaptureInvalidPackets/app.config | 2 +- .../CapturingThePacketsWithoutTheCallback.csproj | 4 +++- .../src/CapturingThePacketsWithoutTheCallback/app.config | 2 +- .../GatheringStatisticsOnTheNetworkTraffic.csproj | 4 +++- .../src/GatheringStatisticsOnTheNetworkTraffic/app.config | 2 +- .../src/InterpretingThePackets/InterpretingThePackets.csproj | 4 +++- .../src/InterpretingThePackets/app.config | 2 +- .../ObtainingAdvancedInformationAboutInstalledDevices.csproj | 4 +++- .../app.config | 2 +- .../src/ObtainingTheDeviceList/ObtainingTheDeviceList.csproj | 4 +++- .../src/ObtainingTheDeviceList/app.config | 2 +- .../OpeningAnAdapterAndCapturingThePackets.csproj | 4 +++- .../src/OpeningAnAdapterAndCapturingThePackets/app.config | 2 +- .../ReadingPacketsFromADumpFile.csproj | 4 +++- .../src/ReadingPacketsFromADumpFile/app.config | 2 +- .../SavingPacketsToADumpFile/SavingPacketsToADumpFile.csproj | 4 +++- .../src/SavingPacketsToADumpFile/app.config | 2 +- .../SendingASinglePacketWithSendPacket.csproj | 4 +++- .../src/SendingASinglePacketWithSendPacket/app.config | 2 +- .../SendingPacketsUsingSendBuffer.csproj | 4 +++- .../src/SendingPacketsUsingSendBuffer/app.config | 2 +- PcapDotNet.DevelopersPack/src/UsingLinq/UsingLinq.csproj | 4 +++- PcapDotNet.DevelopersPack/src/UsingLinq/app.config | 2 +- 24 files changed, 48 insertions(+), 24 deletions(-) diff --git a/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/CaptureInvalidPackets.csproj b/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/CaptureInvalidPackets.csproj index 627497d5..e1672a2a 100644 --- a/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/CaptureInvalidPackets.csproj +++ b/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/CaptureInvalidPackets.csproj @@ -10,7 +10,7 @@ Properties CaptureInvalidPackets CaptureInvalidPackets - v4.0 + v4.5 512 SAK SAK @@ -46,6 +46,7 @@ prompt 4 AllRules.ruleset + false pdbonly @@ -55,6 +56,7 @@ prompt 4 AllRules.ruleset + false diff --git a/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/app.config b/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/app.config index cb2586be..b7a7ef16 100644 --- a/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/app.config +++ b/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/app.config @@ -1,3 +1,3 @@ - + diff --git a/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/CapturingThePacketsWithoutTheCallback.csproj b/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/CapturingThePacketsWithoutTheCallback.csproj index 57a8bacb..4625e021 100644 --- a/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/CapturingThePacketsWithoutTheCallback.csproj +++ b/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/CapturingThePacketsWithoutTheCallback.csproj @@ -10,7 +10,7 @@ Properties CapturingThePacketsWithoutTheCallback CapturingThePacketsWithoutTheCallback - v4.0 + v4.5 512 SAK SAK @@ -46,6 +46,7 @@ prompt 4 AllRules.ruleset + false pdbonly @@ -55,6 +56,7 @@ prompt 4 AllRules.ruleset + false diff --git a/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/app.config b/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/app.config index cb2586be..b7a7ef16 100644 --- a/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/app.config +++ b/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/app.config @@ -1,3 +1,3 @@ - + diff --git a/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/GatheringStatisticsOnTheNetworkTraffic.csproj b/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/GatheringStatisticsOnTheNetworkTraffic.csproj index b342cf02..a1f7a7d4 100644 --- a/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/GatheringStatisticsOnTheNetworkTraffic.csproj +++ b/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/GatheringStatisticsOnTheNetworkTraffic.csproj @@ -10,7 +10,7 @@ Properties GatheringStatisticsOnTheNetworkTraffic GatheringStatisticsOnTheNetworkTraffic - v4.0 + v4.5 512 SAK SAK @@ -46,6 +46,7 @@ prompt 4 AllRules.ruleset + false pdbonly @@ -55,6 +56,7 @@ prompt 4 AllRules.ruleset + false diff --git a/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/app.config b/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/app.config index cb2586be..b7a7ef16 100644 --- a/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/app.config +++ b/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/app.config @@ -1,3 +1,3 @@ - + diff --git a/PcapDotNet.DevelopersPack/src/InterpretingThePackets/InterpretingThePackets.csproj b/PcapDotNet.DevelopersPack/src/InterpretingThePackets/InterpretingThePackets.csproj index 783bc070..9e27ae4d 100644 --- a/PcapDotNet.DevelopersPack/src/InterpretingThePackets/InterpretingThePackets.csproj +++ b/PcapDotNet.DevelopersPack/src/InterpretingThePackets/InterpretingThePackets.csproj @@ -10,7 +10,7 @@ Properties InterpretingThePackets InterpretingThePackets - v4.0 + v4.5 512 SAK SAK @@ -46,6 +46,7 @@ prompt 4 AllRules.ruleset + false pdbonly @@ -55,6 +56,7 @@ prompt 4 AllRules.ruleset + false diff --git a/PcapDotNet.DevelopersPack/src/InterpretingThePackets/app.config b/PcapDotNet.DevelopersPack/src/InterpretingThePackets/app.config index cb2586be..b7a7ef16 100644 --- a/PcapDotNet.DevelopersPack/src/InterpretingThePackets/app.config +++ b/PcapDotNet.DevelopersPack/src/InterpretingThePackets/app.config @@ -1,3 +1,3 @@ - + diff --git a/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/ObtainingAdvancedInformationAboutInstalledDevices.csproj b/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/ObtainingAdvancedInformationAboutInstalledDevices.csproj index f44fc7bb..a7fa1883 100644 --- a/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/ObtainingAdvancedInformationAboutInstalledDevices.csproj +++ b/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/ObtainingAdvancedInformationAboutInstalledDevices.csproj @@ -10,7 +10,7 @@ Properties ObtainingAdvancedInformationAboutInstalledDevices ObtainingAdvancedInformationAboutInstalledDevices - v4.0 + v4.5 512 SAK SAK @@ -46,6 +46,7 @@ prompt 4 AllRules.ruleset + false pdbonly @@ -55,6 +56,7 @@ prompt 4 AllRules.ruleset + false diff --git a/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/app.config b/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/app.config index cb2586be..b7a7ef16 100644 --- a/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/app.config +++ b/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/app.config @@ -1,3 +1,3 @@ - + diff --git a/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/ObtainingTheDeviceList.csproj b/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/ObtainingTheDeviceList.csproj index feac56df..1eb601c1 100644 --- a/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/ObtainingTheDeviceList.csproj +++ b/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/ObtainingTheDeviceList.csproj @@ -10,7 +10,7 @@ Properties ObtainingTheDeviceList ObtainingTheDeviceList - v4.0 + v4.5 512 SAK SAK @@ -46,6 +46,7 @@ prompt 4 AllRules.ruleset + false pdbonly @@ -55,6 +56,7 @@ prompt 4 AllRules.ruleset + false diff --git a/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/app.config b/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/app.config index cb2586be..b7a7ef16 100644 --- a/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/app.config +++ b/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/app.config @@ -1,3 +1,3 @@ - + diff --git a/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/OpeningAnAdapterAndCapturingThePackets.csproj b/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/OpeningAnAdapterAndCapturingThePackets.csproj index 6b3e91e1..3845f428 100644 --- a/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/OpeningAnAdapterAndCapturingThePackets.csproj +++ b/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/OpeningAnAdapterAndCapturingThePackets.csproj @@ -10,7 +10,7 @@ Properties OpeningAnAdapterAndCapturingThePackets OpeningAnAdapterAndCapturingThePackets - v4.0 + v4.5 512 SAK SAK @@ -46,6 +46,7 @@ prompt 4 AllRules.ruleset + false pdbonly @@ -55,6 +56,7 @@ prompt 4 AllRules.ruleset + false diff --git a/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/app.config b/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/app.config index cb2586be..b7a7ef16 100644 --- a/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/app.config +++ b/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/app.config @@ -1,3 +1,3 @@ - + diff --git a/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/ReadingPacketsFromADumpFile.csproj b/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/ReadingPacketsFromADumpFile.csproj index cbb986a4..53a6c77d 100644 --- a/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/ReadingPacketsFromADumpFile.csproj +++ b/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/ReadingPacketsFromADumpFile.csproj @@ -10,7 +10,7 @@ Properties ReadingPacketsFromADumpFile ReadingPacketsFromADumpFile - v4.0 + v4.5 512 SAK SAK @@ -46,6 +46,7 @@ prompt 4 AllRules.ruleset + false pdbonly @@ -55,6 +56,7 @@ prompt 4 AllRules.ruleset + false diff --git a/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/app.config b/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/app.config index cb2586be..b7a7ef16 100644 --- a/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/app.config +++ b/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/app.config @@ -1,3 +1,3 @@ - + diff --git a/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/SavingPacketsToADumpFile.csproj b/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/SavingPacketsToADumpFile.csproj index d5f27f13..f135e4a7 100644 --- a/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/SavingPacketsToADumpFile.csproj +++ b/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/SavingPacketsToADumpFile.csproj @@ -10,7 +10,7 @@ Properties SavingPacketsToADumpFile SavingPacketsToADumpFile - v4.0 + v4.5 512 SAK SAK @@ -46,6 +46,7 @@ prompt 4 AllRules.ruleset + false pdbonly @@ -55,6 +56,7 @@ prompt 4 AllRules.ruleset + false diff --git a/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/app.config b/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/app.config index cb2586be..b7a7ef16 100644 --- a/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/app.config +++ b/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/app.config @@ -1,3 +1,3 @@ - + diff --git a/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/SendingASinglePacketWithSendPacket.csproj b/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/SendingASinglePacketWithSendPacket.csproj index 9891778d..8af753f9 100644 --- a/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/SendingASinglePacketWithSendPacket.csproj +++ b/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/SendingASinglePacketWithSendPacket.csproj @@ -10,7 +10,7 @@ Properties SendingASinglePacketWithSendPacket SendingASinglePacketWithSendPacket - v4.0 + v4.5 512 SAK SAK @@ -46,6 +46,7 @@ prompt 4 AllRules.ruleset + false pdbonly @@ -55,6 +56,7 @@ prompt 4 AllRules.ruleset + false diff --git a/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/app.config b/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/app.config index cb2586be..b7a7ef16 100644 --- a/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/app.config +++ b/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/app.config @@ -1,3 +1,3 @@ - + diff --git a/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/SendingPacketsUsingSendBuffer.csproj b/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/SendingPacketsUsingSendBuffer.csproj index 9f952d7f..ee64d0bc 100644 --- a/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/SendingPacketsUsingSendBuffer.csproj +++ b/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/SendingPacketsUsingSendBuffer.csproj @@ -10,7 +10,7 @@ Properties SendingPacketsUsingSendBuffer SendingPacketsUsingSendBuffer - v4.0 + v4.5 512 SAK SAK @@ -46,6 +46,7 @@ prompt 4 AllRules.ruleset + false pdbonly @@ -55,6 +56,7 @@ prompt 4 AllRules.ruleset + false diff --git a/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/app.config b/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/app.config index cb2586be..b7a7ef16 100644 --- a/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/app.config +++ b/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/app.config @@ -1,3 +1,3 @@ - + diff --git a/PcapDotNet.DevelopersPack/src/UsingLinq/UsingLinq.csproj b/PcapDotNet.DevelopersPack/src/UsingLinq/UsingLinq.csproj index 0b92ea6d..319d0552 100644 --- a/PcapDotNet.DevelopersPack/src/UsingLinq/UsingLinq.csproj +++ b/PcapDotNet.DevelopersPack/src/UsingLinq/UsingLinq.csproj @@ -10,7 +10,7 @@ Properties UsingLinq UsingLinq - v4.0 + v4.5 512 SAK SAK @@ -46,6 +46,7 @@ prompt 4 AllRules.ruleset + false pdbonly @@ -55,6 +56,7 @@ prompt 4 AllRules.ruleset + false diff --git a/PcapDotNet.DevelopersPack/src/UsingLinq/app.config b/PcapDotNet.DevelopersPack/src/UsingLinq/app.config index cb2586be..b7a7ef16 100644 --- a/PcapDotNet.DevelopersPack/src/UsingLinq/app.config +++ b/PcapDotNet.DevelopersPack/src/UsingLinq/app.config @@ -1,3 +1,3 @@ - + From 3cfb037abc069f82c880948effef64c417212167 Mon Sep 17 00:00:00 2001 From: Boaz Brickner Date: Sat, 21 May 2016 14:40:35 +0300 Subject: [PATCH 5/6] Version 1.0.4 --- .../src/PcapDotNet.Base.Test/Properties/AssemblyInfo.cs | 4 ++-- PcapDotNet/src/PcapDotNet.Base/Properties/AssemblyInfo.cs | 4 ++-- .../src/PcapDotNet.Core.Extensions/Properties/AssemblyInfo.cs | 4 ++-- .../src/PcapDotNet.Core.Test/Properties/AssemblyInfo.cs | 4 ++-- PcapDotNet/src/PcapDotNet.Core/Properties/AssemblyInfo.cpp | 4 ++-- .../src/PcapDotNet.Packets.Test/Properties/AssemblyInfo.cs | 4 ++-- .../PcapDotNet.Packets.TestUtils/Properties/AssemblyInfo.cs | 4 ++-- PcapDotNet/src/PcapDotNet.Packets/Properties/AssemblyInfo.cs | 4 ++-- .../src/PcapDotNet.TestUtils/Properties/AssemblyInfo.cs | 4 ++-- 9 files changed, 18 insertions(+), 18 deletions(-) diff --git a/PcapDotNet/src/PcapDotNet.Base.Test/Properties/AssemblyInfo.cs b/PcapDotNet/src/PcapDotNet.Base.Test/Properties/AssemblyInfo.cs index 2288ec8c..df3050a2 100644 --- a/PcapDotNet/src/PcapDotNet.Base.Test/Properties/AssemblyInfo.cs +++ b/PcapDotNet/src/PcapDotNet.Base.Test/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] diff --git a/PcapDotNet/src/PcapDotNet.Base/Properties/AssemblyInfo.cs b/PcapDotNet/src/PcapDotNet.Base/Properties/AssemblyInfo.cs index 46663f3b..c8bf1612 100644 --- a/PcapDotNet/src/PcapDotNet.Base/Properties/AssemblyInfo.cs +++ b/PcapDotNet/src/PcapDotNet.Base/Properties/AssemblyInfo.cs @@ -31,7 +31,7 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] [assembly: CLSCompliant(false)] \ No newline at end of file diff --git a/PcapDotNet/src/PcapDotNet.Core.Extensions/Properties/AssemblyInfo.cs b/PcapDotNet/src/PcapDotNet.Core.Extensions/Properties/AssemblyInfo.cs index 58fd4562..d31f72d9 100644 --- a/PcapDotNet/src/PcapDotNet.Core.Extensions/Properties/AssemblyInfo.cs +++ b/PcapDotNet/src/PcapDotNet.Core.Extensions/Properties/AssemblyInfo.cs @@ -31,7 +31,7 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] [assembly: CLSCompliant(false)] diff --git a/PcapDotNet/src/PcapDotNet.Core.Test/Properties/AssemblyInfo.cs b/PcapDotNet/src/PcapDotNet.Core.Test/Properties/AssemblyInfo.cs index 83d87283..f436209f 100644 --- a/PcapDotNet/src/PcapDotNet.Core.Test/Properties/AssemblyInfo.cs +++ b/PcapDotNet/src/PcapDotNet.Core.Test/Properties/AssemblyInfo.cs @@ -30,5 +30,5 @@ // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] diff --git a/PcapDotNet/src/PcapDotNet.Core/Properties/AssemblyInfo.cpp b/PcapDotNet/src/PcapDotNet.Core/Properties/AssemblyInfo.cpp index 6f551ea3..7b989dcd 100644 --- a/PcapDotNet/src/PcapDotNet.Core/Properties/AssemblyInfo.cpp +++ b/PcapDotNet/src/PcapDotNet.Core/Properties/AssemblyInfo.cpp @@ -28,8 +28,8 @@ using namespace System::Runtime::InteropServices; // You can specify all the value or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly:AssemblyVersionAttribute("1.0.3.*")]; -[assembly:AssemblyFileVersionAttribute("1.0.3.0")] +[assembly:AssemblyVersionAttribute("1.0.4.*")]; +[assembly:AssemblyFileVersionAttribute("1.0.4.0")] [assembly:ComVisible(false)]; diff --git a/PcapDotNet/src/PcapDotNet.Packets.Test/Properties/AssemblyInfo.cs b/PcapDotNet/src/PcapDotNet.Packets.Test/Properties/AssemblyInfo.cs index 93e50421..1214c9af 100644 --- a/PcapDotNet/src/PcapDotNet.Packets.Test/Properties/AssemblyInfo.cs +++ b/PcapDotNet/src/PcapDotNet.Packets.Test/Properties/AssemblyInfo.cs @@ -30,5 +30,5 @@ // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] diff --git a/PcapDotNet/src/PcapDotNet.Packets.TestUtils/Properties/AssemblyInfo.cs b/PcapDotNet/src/PcapDotNet.Packets.TestUtils/Properties/AssemblyInfo.cs index e78e621c..aaf22778 100644 --- a/PcapDotNet/src/PcapDotNet.Packets.TestUtils/Properties/AssemblyInfo.cs +++ b/PcapDotNet/src/PcapDotNet.Packets.TestUtils/Properties/AssemblyInfo.cs @@ -30,5 +30,5 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] diff --git a/PcapDotNet/src/PcapDotNet.Packets/Properties/AssemblyInfo.cs b/PcapDotNet/src/PcapDotNet.Packets/Properties/AssemblyInfo.cs index ea37d848..a8ebe115 100644 --- a/PcapDotNet/src/PcapDotNet.Packets/Properties/AssemblyInfo.cs +++ b/PcapDotNet/src/PcapDotNet.Packets/Properties/AssemblyInfo.cs @@ -31,7 +31,7 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] [assembly:CLSCompliant(false)] diff --git a/PcapDotNet/src/PcapDotNet.TestUtils/Properties/AssemblyInfo.cs b/PcapDotNet/src/PcapDotNet.TestUtils/Properties/AssemblyInfo.cs index 8e796713..306b8e23 100644 --- a/PcapDotNet/src/PcapDotNet.TestUtils/Properties/AssemblyInfo.cs +++ b/PcapDotNet/src/PcapDotNet.TestUtils/Properties/AssemblyInfo.cs @@ -30,5 +30,5 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] From ae63f938dd50570e7ef06fcda9dea70906c9c704 Mon Sep 17 00:00:00 2001 From: Boaz Brickner Date: Sat, 21 May 2016 14:42:18 +0300 Subject: [PATCH 6/6] Version 1.0.4 --- .../src/CaptureInvalidPackets/Properties/AssemblyInfo.cs | 4 ++-- .../Properties/AssemblyInfo.cs | 4 ++-- .../Properties/AssemblyInfo.cs | 4 ++-- .../src/InterpretingThePackets/Properties/AssemblyInfo.cs | 4 ++-- .../Properties/AssemblyInfo.cs | 4 ++-- .../src/ObtainingTheDeviceList/Properties/AssemblyInfo.cs | 4 ++-- .../Properties/AssemblyInfo.cs | 4 ++-- .../ReadingPacketsFromADumpFile/Properties/AssemblyInfo.cs | 4 ++-- .../src/SavingPacketsToADumpFile/Properties/AssemblyInfo.cs | 4 ++-- .../Properties/AssemblyInfo.cs | 4 ++-- .../SendingPacketsUsingSendBuffer/Properties/AssemblyInfo.cs | 4 ++-- .../src/UsingLinq/Properties/AssemblyInfo.cs | 4 ++-- 12 files changed, 24 insertions(+), 24 deletions(-) diff --git a/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/Properties/AssemblyInfo.cs index b82ad49d..dd8101a7 100644 --- a/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/Properties/AssemblyInfo.cs +++ b/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] diff --git a/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/Properties/AssemblyInfo.cs index 0424d9e6..eae8f689 100644 --- a/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/Properties/AssemblyInfo.cs +++ b/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] diff --git a/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/Properties/AssemblyInfo.cs index 0b8ddaef..ad9052a9 100644 --- a/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/Properties/AssemblyInfo.cs +++ b/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] diff --git a/PcapDotNet.DevelopersPack/src/InterpretingThePackets/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/InterpretingThePackets/Properties/AssemblyInfo.cs index a0ad63a7..3dbe6d70 100644 --- a/PcapDotNet.DevelopersPack/src/InterpretingThePackets/Properties/AssemblyInfo.cs +++ b/PcapDotNet.DevelopersPack/src/InterpretingThePackets/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] diff --git a/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/Properties/AssemblyInfo.cs index 5faad1e4..5bc7b160 100644 --- a/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/Properties/AssemblyInfo.cs +++ b/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] diff --git a/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/Properties/AssemblyInfo.cs index ba582afe..d620fc38 100644 --- a/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/Properties/AssemblyInfo.cs +++ b/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] diff --git a/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/Properties/AssemblyInfo.cs index fdfe4135..f1fc87cb 100644 --- a/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/Properties/AssemblyInfo.cs +++ b/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] diff --git a/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/Properties/AssemblyInfo.cs index d296fa28..8b856720 100644 --- a/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/Properties/AssemblyInfo.cs +++ b/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] diff --git a/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/Properties/AssemblyInfo.cs index 544a8303..b7d2295a 100644 --- a/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/Properties/AssemblyInfo.cs +++ b/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] diff --git a/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/Properties/AssemblyInfo.cs index 5e26fb24..673ed2fe 100644 --- a/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/Properties/AssemblyInfo.cs +++ b/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] diff --git a/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/Properties/AssemblyInfo.cs index e9f28f5d..ca295588 100644 --- a/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/Properties/AssemblyInfo.cs +++ b/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")] diff --git a/PcapDotNet.DevelopersPack/src/UsingLinq/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/UsingLinq/Properties/AssemblyInfo.cs index 8e9431ae..30c729de 100644 --- a/PcapDotNet.DevelopersPack/src/UsingLinq/Properties/AssemblyInfo.cs +++ b/PcapDotNet.DevelopersPack/src/UsingLinq/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("1.0.3.*")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("1.0.4.*")] +[assembly: AssemblyFileVersion("1.0.4.0")]