Add Version tag to DurableExecution.Analyzers csproj#2455
Merged
Conversation
The Analyzers project is grouped with Amazon.Lambda.DurableExecution in .autover/autover.json. AutoVer requires a <Version> tag on every path in a group, so 'autover version' failed the Create Release PR workflow with 'The project Amazon.Lambda.DurableExecution does not have a Version tag.' Add <Version>0.1.2-preview</Version> to match the group's main package.
dscpinheiro
approved these changes
Jul 1, 2026
normj
approved these changes
Jul 1, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue
The Create Release PR workflow fails at the Increment Version step:
Root cause
In
.autover/autover.json,Amazon.Lambda.DurableExecutionis a multi-path group:The
.Analyzersproject (added in #2443) was grouped here but never got a<Version>tag. AutoVer requires one on every path in a group, soautover versionaborts. The error names the group, not the offending file, which is why it's misleading — the main csproj does have a version.Fix
Add
<Version>0.1.2-preview</Version>toAmazon.Lambda.DurableExecution.Analyzers.csprojto match its group's main package. This mirrors the existingAmazon.Lambda.Annotationsgroup, where bothAnnotationsand.SourceGeneratorcarry the same version.No change file is included; the analyzer is bundled inside the existing DurableExecution package (
IsPackable=false) and this is a build-config fix, not a shipped behavior change.