Add ProductVersionSuffix to workload manifest names#79184
Add ProductVersionSuffix to workload manifest names#79184steveisok wants to merge 2 commits intodotnet:mainfrom
Conversation
This change adds a prerelease label to workload manifests so that they can sit beside official ones in the dotnet sdk. For example, `Microsoft.NET.Workload.Mono.ToolChain.net7.Manifest-8.0.100-alpha.1` could install beside `Microsoft.NET.Workload.Mono.ToolChain.net7.Manifest-8.0.100`. Fixes dotnet#79086
|
Tagging subscribers to this area: @directhex Issue DetailsThis change adds a prerelease label to workload manifests so that they can sit beside official ones in the dotnet sdk. For example, Fixes #79086
|
|
https://github.com/steveisok/runtime/blob/ef16a86d343e15c6ac67c5bb3eef47ff9fc1db68/eng/testing/tests.wasm.targets#L337-L338 .. need to depend on With this, it fails to find Emscripten manifest for that What is the intended behavior here w.r.t the sdk band used for any dependency manifests? |
I'll try removing the target and see if we get what we expect. I was trying to match what the installer subset was doing. |
This change adds a prerelease label to workload manifests so that they can sit beside official ones in the dotnet sdk. For example,
Microsoft.NET.Workload.Mono.ToolChain.net7.Manifest-8.0.100-alpha.1could install alongsideMicrosoft.NET.Workload.Mono.ToolChain.net7.Manifest-8.0.100and not cause conflicts.Fixes #79086