Skip to content
Open
Changes from all commits
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
2 changes: 1 addition & 1 deletion build/Build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageReference Include="ModularPipelines" Version="2.48.30"/>
<PackageReference Include="ModularPipelines.Git" Version="2.48.30"/>
<PackageReference Include="ModularPipelines.GitHub" Version="2.48.30"/>
Comment on lines 11 to 13
Copy link

Copilot AI Jan 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This update creates a version mismatch between ModularPipelines packages. ModularPipelines.DotNet is being updated to v3.0.1, while the core ModularPipelines package and other extensions (ModularPipelines.Git, ModularPipelines.GitHub) remain at v2.48.30.

According to the v3.0.0 release notes, this is a major version with significant breaking changes including:

  • New builder pattern replacing PipelineHostBuilder.Create()
  • Changed interfaces (IPipelineContext renamed to IModuleContext)
  • Modified module API and configuration approach

All ModularPipelines packages should be updated to v3.x together to maintain compatibility. Mixing v2 and v3 packages can lead to runtime errors, API mismatches, and unexpected behavior.

Suggested change
<PackageReference Include="ModularPipelines" Version="2.48.30"/>
<PackageReference Include="ModularPipelines.Git" Version="2.48.30"/>
<PackageReference Include="ModularPipelines.GitHub" Version="2.48.30"/>
<PackageReference Include="ModularPipelines" Version="3.0.1"/>
<PackageReference Include="ModularPipelines.Git" Version="3.0.1"/>
<PackageReference Include="ModularPipelines.GitHub" Version="3.0.1"/>

Copilot uses AI. Check for mistakes.
<PackageReference Include="ModularPipelines.DotNet" Version="2.48.30"/>
<PackageReference Include="ModularPipelines.DotNet" Version="3.0.1"/>
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4"/>
<PackageReference Include="Microsoft.VisualStudio.SolutionPersistence" Version="1.0.52"/>
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="10.0.0"/>
Expand Down
Loading