diff --git a/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/CaptureInvalidPackets.csproj b/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/CaptureInvalidPackets.csproj
index 438646e8..627497d5 100644
--- a/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/CaptureInvalidPackets.csproj
+++ b/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/CaptureInvalidPackets.csproj
@@ -57,10 +57,6 @@
AllRules.ruleset
-
- False
- ..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
-
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
diff --git a/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/Program.cs b/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/Program.cs
index 58388b0d..0196ab4a 100644
--- a/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/Program.cs
+++ b/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/Program.cs
@@ -15,9 +15,6 @@ class Program
{
static void Main(string[] args)
{
- // Send anonymous statistics about the usage of Pcap.Net
- PcapDotNet.Analysis.PcapDotNetAnalysis.OptIn = true;
-
// Retrieve the device list from the local machine
IList allDevices = LivePacketDevice.AllLocalMachine;
diff --git a/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/CaptureInvalidPackets/Properties/AssemblyInfo.cs
index 8d7a48ed..8998b258 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("0.7.0.*")]
-[assembly: AssemblyFileVersion("0.7.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
diff --git a/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/CapturingThePacketsWithoutTheCallback.csproj b/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/CapturingThePacketsWithoutTheCallback.csproj
index 587a1368..57a8bacb 100644
--- a/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/CapturingThePacketsWithoutTheCallback.csproj
+++ b/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/CapturingThePacketsWithoutTheCallback.csproj
@@ -57,10 +57,6 @@
AllRules.ruleset
-
- False
- ..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
-
False
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
diff --git a/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/Program.cs b/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/Program.cs
index bcf892ed..df3a9b37 100644
--- a/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/Program.cs
+++ b/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/Program.cs
@@ -9,9 +9,6 @@ class Program
{
static void Main(string[] args)
{
- // Send anonymous statistics about the usage of Pcap.Net
- PcapDotNet.Analysis.PcapDotNetAnalysis.OptIn = true;
-
// Retrieve the device list from the local machine
IList allDevices = LivePacketDevice.AllLocalMachine;
diff --git a/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/CapturingThePacketsWithoutTheCallback/Properties/AssemblyInfo.cs
index 4d0b3b94..09fae74c 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("0.7.0.*")]
-[assembly: AssemblyFileVersion("0.7.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
diff --git a/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/GatheringStatisticsOnTheNetworkTraffic.csproj b/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/GatheringStatisticsOnTheNetworkTraffic.csproj
index ad628e15..b342cf02 100644
--- a/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/GatheringStatisticsOnTheNetworkTraffic.csproj
+++ b/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/GatheringStatisticsOnTheNetworkTraffic.csproj
@@ -57,10 +57,6 @@
AllRules.ruleset
-
- False
- ..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
-
False
..\..\3rdParty\PcapDotNet\PcapDotNet.Core.dll
diff --git a/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/Program.cs b/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/Program.cs
index 80dafac7..7492a0e9 100644
--- a/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/Program.cs
+++ b/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/Program.cs
@@ -8,9 +8,6 @@ class Program
{
static void Main(string[] args)
{
- // Send anonymous statistics about the usage of Pcap.Net
- PcapDotNet.Analysis.PcapDotNetAnalysis.OptIn = true;
-
// Retrieve the device list from the local machine
IList allDevices = LivePacketDevice.AllLocalMachine;
diff --git a/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/GatheringStatisticsOnTheNetworkTraffic/Properties/AssemblyInfo.cs
index e46a4d9b..5b3f324e 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("0.7.0.*")]
-[assembly: AssemblyFileVersion("0.7.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
diff --git a/PcapDotNet.DevelopersPack/src/InterpretingThePackets/InterpretingThePackets.csproj b/PcapDotNet.DevelopersPack/src/InterpretingThePackets/InterpretingThePackets.csproj
index fe58d577..783bc070 100644
--- a/PcapDotNet.DevelopersPack/src/InterpretingThePackets/InterpretingThePackets.csproj
+++ b/PcapDotNet.DevelopersPack/src/InterpretingThePackets/InterpretingThePackets.csproj
@@ -57,10 +57,6 @@
AllRules.ruleset
-
- False
- ..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
-
False
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
diff --git a/PcapDotNet.DevelopersPack/src/InterpretingThePackets/Program.cs b/PcapDotNet.DevelopersPack/src/InterpretingThePackets/Program.cs
index 417ebe44..17f79c32 100644
--- a/PcapDotNet.DevelopersPack/src/InterpretingThePackets/Program.cs
+++ b/PcapDotNet.DevelopersPack/src/InterpretingThePackets/Program.cs
@@ -11,9 +11,6 @@ class Program
{
static void Main(string[] args)
{
- // Send anonymous statistics about the usage of Pcap.Net
- PcapDotNet.Analysis.PcapDotNetAnalysis.OptIn = true;
-
// Retrieve the device list from the local machine
IList allDevices = LivePacketDevice.AllLocalMachine;
diff --git a/PcapDotNet.DevelopersPack/src/InterpretingThePackets/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/InterpretingThePackets/Properties/AssemblyInfo.cs
index 0065e27f..3db9d029 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("0.7.0.*")]
-[assembly: AssemblyFileVersion("0.7.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
diff --git a/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/ObtainingAdvancedInformationAboutInstalledDevices.csproj b/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/ObtainingAdvancedInformationAboutInstalledDevices.csproj
index dd8b1764..f44fc7bb 100644
--- a/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/ObtainingAdvancedInformationAboutInstalledDevices.csproj
+++ b/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/ObtainingAdvancedInformationAboutInstalledDevices.csproj
@@ -57,10 +57,6 @@
AllRules.ruleset
-
- False
- ..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
-
False
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
diff --git a/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/Program.cs b/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/Program.cs
index 3b51224d..9e957df5 100644
--- a/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/Program.cs
+++ b/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/Program.cs
@@ -9,9 +9,6 @@ class Program
{
static void Main(string[] args)
{
- // Send anonymous statistics about the usage of Pcap.Net
- PcapDotNet.Analysis.PcapDotNetAnalysis.OptIn = true;
-
// Retrieve the interfaces list
IList allDevices = LivePacketDevice.AllLocalMachine;
diff --git a/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/ObtainingAdvancedInformationAboutInstalledDevices/Properties/AssemblyInfo.cs
index 23b8b851..db121f66 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("0.7.0.*")]
-[assembly: AssemblyFileVersion("0.7.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
diff --git a/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/ObtainingTheDeviceList.csproj b/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/ObtainingTheDeviceList.csproj
index 7a1a0178..feac56df 100644
--- a/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/ObtainingTheDeviceList.csproj
+++ b/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/ObtainingTheDeviceList.csproj
@@ -57,10 +57,6 @@
AllRules.ruleset
-
- False
- ..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
-
False
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
diff --git a/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/Program.cs b/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/Program.cs
index 9b36bd81..259dc14b 100644
--- a/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/Program.cs
+++ b/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/Program.cs
@@ -8,9 +8,6 @@ class Program
{
static void Main(string[] args)
{
- // Send anonymous statistics about the usage of Pcap.Net
- PcapDotNet.Analysis.PcapDotNetAnalysis.OptIn = true;
-
// Retrieve the device list from the local machine
IList allDevices = LivePacketDevice.AllLocalMachine;
diff --git a/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/ObtainingTheDeviceList/Properties/AssemblyInfo.cs
index 9e11b254..fc411260 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("0.7.0.*")]
-[assembly: AssemblyFileVersion("0.7.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
diff --git a/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/OpeningAnAdapterAndCapturingThePackets.csproj b/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/OpeningAnAdapterAndCapturingThePackets.csproj
index 000dc96a..6b3e91e1 100644
--- a/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/OpeningAnAdapterAndCapturingThePackets.csproj
+++ b/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/OpeningAnAdapterAndCapturingThePackets.csproj
@@ -57,10 +57,6 @@
AllRules.ruleset
-
- False
- ..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
-
False
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
diff --git a/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/Program.cs b/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/Program.cs
index 8ab43f39..361433fd 100644
--- a/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/Program.cs
+++ b/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/Program.cs
@@ -9,9 +9,6 @@ class Program
{
static void Main(string[] args)
{
- // Send anonymous statistics about the usage of Pcap.Net
- PcapDotNet.Analysis.PcapDotNetAnalysis.OptIn = true;
-
// Retrieve the device list from the local machine
IList allDevices = LivePacketDevice.AllLocalMachine;
diff --git a/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/OpeningAnAdapterAndCapturingThePackets/Properties/AssemblyInfo.cs
index ffb65c43..ef8e2f3b 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("0.7.0.*")]
-[assembly: AssemblyFileVersion("0.7.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
diff --git a/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/Program.cs b/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/Program.cs
index eaf7fea0..ba6c701d 100644
--- a/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/Program.cs
+++ b/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/Program.cs
@@ -8,9 +8,6 @@ class Program
{
static void Main(string[] args)
{
- // Send anonymous statistics about the usage of Pcap.Net
- PcapDotNet.Analysis.PcapDotNetAnalysis.OptIn = true;
-
// Check command line
if (args.Length != 1)
{
diff --git a/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/Properties/AssemblyInfo.cs
index 0edeca68..8e715faa 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("0.7.0.*")]
-[assembly: AssemblyFileVersion("0.7.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
diff --git a/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/ReadingPacketsFromADumpFile.csproj b/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/ReadingPacketsFromADumpFile.csproj
index 7521a336..cbb986a4 100644
--- a/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/ReadingPacketsFromADumpFile.csproj
+++ b/PcapDotNet.DevelopersPack/src/ReadingPacketsFromADumpFile/ReadingPacketsFromADumpFile.csproj
@@ -57,10 +57,6 @@
AllRules.ruleset
-
- False
- ..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
-
False
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
diff --git a/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/Program.cs b/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/Program.cs
index ee56b8bd..0b5af86a 100644
--- a/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/Program.cs
+++ b/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/Program.cs
@@ -8,9 +8,6 @@ class Program
{
static void Main(string[] args)
{
- // Send anonymous statistics about the usage of Pcap.Net
- PcapDotNet.Analysis.PcapDotNetAnalysis.OptIn = true;
-
// Check command line
if (args.Length != 1)
{
diff --git a/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/Properties/AssemblyInfo.cs
index f5e7a577..1d220f3b 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("0.7.0.*")]
-[assembly: AssemblyFileVersion("0.7.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
diff --git a/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/SavingPacketsToADumpFile.csproj b/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/SavingPacketsToADumpFile.csproj
index 6bf0fed4..d5f27f13 100644
--- a/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/SavingPacketsToADumpFile.csproj
+++ b/PcapDotNet.DevelopersPack/src/SavingPacketsToADumpFile/SavingPacketsToADumpFile.csproj
@@ -57,10 +57,6 @@
AllRules.ruleset
-
- False
- ..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
-
False
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
diff --git a/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/Program.cs b/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/Program.cs
index fd1accca..42a6b186 100644
--- a/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/Program.cs
+++ b/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/Program.cs
@@ -12,9 +12,6 @@ class Program
{
static void Main(string[] args)
{
- // Send anonymous statistics about the usage of Pcap.Net
- PcapDotNet.Analysis.PcapDotNetAnalysis.OptIn = true;
-
// Retrieve the device list from the local machine
IList allDevices = LivePacketDevice.AllLocalMachine;
diff --git a/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/Properties/AssemblyInfo.cs
index 2d24ae01..8a110c37 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("0.7.0.*")]
-[assembly: AssemblyFileVersion("0.7.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
diff --git a/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/SendingASinglePacketWithSendPacket.csproj b/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/SendingASinglePacketWithSendPacket.csproj
index 64d0af1e..93d5352f 100644
--- a/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/SendingASinglePacketWithSendPacket.csproj
+++ b/PcapDotNet.DevelopersPack/src/SendingASinglePacketWithSendPacket/SendingASinglePacketWithSendPacket.csproj
@@ -57,10 +57,6 @@
AllRules.ruleset
-
- False
- ..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
-
False
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
diff --git a/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/Program.cs b/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/Program.cs
index 70ec334b..809139a6 100644
--- a/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/Program.cs
+++ b/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/Program.cs
@@ -11,9 +11,6 @@ class Program
{
static void Main(string[] args)
{
- // Send anonymous statistics about the usage of Pcap.Net
- PcapDotNet.Analysis.PcapDotNetAnalysis.OptIn = true;
-
// Check the validity of the command line
if (args.Length == 0 || args.Length > 2)
{
diff --git a/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/Properties/AssemblyInfo.cs
index c21fcdb5..21b33418 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("0.7.0.*")]
-[assembly: AssemblyFileVersion("0.7.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
diff --git a/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/SendingPacketsUsingSendBuffer.csproj b/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/SendingPacketsUsingSendBuffer.csproj
index 0f08aa32..9f952d7f 100644
--- a/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/SendingPacketsUsingSendBuffer.csproj
+++ b/PcapDotNet.DevelopersPack/src/SendingPacketsUsingSendBuffer/SendingPacketsUsingSendBuffer.csproj
@@ -57,10 +57,6 @@
AllRules.ruleset
-
- False
- ..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
-
False
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
diff --git a/PcapDotNet.DevelopersPack/src/UsingLinq/Program.cs b/PcapDotNet.DevelopersPack/src/UsingLinq/Program.cs
index e9cd8315..c9e93d14 100644
--- a/PcapDotNet.DevelopersPack/src/UsingLinq/Program.cs
+++ b/PcapDotNet.DevelopersPack/src/UsingLinq/Program.cs
@@ -12,9 +12,6 @@ class Program
{
static void Main(string[] args)
{
- // Send anonymous statistics about the usage of Pcap.Net
- PcapDotNet.Analysis.PcapDotNetAnalysis.OptIn = true;
-
// Retrieve the device list from the local machine
IList allDevices = LivePacketDevice.AllLocalMachine;
diff --git a/PcapDotNet.DevelopersPack/src/UsingLinq/Properties/AssemblyInfo.cs b/PcapDotNet.DevelopersPack/src/UsingLinq/Properties/AssemblyInfo.cs
index 111e1fd6..532de871 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("0.7.0.*")]
-[assembly: AssemblyFileVersion("0.7.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
diff --git a/PcapDotNet.DevelopersPack/src/UsingLinq/UsingLinq.csproj b/PcapDotNet.DevelopersPack/src/UsingLinq/UsingLinq.csproj
index 9f04f75c..0b92ea6d 100644
--- a/PcapDotNet.DevelopersPack/src/UsingLinq/UsingLinq.csproj
+++ b/PcapDotNet.DevelopersPack/src/UsingLinq/UsingLinq.csproj
@@ -57,9 +57,6 @@
AllRules.ruleset
-
- ..\..\3rdParty\PcapDotNet\PcapDotNet.Analysis.dll
-
False
..\..\3rdParty\PcapDotNet\PcapDotNet.Base.dll
diff --git a/PcapDotNet/doc/PcapDotNet.shfbproj b/PcapDotNet/doc/PcapDotNet.shfbproj
index 95a32fb5..a6d22c64 100644
--- a/PcapDotNet/doc/PcapDotNet.shfbproj
+++ b/PcapDotNet/doc/PcapDotNet.shfbproj
@@ -1,4 +1,5 @@
-
+
+
Documentation
@@ -17,27 +18,25 @@
.\Help\
Pcap.Net
-
-
-
-
-
-
-
-
-
-
- 4.0.30319
+
+
+
+
+
+
+
+ .NET 4.0.30319
en-US
False
True
Pcap.Net Documented Class Library
None
- 0.8.0.0
+ 0.9.0.0
False
False
False
+ HtmlHelp1
diff --git a/PcapDotNet/src/PcapDotNet.Base.Test/Properties/AssemblyInfo.cs b/PcapDotNet/src/PcapDotNet.Base.Test/Properties/AssemblyInfo.cs
index a527248b..df77937d 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("0.8.0.*")]
-[assembly: AssemblyFileVersion("0.8.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
diff --git a/PcapDotNet/src/PcapDotNet.Base/Properties/AssemblyInfo.cs b/PcapDotNet/src/PcapDotNet.Base/Properties/AssemblyInfo.cs
index 408e3a45..db6adf0e 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("0.8.0.*")]
-[assembly: AssemblyFileVersion("0.8.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.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 9d2b21d8..ed0bbc30 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("0.8.0.*")]
-[assembly: AssemblyFileVersion("0.8.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.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 ba6e916c..6dfc3670 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("0.8.0.*")]
-[assembly: AssemblyFileVersion("0.8.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
diff --git a/PcapDotNet/src/PcapDotNet.Core/Properties/AssemblyInfo.cpp b/PcapDotNet/src/PcapDotNet.Core/Properties/AssemblyInfo.cpp
index cefd7c4d..0eaaf0db 100644
--- a/PcapDotNet/src/PcapDotNet.Core/Properties/AssemblyInfo.cpp
+++ b/PcapDotNet/src/PcapDotNet.Core/Properties/AssemblyInfo.cpp
@@ -29,8 +29,8 @@ using namespace System::Security::Permissions;
// You can specify all the value or you can default the Revision and Build Numbers
// by using the '*' as shown below:
-[assembly:AssemblyVersionAttribute("0.8.0.*")];
-[assembly:AssemblyFileVersionAttribute("0.8.0.0")]
+[assembly:AssemblyVersionAttribute("0.9.0.*")];
+[assembly:AssemblyFileVersionAttribute("0.9.0.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 7df08ec4..9a4e98b6 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("0.8.0.*")]
-[assembly: AssemblyFileVersion("0.8.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
diff --git a/PcapDotNet/src/PcapDotNet.Packets.TestUtils/Properties/AssemblyInfo.cs b/PcapDotNet/src/PcapDotNet.Packets.TestUtils/Properties/AssemblyInfo.cs
index 90ba4bf4..fd28cc7f 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("0.8.0.*")]
-[assembly: AssemblyFileVersion("0.8.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
diff --git a/PcapDotNet/src/PcapDotNet.Packets/Properties/AssemblyInfo.cs b/PcapDotNet/src/PcapDotNet.Packets/Properties/AssemblyInfo.cs
index f3ca17d0..8b93fda1 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("0.8.0.*")]
-[assembly: AssemblyFileVersion("0.8.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]
[assembly:CLSCompliant(false)]
diff --git a/PcapDotNet/src/PcapDotNet.TestUtils/Properties/AssemblyInfo.cs b/PcapDotNet/src/PcapDotNet.TestUtils/Properties/AssemblyInfo.cs
index d1e8ccfd..1ac95207 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("0.8.0.*")]
-[assembly: AssemblyFileVersion("0.8.0.0")]
+[assembly: AssemblyVersion("0.9.0.*")]
+[assembly: AssemblyFileVersion("0.9.0.0")]