Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Lock Microsoft.CodeAnalysis package versions to 4.14.0 for compatibility
- Updated dependabot.yml to ignore major and minor updates for Microsoft.CodeAnalysis packages.
- Adjusted `Directory.Packages.props` to explicitly lock Microsoft.CodeAnalysis.Analyzers, Microsoft.CodeAnalysis.CSharp, and Microsoft.CodeAnalysis.Common versions to 4.14.0.
- Removed previously referenced 5.x versions of these packages for consistency.
  • Loading branch information
AnnaSasDev committed Dec 8, 2025
commit cde3964a14e43b8823d4a812a8a2eba215f304da
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ updates:
commit-message:
prefix: "Chore(deps): "
include: "scope"
ignore:
- dependency-name: "Microsoft.CodeAnalysis.Analyzers"
update-types: ["version-update:semver-major", "version-update:semver-minor"]
- dependency-name: "Microsoft.CodeAnalysis.CSharp"
update-types: ["version-update:semver-major", "version-update:semver-minor"]
- dependency-name: "Microsoft.CodeAnalysis.Common"
update-types: ["version-update:semver-major", "version-update:semver-minor"]

- package-ecosystem: "npm"
directory: "/"
Expand Down
1 change: 1 addition & 0 deletions CodeOfChaos.Extensions.slnx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<Project Path="src/Tools.CodeOfChaos.Extensions/Tools.CodeOfChaos.Extensions.csproj" />
</Folder>
<Folder Name="/.dev-tools/github/">
<File Path=".github/dependabot.yml" />
<File Path=".github/workflows/onPullRequest-TestDotnet.yml" />
<File Path=".github/workflows/release.yml" />
<File Path=".github/workflows/workflow-todo.yml" />
Expand Down
7 changes: 4 additions & 3 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@
<PackageVersion Include="FluentValidation" Version="12.1.0" />
<PackageVersion Include="IsExternalInit" Version="1.0.3" />
<PackageVersion Include="JetBrains.Annotations" Version="2025.2.4" />
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="5.0.0-1.25277.114" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="5.0.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.Common" Version="5.0.0" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
<PackageVersion Include="Microsoft.Extensions.ObjectPool" Version="10.0.0" />
Expand All @@ -39,5 +36,9 @@
<PackageVersion Include="Serilog.Sinks.Console" Version="6.1.1" />
<PackageVersion Include="TUnit" Version="1.5.6" />
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
<!-- DO NOT UPDATE: Microsoft.CodeAnalysis packages locked at 4.14.0 due to compatibility requirements -->
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="[4.14.0,4.15.0)"/>
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="[4.14.0,4.15.0)" />
<PackageVersion Include="Microsoft.CodeAnalysis.Common" Version="[4.14.0,4.15.0)" />
</ItemGroup>
</Project>
Loading