Commit c69ed184 authored by Brickner_cp's avatar Brickner_cp

Warnings, Code Analysis and Documentation. 3 warnings left.

parent b6098579
......@@ -225,6 +225,7 @@ namespace PcapDotNet.Base
/// <param name="value15">Bits 112-119 of the UInt128.</param>
/// <param name="value16">Bits 120-127 of the UInt128.</param>
/// <returns>A UInt128 whose bits are determined by the input.</returns>
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1025:ReplaceRepetitiveArgumentsWithParamsArray")]
public static UInt128 Merge(byte value1, byte value2, byte value3, byte value4, byte value5, byte value6, byte value7, byte value8,
byte value9, byte value10, byte value11, byte value12, byte value13, byte value14, byte value15, byte value16)
{
......
......@@ -16,7 +16,6 @@ using PcapDotNet.Packets.Icmp;
using PcapDotNet.Packets.IpV4;
using PcapDotNet.Packets.TestUtils;
using PcapDotNet.Packets.Transport;
using PcapDotNet.Packets.VLanTaggedFrame;
using PcapDotNet.TestUtils;
namespace PcapDotNet.Core.Test
......
......@@ -3,7 +3,6 @@ using System.Linq;
using System.Xml.Linq;
using PcapDotNet.Packets;
using PcapDotNet.Packets.Ethernet;
using PcapDotNet.Packets.VLanTaggedFrame;
namespace PcapDotNet.Core.Test
{
......
......@@ -5,7 +5,6 @@ using PcapDotNet.Packets.Ethernet;
using PcapDotNet.Packets.IpV4;
using PcapDotNet.Packets.TestUtils;
using PcapDotNet.Packets.Transport;
using PcapDotNet.Packets.VLanTaggedFrame;
namespace PcapDotNet.Packets.Test
{
......
using System;
using PcapDotNet.Packets.Ethernet;
using PcapDotNet.Packets.VLanTaggedFrame;
using PcapDotNet.TestUtils;
namespace PcapDotNet.Packets.TestUtils
......
namespace PcapDotNet.Packets.VLanTaggedFrame
namespace PcapDotNet.Packets.Ethernet
{
/// <summary>
/// IEEE P802.1p.
......
using PcapDotNet.Packets.Arp;
using PcapDotNet.Packets.IpV4;
using PcapDotNet.Packets.VLanTaggedFrame;
namespace PcapDotNet.Packets.Ethernet
{
......
using PcapDotNet.Packets.Arp;
using PcapDotNet.Packets.IpV4;
using PcapDotNet.Packets.VLanTaggedFrame;
namespace PcapDotNet.Packets.Ethernet
{
......
using PcapDotNet.Base;
using PcapDotNet.Packets.Ethernet;
namespace PcapDotNet.Packets.VLanTaggedFrame
namespace PcapDotNet.Packets.Ethernet
{
/// <summary>
/// IEEE 802.1Q.
......
using System;
using PcapDotNet.Base;
using PcapDotNet.Packets.Ethernet;
namespace PcapDotNet.Packets.VLanTaggedFrame
namespace PcapDotNet.Packets.Ethernet
{
/// <summary>
/// Represents an VLAN Tagged Frame layer.
......
......@@ -396,9 +396,9 @@
<Compile Include="Transport\TransportDatagram.cs" />
<Compile Include="Transport\UdpDatagram.cs" />
<Compile Include="Transport\UdpLayer.cs" />
<Compile Include="VLanTaggedFrame\ClassOfService.cs" />
<Compile Include="VLanTaggedFrame\VLanTaggedFrameDatagram.cs" />
<Compile Include="VLanTaggedFrame\VLanTaggedFrameLayer.cs" />
<Compile Include="Ethernet\ClassOfService.cs" />
<Compile Include="Ethernet\VLanTaggedFrameDatagram.cs" />
<Compile Include="Ethernet\VLanTaggedFrameLayer.cs" />
</ItemGroup>
<ItemGroup>
<None Include="..\PcapDotNet.snk" />
......@@ -431,6 +431,9 @@
<Link>PcapDotNet.CodeAnalysisDictionary.xml</Link>
</CodeAnalysisDictionary>
</ItemGroup>
<ItemGroup>
<Folder Include="VLanTaggedFrame\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment