Skip to content

Commit 725361c

Browse files
committed
Feat: Update dependencies and remove unused extension file
1 parent cbb2ffc commit 725361c

File tree

10 files changed

+13
-27
lines changed

10 files changed

+13
-27
lines changed

src/CodeOfChaos.CliArgsParser.Generators/CodeOfChaos.CliArgsParser.Generators.csproj

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,12 @@
3838
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3939
</PackageReference>
4040
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0" />
41-
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0" PrivateAssets="all" />
42-
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.13.0" PrivateAssets="all" />
43-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.13.0" PrivateAssets="all" />
44-
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.8.0" Pack="true" GeneratePathProperty="true" PrivateAssets="all" />
41+
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="4.14.0" PrivateAssets="all" />
42+
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.14.0" PrivateAssets="all" />
43+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" PrivateAssets="all" />
44+
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.10.0" Pack="true" GeneratePathProperty="true" PrivateAssets="all" />
4545
</ItemGroup>
46+
4647
<ItemGroup>
4748
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
4849
<None Include="$(PkgCodeOfChaos_GeneratorTools)\lib\netstandard2.0\*.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />

src/CodeOfChaos.CliArgsParser.Generators/CommandGenerator.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
using CodeOfChaos.GeneratorTools;
66
using Microsoft.CodeAnalysis;
77
using Microsoft.CodeAnalysis.CSharp.Syntax;
8-
using System;
98
using System.Collections.Immutable;
109
using System.Linq;
1110
using System.Threading;

src/CodeOfChaos.CliArgsParser.Generators/Helpers/ITypeSymvolExtensions.cs

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

src/CodeOfChaos.CliArgsParser.Generators/Helpers/StringCaseExtensios.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// ---------------------------------------------------------------------------------------------------------------------
22
// Imports
33
// ---------------------------------------------------------------------------------------------------------------------
4+
using CodeOfChaos.GeneratorTools;
45
using System;
56
using System.Diagnostics.CodeAnalysis;
67
using System.Text.RegularExpressions;

src/CodeOfChaos.CliArgsParser.Generators/ParameterDto.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
// Imports
33
// ---------------------------------------------------------------------------------------------------------------------
44
using CodeOfChaos.CliArgsParser.Generators.Helpers;
5+
using CodeOfChaos.GeneratorTools;
56
using JetBrains.Annotations;
67
using Microsoft.CodeAnalysis;
78
using Microsoft.CodeAnalysis.CSharp.Syntax;
8-
using System;
99
using System.Collections.Immutable;
1010
using System.Linq;
1111

src/CodeOfChaos.CliArgsParser.Library/CodeOfChaos.CliArgsParser.Library.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<ProjectReference Include="..\CodeOfChaos.CliArgsParser\CodeOfChaos.CliArgsParser.csproj" />
3535

3636
<!-- Ugly, but this is because of some weirdness with how analyzers are imported through a project reference -->
37-
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.8.0" GeneratePathProperty="true" PrivateAssets="all" />
37+
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.10.0" GeneratePathProperty="true" PrivateAssets="all" />
3838
<Analyzer Include="$(PkgCodeOfChaos_GeneratorTools)\lib\netstandard2.0\*.dll" />
3939
</ItemGroup>
4040

src/CodeOfChaos.CliArgsParser/CodeOfChaos.CliArgsParser.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
</ItemGroup>
3333

3434
<ItemGroup>
35-
<PackageReference Include="CodeOfChaos.Extensions" Version="0.66.1" />
35+
<PackageReference Include="CodeOfChaos.Extensions" Version="0.67.0" />
3636
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.5" />
3737
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.5" />
3838
</ItemGroup>

src/Sample.CodeOfChaos.CliArgsParser/Sample.CodeOfChaos.CliArgsParser.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<ProjectReference Include="..\CodeOfChaos.CliArgsParser\CodeOfChaos.CliArgsParser.csproj"/>
1212

1313
<!-- Ugly, but this is because of some weirdness with how analyzers are imported through a project reference -->
14-
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.8.0" GeneratePathProperty="true" PrivateAssets="all" />
14+
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.10.0" GeneratePathProperty="true" PrivateAssets="all" />
1515
<Analyzer Include="$(PkgCodeOfChaos_GeneratorTools)\lib\netstandard2.0\*.dll"/>
1616
</ItemGroup>
1717

src/Tools.CodeOfChaos.CliArgsParser/Tools.CodeOfChaos.CliArgsParser.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<ProjectReference Include="..\CodeOfChaos.CliArgsParser\CodeOfChaos.CliArgsParser.csproj"/>
1818

1919
<!-- Ugly, but this is because of some weirdness with how analyzers are imported through a project reference -->
20-
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.8.0" GeneratePathProperty="true" PrivateAssets="all" />
20+
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.10.0" GeneratePathProperty="true" PrivateAssets="all" />
2121
<Analyzer Include="$(PkgCodeOfChaos_GeneratorTools)\lib\netstandard2.0\*.dll"/>
2222
</ItemGroup>
2323

tests/Tests.CodeOfChaos.CliArgsParser/Tests.CodeOfChaos.CliArgsParser.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0"/>
1414
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.5" />
1515
<PackageReference Include="Moq" Version="4.20.72"/>
16-
<PackageReference Include="TUnit" Version="0.20.0" />
16+
<PackageReference Include="TUnit" Version="0.20.18" />
1717
<PackageReference Include="Bogus" Version="35.6.3" />
1818
</ItemGroup>
1919

@@ -26,7 +26,7 @@
2626
<ProjectReference Include="..\..\src\CodeOfChaos.CliArgsParser\CodeOfChaos.CliArgsParser.csproj"/>
2727

2828
<!-- Ugly, but this is because of some weirdness with how analyzers are imported through a project reference -->
29-
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.8.0" GeneratePathProperty="true" PrivateAssets="all" />
29+
<PackageReference Include="CodeOfChaos.GeneratorTools" Version="1.10.0" GeneratePathProperty="true" PrivateAssets="all" />
3030
<Analyzer Include="$(PkgCodeOfChaos_GeneratorTools)\lib\netstandard2.0\*.dll"/>
3131
</ItemGroup>
3232

0 commit comments

Comments
 (0)