Skip to content

Commit 2e6687a

Browse files
authored
Enable implicit usings in test project (#266)
* use global usings * cleanup usings
1 parent b9372c8 commit 2e6687a

File tree

683 files changed

+382
-1423
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

683 files changed

+382
-1423
lines changed

build-support/nuke-build/Build.Publish.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
using System.Collections.Generic;
2-
using System.Linq;
32
using Nuke.Common;
4-
using Nuke.Common.Git;
53
using Nuke.Common.IO;
64
using Nuke.Common.Tooling;
75
using Nuke.Common.Tools.DotNet;

src/Directory.Build.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@
4747

4848
</PropertyGroup>
4949

50+
<ItemGroup>
51+
<Using Include="Common.Logging" />
52+
<Using Include="Common.Logging.ILog" Alias="ILog" />
53+
<Using Include="Common.Logging.LogManager" Alias="LogManager" />
54+
</ItemGroup>
55+
5056
<ItemGroup>
5157
<PackageReference Include="ConfigureAwaitChecker.Analyzer" PrivateAssets="All" />
5258
</ItemGroup>

src/Spring/Spring.Aop/Aop/Framework/Adapter/ThrowsAdviceInterceptor.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
using System.Collections;
2424
using System.Reflection;
2525
using AopAlliance.Intercept;
26-
using Common.Logging;
2726
using Spring.Util;
2827

2928
#endregion

src/Spring/Spring.Aop/Aop/Framework/AutoProxy/AbstractAdvisorAutoProxyCreator.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818

1919
#endregion
2020

21-
using Common.Logging;
22-
2321
using Spring.Core;
2422
using Spring.Objects.Factory;
2523
using Spring.Objects.Factory.Config;

src/Spring/Spring.Aop/Aop/Framework/AutoProxy/AbstractAutoProxyCreator.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
using System.Reflection;
1919

2020
using AopAlliance.Aop;
21-
22-
using Common.Logging;
23-
2421
using Spring.Aop.Framework.Adapter;
2522
using Spring.Aop.Target;
2623
using Spring.Collections;

src/Spring/Spring.Aop/Aop/Framework/AutoProxy/ObjectFactoryAdvisorRetrievalHelper.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818

1919
#endregion
2020

21-
using Common.Logging;
2221
using Spring.Objects.Factory;
2322
using Spring.Objects.Factory.Config;
2423
using Spring.Util;

src/Spring/Spring.Aop/Aop/Framework/AutoProxy/Target/AbstractPrototypeTargetSourceCreator.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020

2121
#region Imports
2222

23-
using Common.Logging;
2423
using Spring.Aop.Target;
2524
using Spring.Objects.Factory;
2625
using Spring.Objects.Factory.Support;

src/Spring/Spring.Aop/Aop/Framework/DynamicProxy/CachedAopProxyFactory.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@
2222

2323
using System.Text;
2424
using System.Collections;
25-
26-
using Common.Logging;
2725
using Spring.Proxy;
2826

2927
#endregion

src/Spring/Spring.Aop/Aop/Framework/ProxyFactoryObject.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818

1919
using AopAlliance.Aop;
2020
using AopAlliance.Intercept;
21-
22-
using Common.Logging;
23-
2421
using Spring.Aop.Framework.Adapter;
2522
using Spring.Aop.Support;
2623
using Spring.Aop.Target;

src/Spring/Spring.Aop/Aop/Support/SdkRegularExpressionMethodPointcut.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
using System.Runtime.Serialization;
1818
using System.Text.RegularExpressions;
19-
using Common.Logging;
2019
using Spring.Util;
2120

2221
namespace Spring.Aop.Support

0 commit comments

Comments
 (0)