Incorporate MinorVersionPrefix with multi-TFM #11224
Open
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 describing the changes in this PR
resolves #issue_for_this_pr
Pull request checklist
IMPORTANT: Currently, changes must be backported to the
in-proc
branch to be included in Core Tools and non-Flex deployments.in-proc
branch is not requiredrelease_notes.md
Additional information
This PR impacts only the nuget packages we produce and thus core tools. This is because we build with the
-p:MinorVersionPrefix={Version}
for the windows site extension and linux artifacts, so it has no impact to customer deployed code.What it does:
TODAY
MinorVersionPrefix
in them anywhere at all.WITH THIS CHANGE
.InProc
package suffix.InProc
suffix. CoreTools will see transitive packages shift to the new ID when updating WebHost package to a new version with this change.MinorVersionPrefix
based on TFM into the assembly version details.4.43.100
will contain net8.0 assembly with version4.843.100
and net6.0 assembly with version4.643.100
Microsoft.Azure.WebJobs.Script.dll
because it is not multi-targeted. We will need to make that assembly multi-targeted forScriptHost.Version
to report the correct version.