Namespaces fixed

This commit is contained in:
Felix Weiß
2023-06-23 15:45:14 +02:00
parent 88ad175145
commit f5f1e3bea9
15 changed files with 63 additions and 87 deletions

View File

@@ -1,5 +1,5 @@
using MewtocolNet.Logging;
using MewtocolNet.Subregisters;
using MewtocolNet.Registers;
using System;
using System.Collections.Generic;
using System.Linq;

View File

@@ -1,7 +1,7 @@
using MewtocolNet.Logging;
using MewtocolNet.Queue;
using MewtocolNet.RegisterAttributes;
using MewtocolNet.Subregisters;
using MewtocolNet.Registers;
using System;
using System.Collections;
using System.Collections.Generic;

View File

@@ -1,6 +1,6 @@
using MewtocolNet.Logging;
using MewtocolNet.PLCEnums;
using MewtocolNet.Subregisters;
using MewtocolNet.Registers;
using System;
using System.Collections.Generic;
using System.Globalization;

View File

@@ -2,7 +2,7 @@
using System.ComponentModel;
using System.Text;
namespace MewtocolNet.Subregisters {
namespace MewtocolNet.Registers {
/// <summary>
/// Defines a register containing a boolean

View File

@@ -1,4 +1,4 @@
namespace MewtocolNet.Subregisters {
namespace MewtocolNet.Registers {
/// <summary>
/// Result for a boolean register

View File

@@ -4,7 +4,7 @@ using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace MewtocolNet.Subregisters {
namespace MewtocolNet.Registers {
/// <summary>
/// Defines a register containing a number

View File

@@ -1,4 +1,5 @@
namespace MewtocolNet.Subregisters {
namespace MewtocolNet.Registers {
/// <summary>
/// Result for a read/write operation
/// </summary>
@@ -31,7 +32,4 @@
}
}

View File

@@ -2,7 +2,8 @@
using System.ComponentModel;
using System.Text;
namespace MewtocolNet.Subregisters {
namespace MewtocolNet.Registers {
/// <summary>
/// Defines a register containing a string
/// </summary>

View File

@@ -1,4 +1,4 @@
namespace MewtocolNet.Subregisters {
namespace MewtocolNet.Registers {
/// <summary>
/// The results of a string register operation

View File

@@ -1,15 +1,11 @@
using Xunit;
using MewtocolNet;
using System.Diagnostics;
using Xunit.Abstractions;
using System.Collections;
using MewtocolNet.RegisterAttributes;
using Microsoft.Win32;
using MewtocolNet.Subregisters;
using MewtocolNet.Registers;
using System.Collections;
using Xunit;
using Xunit.Abstractions;
namespace MewtocolTests
{
namespace MewtocolTests {
public class AutomatedPropertyRegisters {

View File

@@ -1,10 +1,7 @@
using Xunit;
using MewtocolNet;
using MewtocolNet.Registers;
using Xunit.Abstractions;
using MewtocolNet.Links;
using System.Collections;
using Xunit;
using Xunit.Abstractions;
namespace MewtocolTests {

View File

@@ -1,11 +1,8 @@
using Xunit;
using MewtocolNet;
using MewtocolNet.Registers;
using Xunit;
using Xunit.Abstractions;
namespace MewtocolTests
{
namespace MewtocolTests {
public class TestLinkedLists {

View File

@@ -1,16 +1,10 @@
using MewtocolNet;
using MewtocolNet.Logging;
using MewtocolNet.PLCEnums;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;
using Xunit.Abstractions;
namespace MewtocolTests
{
namespace MewtocolTests {
public class TestLivePLC {

View File

@@ -1,7 +1,6 @@
using Xunit;
using MewtocolNet;
using MewtocolNet.Registers;
using Xunit;
using Xunit.Abstractions;
namespace MewtocolTests {

View File

@@ -1,11 +1,5 @@
using MewtocolNet;
using MewtocolNet.Mewtocol;
using MewtocolNet.Registers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;
using Xunit.Abstractions;