From c3a4cdc871604d857a30b861ddaad97f5a79fa58 Mon Sep 17 00:00:00 2001 From: Dario Emerson Di Sante Date: Tue, 19 Mar 2024 10:02:51 +0100 Subject: [PATCH] feat: change namespace --- Constants.cs | 2 +- LogFlake.cs | 4 ++-- LogFlake.csproj | 2 +- LogFlakeException.cs | 2 +- Models/LogObject.cs | 2 +- Models/PendingLog.cs | 2 +- PerformanceCounter.cs | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Constants.cs b/Constants.cs index c390855..77ea87b 100644 --- a/Constants.cs +++ b/Constants.cs @@ -1,4 +1,4 @@ -namespace LogFlake +namespace NLogFlake { public static class Servers { diff --git a/LogFlake.cs b/LogFlake.cs index d87bffb..0b17f18 100644 --- a/LogFlake.cs +++ b/LogFlake.cs @@ -7,9 +7,9 @@ using System.Text.Json; using System.Threading; using System.Threading.Tasks; -using LogFlake.Models; +using NLogFlake.Models; -namespace LogFlake +namespace NLogFlake { public class LogFlake { diff --git a/LogFlake.csproj b/LogFlake.csproj index a89eaea..88bbb1d 100644 --- a/LogFlake.csproj +++ b/LogFlake.csproj @@ -2,7 +2,7 @@ LogFlake.Client.NetCore - 1.0.0 + 1.1.0 CloudPhoenix Srl CloudPhoenix Srl netstandard2.1 diff --git a/LogFlakeException.cs b/LogFlakeException.cs index 581caa8..f9f8be5 100644 --- a/LogFlakeException.cs +++ b/LogFlakeException.cs @@ -1,7 +1,7 @@ using System; using System.Runtime.Serialization; -namespace LogFlake +namespace NLogFlake { [Serializable] public class LogFlakeException : ApplicationException diff --git a/Models/LogObject.cs b/Models/LogObject.cs index 87ae56a..ed75145 100644 --- a/Models/LogObject.cs +++ b/Models/LogObject.cs @@ -3,7 +3,7 @@ using System.Text.Json; using System.Text.Json.Serialization; -namespace LogFlake.Models +namespace NLogFlake.Models { internal class LogObject { diff --git a/Models/PendingLog.cs b/Models/PendingLog.cs index b836f22..67872e9 100644 --- a/Models/PendingLog.cs +++ b/Models/PendingLog.cs @@ -1,4 +1,4 @@ -namespace LogFlake.Models +namespace NLogFlake.Models { internal class PendingLog { diff --git a/PerformanceCounter.cs b/PerformanceCounter.cs index 9a585a5..54429fa 100644 --- a/PerformanceCounter.cs +++ b/PerformanceCounter.cs @@ -1,6 +1,6 @@ using System.Diagnostics; -namespace LogFlake +namespace NLogFlake { public class PerformanceCounter {