Enable implicit usings in test project (#266)

* use global usings
* cleanup usings
This commit is contained in:
Marko Lahma
2025-03-27 20:16:06 +02:00
committed by GitHub
parent b9372c8d7e
commit 2e6687a60d
683 changed files with 382 additions and 1423 deletions

View File

@@ -23,10 +23,18 @@
<IsPackable>false</IsPackable>
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Using Include="Common.Logging" />
<Using Include="Common.Logging.ILog" Alias="ILog" />
<Using Include="Common.Logging.LogManager" Alias="LogManager" />
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugType>Full</DebugType>
<DefineConstants>DEBUG;TRACE;$(DefineConstants)</DefineConstants>