Skip to content

Commit

Permalink
chore: disable implicit usings
Browse files Browse the repository at this point in the history
  • Loading branch information
wlsnmrk committed Jan 21, 2025
1 parent 8c8d7c2 commit 24fd0b7
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Chickensoft.Log.Tests/Chickensoft.Log.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>
Expand Down
1 change: 1 addition & 0 deletions Chickensoft.Log.Tests/test/src/FakeMethodBase.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
namespace Chickensoft.Log.Tests;

using System;
using System.Globalization;
using System.Reflection;

Expand Down
1 change: 1 addition & 0 deletions Chickensoft.Log.Tests/test/src/FakeType.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
namespace Chickensoft.Log.Tests;

using System;
using System.Globalization;
using System.Reflection;

Expand Down
2 changes: 2 additions & 0 deletions Chickensoft.Log.Tests/test/src/MultiLogTest.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
namespace Chickensoft.Log.Tests;

using System.Collections.Generic;
using System.Linq;
using Moq;
using Shouldly;

Expand Down
2 changes: 2 additions & 0 deletions Chickensoft.Log.Tests/test/src/TestException.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
namespace Chickensoft.Log.Tests;

using System;

internal sealed class TestException : Exception {
public TestException() { }
public TestException(string msg) : base(msg) { }
Expand Down
1 change: 1 addition & 0 deletions Chickensoft.Log/Chickensoft.Log.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<LangVersion>preview</LangVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<CopyAllFiles>true</CopyAllFiles>
<RootNamespace>Chickensoft.Log</RootNamespace>
Expand Down

0 comments on commit 24fd0b7

Please sign in to comment.