diff --git a/NativeLand/LibraryItem.cs b/NativeLand/LibraryItem.cs index 3863d66..a6daecc 100644 --- a/NativeLand/LibraryItem.cs +++ b/NativeLand/LibraryItem.cs @@ -18,7 +18,7 @@ // using Microsoft.Extensions.Logging; -using SpecProbe.Platform; +using SpecProbe.Software.Platform; using System; using System.Collections.Generic; using System.Runtime.InteropServices; diff --git a/NativeLand/LibraryManager.cs b/NativeLand/LibraryManager.cs index 55a2b84..c9c879c 100644 --- a/NativeLand/LibraryManager.cs +++ b/NativeLand/LibraryManager.cs @@ -19,11 +19,10 @@ using System; using System.Collections.Generic; -using System.IO; using System.Linq; using System.Runtime.InteropServices; using Microsoft.Extensions.Logging; -using SpecProbe.Platform; +using SpecProbe.Software.Platform; namespace NativeLand { diff --git a/NativeLand/NativeLand.csproj b/NativeLand/NativeLand.csproj index 3021d79..3faf952 100644 --- a/NativeLand/NativeLand.csproj +++ b/NativeLand/NativeLand.csproj @@ -36,7 +36,7 @@ - + diff --git a/NativeLand/Platform.cs b/NativeLand/Platform.cs deleted file mode 100644 index 66934d6..0000000 --- a/NativeLand/Platform.cs +++ /dev/null @@ -1,41 +0,0 @@ -// -// NativeLand Copyright (C) 2023-2024 Aptivi -// -// This file is part of NativeLand -// -// NativeLand is free software: you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// NativeLand is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY, without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . -// - -namespace NativeLand -{ - // TODO: Move this to SpecProbe. - /// - /// Platform (operating system). - /// - public enum Platform - { - /// - /// Windows platform. - /// - Windows, - /// - /// Linux platform. - /// - Linux, - /// - /// MacOS platform. - /// - MacOS - } -} diff --git a/TestProcess/Program.cs b/TestProcess/Program.cs index f03ed67..2571a5c 100644 --- a/TestProcess/Program.cs +++ b/TestProcess/Program.cs @@ -25,7 +25,7 @@ using NativeLand; using Serilog; using Serilog.Extensions.Logging; -using SpecProbe.Platform; +using SpecProbe.Software.Platform; namespace TestProcess {