mirror of
https://github.com/OpenLogics/MewtocolNet.git
synced 2025-12-06 03:01:24 +00:00
Namespaces fixed
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
using MewtocolNet.Logging;
|
using MewtocolNet.Logging;
|
||||||
using MewtocolNet.Subregisters;
|
using MewtocolNet.Registers;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
using MewtocolNet.Logging;
|
using MewtocolNet.Logging;
|
||||||
using MewtocolNet.Queue;
|
using MewtocolNet.Queue;
|
||||||
using MewtocolNet.RegisterAttributes;
|
using MewtocolNet.RegisterAttributes;
|
||||||
using MewtocolNet.Subregisters;
|
using MewtocolNet.Registers;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
using MewtocolNet.Logging;
|
using MewtocolNet.Logging;
|
||||||
using MewtocolNet.PLCEnums;
|
using MewtocolNet.PLCEnums;
|
||||||
using MewtocolNet.Subregisters;
|
using MewtocolNet.Registers;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Globalization;
|
using System.Globalization;
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace MewtocolNet.Subregisters {
|
namespace MewtocolNet.Registers {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Defines a register containing a boolean
|
/// Defines a register containing a boolean
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace MewtocolNet.Subregisters {
|
namespace MewtocolNet.Registers {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Result for a boolean register
|
/// Result for a boolean register
|
||||||
@@ -4,7 +4,7 @@ using System.Collections.Generic;
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace MewtocolNet.Subregisters {
|
namespace MewtocolNet.Registers {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Defines a register containing a number
|
/// Defines a register containing a number
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
namespace MewtocolNet.Subregisters {
|
namespace MewtocolNet.Registers {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Result for a read/write operation
|
/// Result for a read/write operation
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -31,7 +32,4 @@
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -2,7 +2,8 @@
|
|||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace MewtocolNet.Subregisters {
|
namespace MewtocolNet.Registers {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Defines a register containing a string
|
/// Defines a register containing a string
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace MewtocolNet.Subregisters {
|
namespace MewtocolNet.Registers {
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The results of a string register operation
|
/// The results of a string register operation
|
||||||
@@ -1,15 +1,11 @@
|
|||||||
using Xunit;
|
|
||||||
|
|
||||||
using MewtocolNet;
|
using MewtocolNet;
|
||||||
using System.Diagnostics;
|
|
||||||
using Xunit.Abstractions;
|
|
||||||
using System.Collections;
|
|
||||||
using MewtocolNet.RegisterAttributes;
|
using MewtocolNet.RegisterAttributes;
|
||||||
using Microsoft.Win32;
|
using MewtocolNet.Registers;
|
||||||
using MewtocolNet.Subregisters;
|
using System.Collections;
|
||||||
|
using Xunit;
|
||||||
|
using Xunit.Abstractions;
|
||||||
|
|
||||||
namespace MewtocolTests
|
namespace MewtocolTests {
|
||||||
{
|
|
||||||
|
|
||||||
public class AutomatedPropertyRegisters {
|
public class AutomatedPropertyRegisters {
|
||||||
|
|
||||||
|
|||||||
@@ -1,10 +1,7 @@
|
|||||||
using Xunit;
|
|
||||||
|
|
||||||
using MewtocolNet;
|
using MewtocolNet;
|
||||||
using MewtocolNet.Registers;
|
|
||||||
using Xunit.Abstractions;
|
|
||||||
using MewtocolNet.Links;
|
|
||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
using Xunit;
|
||||||
|
using Xunit.Abstractions;
|
||||||
|
|
||||||
namespace MewtocolTests {
|
namespace MewtocolTests {
|
||||||
|
|
||||||
|
|||||||
@@ -1,11 +1,8 @@
|
|||||||
using Xunit;
|
|
||||||
|
|
||||||
using MewtocolNet;
|
using MewtocolNet;
|
||||||
using MewtocolNet.Registers;
|
using Xunit;
|
||||||
using Xunit.Abstractions;
|
using Xunit.Abstractions;
|
||||||
|
|
||||||
namespace MewtocolTests
|
namespace MewtocolTests {
|
||||||
{
|
|
||||||
|
|
||||||
public class TestLinkedLists {
|
public class TestLinkedLists {
|
||||||
|
|
||||||
|
|||||||
@@ -1,16 +1,10 @@
|
|||||||
using MewtocolNet;
|
using MewtocolNet;
|
||||||
using MewtocolNet.Logging;
|
using MewtocolNet.Logging;
|
||||||
using MewtocolNet.PLCEnums;
|
using MewtocolNet.PLCEnums;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Xunit;
|
using Xunit;
|
||||||
using Xunit.Abstractions;
|
using Xunit.Abstractions;
|
||||||
|
|
||||||
namespace MewtocolTests
|
namespace MewtocolTests {
|
||||||
{
|
|
||||||
|
|
||||||
public class TestLivePLC {
|
public class TestLivePLC {
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
using Xunit;
|
|
||||||
|
|
||||||
using MewtocolNet;
|
using MewtocolNet;
|
||||||
using MewtocolNet.Registers;
|
using MewtocolNet.Registers;
|
||||||
|
using Xunit;
|
||||||
using Xunit.Abstractions;
|
using Xunit.Abstractions;
|
||||||
|
|
||||||
namespace MewtocolTests {
|
namespace MewtocolTests {
|
||||||
|
|||||||
@@ -1,11 +1,5 @@
|
|||||||
using MewtocolNet;
|
using MewtocolNet;
|
||||||
using MewtocolNet.Mewtocol;
|
|
||||||
using MewtocolNet.Registers;
|
using MewtocolNet.Registers;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using Xunit;
|
using Xunit;
|
||||||
using Xunit.Abstractions;
|
using Xunit.Abstractions;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user