Commit f96304cf authored by Brickner_cp's avatar Brickner_cp

Packets -> PcapDotNet.Packets

Resharper
parent c60f1624
<Configuration>
<CodeStyleSettings>
<ExternalPath IsNull="False">
</ExternalPath>
<Sharing>SOLUTION</Sharing>
<CSharp>
<FormatSettings>
<ANONYMOUS_METHOD_DECLARATION_BRACES>NEXT_LINE</ANONYMOUS_METHOD_DECLARATION_BRACES>
<INDENT_SIZE>4</INDENT_SIZE>
<MODIFIERS_ORDER IsNull="False">
<Item>public</Item>
<Item>protected</Item>
<Item>internal</Item>
<Item>private</Item>
<Item>new</Item>
<Item>abstract</Item>
<Item>virtual</Item>
<Item>override</Item>
<Item>sealed</Item>
<Item>static</Item>
<Item>readonly</Item>
<Item>extern</Item>
<Item>unsafe</Item>
<Item>volatile</Item>
</MODIFIERS_ORDER>
<PLACE_CONSTRUCTOR_INITIALIZER_ON_SAME_LINE>False</PLACE_CONSTRUCTOR_INITIALIZER_ON_SAME_LINE>
<SPACE_AFTER_TYPECAST_PARENTHESES>False</SPACE_AFTER_TYPECAST_PARENTHESES>
<SPACE_AROUND_MULTIPLICATIVE_OP>True</SPACE_AROUND_MULTIPLICATIVE_OP>
<SPACE_BEFORE_TYPEOF_PARENTHESES>False</SPACE_BEFORE_TYPEOF_PARENTHESES>
<WRAP_LIMIT>150</WRAP_LIMIT>
</FormatSettings>
<UsingsSettings />
<Naming2 />
</CSharp>
<VB>
<FormatSettings>
<INDENT_SIZE>4</INDENT_SIZE>
</FormatSettings>
<ImportsSettings />
<Naming2 />
</VB>
<GenerateMemberBody />
<Naming2>
<PredefinedRule Inspect="True" Prefix="" Suffix="" Style="aaBb" ElementKind="Locals" />
<PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="PrivateInstanceFields" />
<PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="PrivateStaticFields" />
<PredefinedRule Inspect="True" Prefix="" Suffix="" Style="aaBb" ElementKind="Parameters" />
<PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="MethodPropertyEvent" />
<PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="TypesAndNamespaces" />
<PredefinedRule Inspect="True" Prefix="I" Suffix="" Style="AaBb" ElementKind="Interfaces" />
<PredefinedRule Inspect="True" Prefix="T" Suffix="" Style="AaBb" ElementKind="TypeParameters" />
<PredefinedRule Inspect="True" Prefix="" Suffix="" Style="aaBb" ElementKind="LocalConstants" />
<PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="PublicFields" />
<PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="Constants" />
<PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="PrivateConstants" />
<PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="StaticReadonly" />
<PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="PrivateStaticReadonly" />
<PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="EnumMember" />
<PredefinedRule Inspect="True" Prefix="" Suffix="" Style="AaBb" ElementKind="Other" />
</Naming2>
</CodeStyleSettings>
</Configuration>
\ No newline at end of file
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Packets;
using PcapDotNet.Packets;
namespace PcapDotNet.Core.Test
{
......
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Packets;
using PcapDotNet.Packets;
using PcapDotNet.Packets.TestUtils;
using PcapDotNet.TestUtils;
......
......@@ -4,7 +4,7 @@ using System.IO;
using System.Net;
using System.Text.RegularExpressions;
using System.Threading;
using Packets;
using PcapDotNet.Packets;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace PcapDotNet.Core.Test
......
using System;
using Packets;
using PcapDotNet.Packets;
namespace PcapDotNet.Core.Test
{
......
......@@ -3,7 +3,7 @@ using System.Collections.Generic;
using System.IO;
using System.Threading;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Packets;
using PcapDotNet.Packets;
namespace PcapDotNet.Core.Test
{
......
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Packets;
using PcapDotNet.Packets;
namespace PcapDotNet.Core.Test
{
......
using System;
using System.Collections.Generic;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Packets;
using PcapDotNet.Packets;
namespace PcapDotNet.Core.Test
{
......
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Packets;
using PcapDotNet.Packets;
namespace PcapDotNet.Core.Test
{
......
......@@ -8,7 +8,7 @@
using namespace System;
using namespace System::Runtime::InteropServices;
using namespace PcapDotNet::Core;
using namespace Packets;
using namespace PcapDotNet::Packets;
BerkeleyPacketFilter::BerkeleyPacketFilter(String^ filterValue, int snapshotLength, DataLinkKind kind, IpV4SocketAddress^ netmask)
{
......@@ -20,7 +20,7 @@ BerkeleyPacketFilter::BerkeleyPacketFilter(String^ filterValue, int snapshotLeng
Initialize(filterValue, snapshotLength, kind, nullptr);
}
bool BerkeleyPacketFilter::Test([Out] int% snapshotLength, Packets::Packet^ packet)
bool BerkeleyPacketFilter::Test([Out] int% snapshotLength, Packet^ packet)
{
pcap_pkthdr pcapHeader;
PacketHeader::GetPcapHeader(pcapHeader, packet);
......@@ -30,7 +30,7 @@ bool BerkeleyPacketFilter::Test([Out] int% snapshotLength, Packets::Packet^ pack
return (snapshotLength != 0);
}
bool BerkeleyPacketFilter::Test(Packets::Packet^ packet)
bool BerkeleyPacketFilter::Test(Packet^ packet)
{
int snapshotLength;
return Test(snapshotLength, packet);
......
......@@ -4,7 +4,7 @@
using namespace System;
using namespace System::Text;
using namespace PcapDotNet::Core;
using namespace Packets;
using namespace PcapDotNet::Packets;
IpV4Address IpV4SocketAddress::Address::get()
{
......
......@@ -10,7 +10,7 @@ using namespace System;
using namespace System::Collections::Generic;
using namespace System::Collections::ObjectModel;
using namespace System::Globalization;
using namespace Packets;
using namespace PcapDotNet::Packets;
using namespace PcapDotNet::Core;
ReadOnlyCollection<LivePacketDevice^>^ LivePacketDevice::AllLocalMachine::get()
......
......@@ -11,7 +11,7 @@ using namespace System::Globalization;
using namespace System::Runtime::InteropServices;
using namespace System::Collections::ObjectModel;
using namespace System::Collections::Generic;
using namespace Packets;
using namespace PcapDotNet::Packets;
using namespace PcapDotNet::Core;
PacketCommunicator::PacketCommunicator(const char* source, int snapshotLength, PacketDeviceOpenAttributes attributes, int readTimeout, pcap_rmtauth *auth, SocketAddress^ netmask)
......
......@@ -7,7 +7,7 @@
using namespace System;
using namespace PcapDotNet::Core;
using namespace Packets;
using namespace PcapDotNet::Packets;
void PacketDumpFile::Dump(Packet^ packet)
{
......
......@@ -3,9 +3,10 @@
#include "Timestamp.h"
using namespace PcapDotNet::Core;
using namespace PcapDotNet::Packets;
// static
void PacketHeader::GetPcapHeader(pcap_pkthdr &header, Packets::Packet^ packet)
void PacketHeader::GetPcapHeader(pcap_pkthdr &header, Packet^ packet)
{
Timestamp::DateTimeToPcapTimestamp(packet->Timestamp, header.ts);
header.len = packet->Length;
......
......@@ -5,7 +5,7 @@
using namespace System;
using namespace PcapDotNet::Core;
using namespace Packets;
using namespace PcapDotNet::Packets;
PacketSendBuffer::PacketSendBuffer(unsigned int capacity)
{
......
......@@ -7,7 +7,7 @@
using namespace System;
using namespace System::Globalization;
using namespace Packets;
using namespace PcapDotNet::Packets;
using namespace PcapDotNet::Core;
PcapDataLink::PcapDataLink(DataLinkKind kind)
......
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Packets.Test
namespace PcapDotNet.Packets.Test
{
/// <summary>
/// Summary description for EthernetDatagramTests
......
using System;
using System;
using System.Text;
using System.Collections.Generic;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Packets.Test
namespace PcapDotNet.Packets.Test
{
/// <summary>
/// Summary description for IpV4AddressTests
......
......@@ -4,7 +4,7 @@ using Microsoft.VisualStudio.TestTools.UnitTesting;
using PcapDotNet.Packets.TestUtils;
using PcapDotNet.TestUtils;
namespace Packets.Test
namespace PcapDotNet.Packets.Test
{
/// <summary>
/// Summary description for IpV4Tests
......
......@@ -7,8 +7,8 @@
<ProjectGuid>{6C7326EB-F230-4934-B74B-F99F87204E44}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Packets.Test</RootNamespace>
<AssemblyName>Packets.Test</AssemblyName>
<RootNamespace>PcapDotNet.Packets.Test</RootNamespace>
<AssemblyName>PcapDotNet.Packets.Test</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
......
......@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Packets;
using PcapDotNet.Packets;
using PcapDotNet.TestUtils;
namespace PcapDotNet.Packets.TestUtils
......
namespace Packets
namespace PcapDotNet.Packets
{
public struct DataLink : IDataLink
{
......
namespace Packets
namespace PcapDotNet.Packets
{
public enum DataLinkKind
{
......
using System;
namespace Packets
namespace PcapDotNet.Packets
{
public class Datagram : IEquatable<Datagram>
{
......
using System;
namespace Packets
namespace PcapDotNet.Packets
{
/// <summary>
/// +------+-----------------+------------+------------------+
......
namespace Packets
namespace PcapDotNet.Packets
{
public enum EthernetType : ushort
{
......
using System;
using System.Globalization;
namespace Packets
namespace PcapDotNet.Packets
{
public struct MacAddress
{
......
namespace Packets
namespace PcapDotNet.Packets
{
public interface IDataLink
{
......
using System.Text;
namespace Packets
namespace PcapDotNet.Packets
{
public struct IpV4Address
{
......
......@@ -2,7 +2,7 @@
using System.Linq;
using System.Text;
namespace Packets
namespace PcapDotNet.Packets
{
/// <summary>
/// +-----+---------+-----+-----------------+-------+-----------------+
......
using System;
namespace Packets
namespace PcapDotNet.Packets
{
public struct IpV4Fragmentation : IEquatable<IpV4Fragmentation>
{
......
using System;
namespace Packets
namespace PcapDotNet.Packets
{
[Flags]
public enum IpV4FragmentationFlags : ushort
......
using System;
namespace Packets
namespace PcapDotNet.Packets
{
public abstract class IpV4Option : IEquatable<IpV4Option>
{
......
namespace Packets
namespace PcapDotNet.Packets
{
public class IpV4OptionEndOfOptionsList : IpV4Option
{
......
namespace Packets
namespace PcapDotNet.Packets
{
public class IpV4OptionLooseSourceRouting : IpV4OptionRoute
{
......
namespace Packets
namespace PcapDotNet.Packets
{
public class IpV4OptionNoOperation : IpV4Option
{
......
namespace Packets
namespace PcapDotNet.Packets
{
public class IpV4OptionRecordRoute : IpV4OptionRoute
{
......
using System;
using System.Linq;
namespace Packets
namespace PcapDotNet.Packets
{
public abstract class IpV4OptionRoute : IpV4Option, IEquatable<IpV4OptionRoute>
{
......
using System;
using PcapDotNet.Base;
namespace Packets
namespace PcapDotNet.Packets
{
public class IpV4OptionSecurity : IpV4Option, IEquatable<IpV4OptionSecurity>
{
......
namespace Packets
namespace PcapDotNet.Packets
{
public enum IpV4OptionSecurityLevel : ushort
{
......
using System;
namespace Packets
namespace PcapDotNet.Packets
{
public class IpV4OptionStreamIdentifier : IpV4Option, IEquatable<IpV4OptionStreamIdentifier>
{
......
namespace Packets
namespace PcapDotNet.Packets
{
public class IpV4OptionStrictSourceRouting : IpV4OptionRoute
{
......
using System;
namespace Packets
namespace PcapDotNet.Packets
{
public abstract class IpV4OptionTimestamp : IpV4Option, IEquatable<IpV4OptionTimestamp>
{
......
......@@ -2,7 +2,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
namespace Packets
namespace PcapDotNet.Packets
{
public class IpV4OptionTimestampAndAddress : IpV4OptionTimestamp
{
......
using System;
using System.Linq;
namespace Packets
namespace PcapDotNet.Packets
{
public class IpV4OptionTimestampOnly : IpV4OptionTimestamp
{
......
using System;
namespace Packets
namespace PcapDotNet.Packets
{
[Flags]
public enum IpV4OptionTimestampType : byte
......
namespace Packets
namespace PcapDotNet.Packets
{
public enum IpV4OptionType : byte
{
......
......@@ -2,7 +2,7 @@ using System;
using System.Collections.Generic;
using System.Linq;
namespace Packets
namespace PcapDotNet.Packets
{
public class IpV4Options : IEquatable<IpV4Options>
{
......
namespace Packets
namespace PcapDotNet.Packets
{
public enum IpV4Protocol : byte
{
......
......@@ -2,7 +2,7 @@ using System;
using System.Net;
using PcapDotNet.Base;
namespace Packets
namespace PcapDotNet.Packets
{
public enum Endianity : byte
{
......
......@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Linq;
namespace Packets
namespace PcapDotNet.Packets
{
public class Packet : IEquatable<Packet>
{
......
using System;
namespace Packets
namespace PcapDotNet.Packets
{
public static class PacketBuilder
{
......
......@@ -8,8 +8,8 @@
<ProjectGuid>{8A184AF5-E46C-482C-81A3-76D8CE290104}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Packets</RootNamespace>
<AssemblyName>Packets</AssemblyName>
<RootNamespace>PcapDotNet.Packets</RootNamespace>
<AssemblyName>PcapDotNet.Packets</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SccProjectName>SAK</SccProjectName>
......
......@@ -10,6 +10,7 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{0D5DCCC5-A509-4B4E-90B0-92390C6EA06F}"
ProjectSection(SolutionItems) = preProject
LocalTestRun.testrunconfig = LocalTestRun.testrunconfig
PcapDotNet.4.5.resharper = PcapDotNet.4.5.resharper
PcapDotNet.vsmdi = PcapDotNet.vsmdi
EndProjectSection
EndProject
......@@ -71,11 +72,13 @@ Global
{5B4E80EB-DED5-4F20-871A-D9567F3F79DD}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{5B4E80EB-DED5-4F20-871A-D9567F3F79DD}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{5B4E80EB-DED5-4F20-871A-D9567F3F79DD}.Debug|Win32.ActiveCfg = Debug|Any CPU
{5B4E80EB-DED5-4F20-871A-D9567F3F79DD}.Debug|Win32.Build.0 = Debug|Any CPU
{5B4E80EB-DED5-4F20-871A-D9567F3F79DD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5B4E80EB-DED5-4F20-871A-D9567F3F79DD}.Release|Any CPU.Build.0 = Release|Any CPU
{5B4E80EB-DED5-4F20-871A-D9567F3F79DD}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{5B4E80EB-DED5-4F20-871A-D9567F3F79DD}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{5B4E80EB-DED5-4F20-871A-D9567F3F79DD}.Release|Win32.ActiveCfg = Release|Any CPU
{5B4E80EB-DED5-4F20-871A-D9567F3F79DD}.Release|Win32.Build.0 = Release|Any CPU
{89C63BE1-AF9A-472E-B256-A4F56B1655A7}.Debug|Any CPU.ActiveCfg = Debug|Win32
{89C63BE1-AF9A-472E-B256-A4F56B1655A7}.Debug|Any CPU.Build.0 = Debug|Win32
{89C63BE1-AF9A-472E-B256-A4F56B1655A7}.Debug|Mixed Platforms.ActiveCfg = Debug|Win32
......@@ -93,61 +96,73 @@ Global
{045A6460-C260-4CDA-8030-FD19A0086C95}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{045A6460-C260-4CDA-8030-FD19A0086C95}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{045A6460-C260-4CDA-8030-FD19A0086C95}.Debug|Win32.ActiveCfg = Debug|Any CPU
{045A6460-C260-4CDA-8030-FD19A0086C95}.Debug|Win32.Build.0 = Debug|Any CPU
{045A6460-C260-4CDA-8030-FD19A0086C95}.Release|Any CPU.ActiveCfg = Release|Any CPU
{045A6460-C260-4CDA-8030-FD19A0086C95}.Release|Any CPU.Build.0 = Release|Any CPU
{045A6460-C260-4CDA-8030-FD19A0086C95}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{045A6460-C260-4CDA-8030-FD19A0086C95}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{045A6460-C260-4CDA-8030-FD19A0086C95}.Release|Win32.ActiveCfg = Release|Any CPU
{045A6460-C260-4CDA-8030-FD19A0086C95}.Release|Win32.Build.0 = Release|Any CPU
{540F21A8-CD9F-4288-ADCA-DB17027FF309}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{540F21A8-CD9F-4288-ADCA-DB17027FF309}.Debug|Any CPU.Build.0 = Debug|Any CPU
{540F21A8-CD9F-4288-ADCA-DB17027FF309}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{540F21A8-CD9F-4288-ADCA-DB17027FF309}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{540F21A8-CD9F-4288-ADCA-DB17027FF309}.Debug|Win32.ActiveCfg = Debug|Any CPU
{540F21A8-CD9F-4288-ADCA-DB17027FF309}.Debug|Win32.Build.0 = Debug|Any CPU
{540F21A8-CD9F-4288-ADCA-DB17027FF309}.Release|Any CPU.ActiveCfg = Release|Any CPU
{540F21A8-CD9F-4288-ADCA-DB17027FF309}.Release|Any CPU.Build.0 = Release|Any CPU
{540F21A8-CD9F-4288-ADCA-DB17027FF309}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{540F21A8-CD9F-4288-ADCA-DB17027FF309}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{540F21A8-CD9F-4288-ADCA-DB17027FF309}.Release|Win32.ActiveCfg = Release|Any CPU
{540F21A8-CD9F-4288-ADCA-DB17027FF309}.Release|Win32.Build.0 = Release|Any CPU
{194D3B9A-AD99-44ED-991A-73C4A7EE550F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{194D3B9A-AD99-44ED-991A-73C4A7EE550F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{194D3B9A-AD99-44ED-991A-73C4A7EE550F}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{194D3B9A-AD99-44ED-991A-73C4A7EE550F}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{194D3B9A-AD99-44ED-991A-73C4A7EE550F}.Debug|Win32.ActiveCfg = Debug|Any CPU
{194D3B9A-AD99-44ED-991A-73C4A7EE550F}.Debug|Win32.Build.0 = Debug|Any CPU
{194D3B9A-AD99-44ED-991A-73C4A7EE550F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{194D3B9A-AD99-44ED-991A-73C4A7EE550F}.Release|Any CPU.Build.0 = Release|Any CPU
{194D3B9A-AD99-44ED-991A-73C4A7EE550F}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{194D3B9A-AD99-44ED-991A-73C4A7EE550F}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{194D3B9A-AD99-44ED-991A-73C4A7EE550F}.Release|Win32.ActiveCfg = Release|Any CPU
{194D3B9A-AD99-44ED-991A-73C4A7EE550F}.Release|Win32.Build.0 = Release|Any CPU
{83E805C9-4D29-4E34-A27E-5A78690FBD2B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{83E805C9-4D29-4E34-A27E-5A78690FBD2B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{83E805C9-4D29-4E34-A27E-5A78690FBD2B}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{83E805C9-4D29-4E34-A27E-5A78690FBD2B}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{83E805C9-4D29-4E34-A27E-5A78690FBD2B}.Debug|Win32.ActiveCfg = Debug|Any CPU
{83E805C9-4D29-4E34-A27E-5A78690FBD2B}.Debug|Win32.Build.0 = Debug|Any CPU
{83E805C9-4D29-4E34-A27E-5A78690FBD2B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{83E805C9-4D29-4E34-A27E-5A78690FBD2B}.Release|Any CPU.Build.0 = Release|Any CPU
{83E805C9-4D29-4E34-A27E-5A78690FBD2B}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{83E805C9-4D29-4E34-A27E-5A78690FBD2B}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{83E805C9-4D29-4E34-A27E-5A78690FBD2B}.Release|Win32.ActiveCfg = Release|Any CPU
{83E805C9-4D29-4E34-A27E-5A78690FBD2B}.Release|Win32.Build.0 = Release|Any CPU
{8A184AF5-E46C-482C-81A3-76D8CE290104}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8A184AF5-E46C-482C-81A3-76D8CE290104}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8A184AF5-E46C-482C-81A3-76D8CE290104}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{8A184AF5-E46C-482C-81A3-76D8CE290104}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{8A184AF5-E46C-482C-81A3-76D8CE290104}.Debug|Win32.ActiveCfg = Debug|Any CPU
{8A184AF5-E46C-482C-81A3-76D8CE290104}.Debug|Win32.Build.0 = Debug|Any CPU
{8A184AF5-E46C-482C-81A3-76D8CE290104}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8A184AF5-E46C-482C-81A3-76D8CE290104}.Release|Any CPU.Build.0 = Release|Any CPU
{8A184AF5-E46C-482C-81A3-76D8CE290104}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{8A184AF5-E46C-482C-81A3-76D8CE290104}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{8A184AF5-E46C-482C-81A3-76D8CE290104}.Release|Win32.ActiveCfg = Release|Any CPU
{8A184AF5-E46C-482C-81A3-76D8CE290104}.Release|Win32.Build.0 = Release|Any CPU
{6C7326EB-F230-4934-B74B-F99F87204E44}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{6C7326EB-F230-4934-B74B-F99F87204E44}.Debug|Any CPU.Build.0 = Debug|Any CPU
{6C7326EB-F230-4934-B74B-F99F87204E44}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{6C7326EB-F230-4934-B74B-F99F87204E44}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{6C7326EB-F230-4934-B74B-F99F87204E44}.Debug|Win32.ActiveCfg = Debug|Any CPU
{6C7326EB-F230-4934-B74B-F99F87204E44}.Debug|Win32.Build.0 = Debug|Any CPU
{6C7326EB-F230-4934-B74B-F99F87204E44}.Release|Any CPU.ActiveCfg = Release|Any CPU
{6C7326EB-F230-4934-B74B-F99F87204E44}.Release|Any CPU.Build.0 = Release|Any CPU
{6C7326EB-F230-4934-B74B-F99F87204E44}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{6C7326EB-F230-4934-B74B-F99F87204E44}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{6C7326EB-F230-4934-B74B-F99F87204E44}.Release|Win32.ActiveCfg = Release|Any CPU
{6C7326EB-F230-4934-B74B-F99F87204E44}.Release|Win32.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
......
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