Skip to content

Commit

Permalink
feat: change namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
dedo1911 committed Mar 19, 2024
1 parent 7ea32ab commit c3a4cdc
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Constants.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace LogFlake
namespace NLogFlake
{
public static class Servers
{
Expand Down
4 changes: 2 additions & 2 deletions LogFlake.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down
2 changes: 1 addition & 1 deletion LogFlake.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<PackageId>LogFlake.Client.NetCore</PackageId>
<Version>1.0.0</Version>
<Version>1.1.0</Version>
<Authors>CloudPhoenix Srl</Authors>
<Company>CloudPhoenix Srl</Company>
<TargetFramework>netstandard2.1</TargetFramework>
Expand Down
2 changes: 1 addition & 1 deletion LogFlakeException.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Runtime.Serialization;

namespace LogFlake
namespace NLogFlake
{
[Serializable]
public class LogFlakeException : ApplicationException
Expand Down
2 changes: 1 addition & 1 deletion Models/LogObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.Text.Json;
using System.Text.Json.Serialization;

namespace LogFlake.Models
namespace NLogFlake.Models
{
internal class LogObject
{
Expand Down
2 changes: 1 addition & 1 deletion Models/PendingLog.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace LogFlake.Models
namespace NLogFlake.Models
{
internal class PendingLog
{
Expand Down
2 changes: 1 addition & 1 deletion PerformanceCounter.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Diagnostics;

namespace LogFlake
namespace NLogFlake
{
public class PerformanceCounter
{
Expand Down

0 comments on commit c3a4cdc

Please sign in to comment.