diff --git a/Chickensoft.Log.Tests/Chickensoft.Log.Tests.csproj b/Chickensoft.Log.Tests/Chickensoft.Log.Tests.csproj index a585e6b..dfced09 100644 --- a/Chickensoft.Log.Tests/Chickensoft.Log.Tests.csproj +++ b/Chickensoft.Log.Tests/Chickensoft.Log.Tests.csproj @@ -2,7 +2,7 @@ net8.0 - enable + disable enable false diff --git a/Chickensoft.Log.Tests/test/src/FakeMethodBase.cs b/Chickensoft.Log.Tests/test/src/FakeMethodBase.cs index ccb176f..6cc6d08 100644 --- a/Chickensoft.Log.Tests/test/src/FakeMethodBase.cs +++ b/Chickensoft.Log.Tests/test/src/FakeMethodBase.cs @@ -1,5 +1,6 @@ namespace Chickensoft.Log.Tests; +using System; using System.Globalization; using System.Reflection; diff --git a/Chickensoft.Log.Tests/test/src/FakeType.cs b/Chickensoft.Log.Tests/test/src/FakeType.cs index 7140443..c330e12 100644 --- a/Chickensoft.Log.Tests/test/src/FakeType.cs +++ b/Chickensoft.Log.Tests/test/src/FakeType.cs @@ -1,5 +1,6 @@ namespace Chickensoft.Log.Tests; +using System; using System.Globalization; using System.Reflection; diff --git a/Chickensoft.Log.Tests/test/src/MultiLogTest.cs b/Chickensoft.Log.Tests/test/src/MultiLogTest.cs index ed25209..6642a60 100644 --- a/Chickensoft.Log.Tests/test/src/MultiLogTest.cs +++ b/Chickensoft.Log.Tests/test/src/MultiLogTest.cs @@ -1,5 +1,7 @@ namespace Chickensoft.Log.Tests; +using System.Collections.Generic; +using System.Linq; using Moq; using Shouldly; diff --git a/Chickensoft.Log.Tests/test/src/TestException.cs b/Chickensoft.Log.Tests/test/src/TestException.cs index f34bb44..a4da5c2 100644 --- a/Chickensoft.Log.Tests/test/src/TestException.cs +++ b/Chickensoft.Log.Tests/test/src/TestException.cs @@ -1,5 +1,7 @@ namespace Chickensoft.Log.Tests; +using System; + internal sealed class TestException : Exception { public TestException() { } public TestException(string msg) : base(msg) { } diff --git a/Chickensoft.Log/Chickensoft.Log.csproj b/Chickensoft.Log/Chickensoft.Log.csproj index d842e5c..ca3b999 100644 --- a/Chickensoft.Log/Chickensoft.Log.csproj +++ b/Chickensoft.Log/Chickensoft.Log.csproj @@ -5,6 +5,7 @@ preview true true + disable enable true Chickensoft.Log