Skip to content

Commit a44289c

Browse files
dependency updates, global usings in csproj
1 parent 413e6fb commit a44289c

11 files changed

Lines changed: 56 additions & 43 deletions

File tree

Directory.Build.props

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,16 @@
1717
<NuGetAuditMode>direct</NuGetAuditMode>
1818

1919
</PropertyGroup>
20+
21+
<ItemGroup>
22+
<Using Include="System" />
23+
<Using Include="System.Collections.Generic" />
24+
<Using Include="System.Globalization" />
25+
<Using Include="System.IO" />
26+
<Using Include="System.Linq" />
27+
<Using Include="System.Text" />
28+
<Using Include="System.Text.Json.Serialization" />
29+
<Using Include="System.Threading" />
30+
</ItemGroup>
31+
2032
</Project>

LightWeight.AdoNet.DbConnection/Global.cs

Lines changed: 0 additions & 9 deletions
This file was deleted.

LightWeight.AdoNet.DbConnection/LightWeight.AdoNet.DbConnection.csproj

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,21 @@
1010
<Configurations>Debug;Release</Configurations>
1111
</PropertyGroup>
1212

13+
<ItemGroup>
14+
<Using Include="System.Data" />
15+
<Using Include="System.Data.Common" />
16+
<Using Include="System.Transactions" />
17+
<Using Include="FizzCode.LightWeight.Configuration" />
18+
<Using Include="Microsoft.Extensions.Configuration" />
19+
</ItemGroup>
20+
1321
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
1422
<DefineConstants>DEBUG</DefineConstants>
1523
</PropertyGroup>
1624

1725
<ItemGroup>
18-
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.6" />
19-
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.13.1">
26+
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.9" />
27+
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.14.1">
2028
<PrivateAssets>all</PrivateAssets>
2129
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2230
</PackageReference>

LightWeight.Configuration/Global.cs

Lines changed: 0 additions & 3 deletions
This file was deleted.

LightWeight.Configuration/LightWeight.Configuration.csproj

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,24 @@
1010
<Configurations>Debug;Release</Configurations>
1111
</PropertyGroup>
1212

13+
<ItemGroup>
14+
<Using Include="System" />
15+
<Using Include="System.Data" />
16+
<Using Include="Microsoft.Extensions.Configuration" />
17+
</ItemGroup>
18+
1319
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
1420
<DefineConstants>DEBUG</DefineConstants>
1521
</PropertyGroup>
1622

1723
<ItemGroup>
18-
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.6" />
19-
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.6" />
20-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.6" />
21-
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.13.1">
24+
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.9" />
25+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.9" />
26+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.9" />
27+
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.14.1">
2228
<PrivateAssets>all</PrivateAssets>
2329
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2430
</PackageReference>
2531
</ItemGroup>
2632

27-
</Project>
33+
</Project>

LightWeight.MsTest/Global.cs

Lines changed: 0 additions & 4 deletions
This file was deleted.

LightWeight.MsTest/LightWeight.MsTest.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,17 @@
1010
<Configurations>Debug;Release</Configurations>
1111
</PropertyGroup>
1212

13+
<ItemGroup>
14+
<Using Include="Microsoft.VisualStudio.TestTools.UnitTesting" />
15+
</ItemGroup>
16+
1317
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
1418
<DefineConstants>DEBUG</DefineConstants>
1519
</PropertyGroup>
1620

1721
<ItemGroup>
18-
<PackageReference Include="MSTest.TestFramework" Version="3.9.3" />
19-
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.13.1">
22+
<PackageReference Include="MSTest.TestFramework" Version="3.11.0" />
23+
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.14.1">
2024
<PrivateAssets>all</PrivateAssets>
2125
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2226
</PackageReference>

LightWeight/Global.cs

Lines changed: 0 additions & 12 deletions
This file was deleted.

LightWeight/LightWeight.csproj

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,20 @@
1010
<Configurations>Debug;Release</Configurations>
1111
</PropertyGroup>
1212

13+
<ItemGroup>
14+
<Using Include="System.Diagnostics" />
15+
<Using Include="System.Diagnostics.CodeAnalysis" />
16+
<Using Include="System.Reflection" />
17+
<Using Include="System.Security" />
18+
<Using Include="System.Text.RegularExpressions" />
19+
</ItemGroup>
20+
1321
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
1422
<DefineConstants>DEBUG</DefineConstants>
1523
</PropertyGroup>
1624

1725
<ItemGroup>
18-
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.13.1">
26+
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.14.1">
1927
<PrivateAssets>all</PrivateAssets>
2028
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2129
</PackageReference>

Tests/LightWeight.AdoNet.Tests/Global.cs

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)