-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Check for Muxer path relative to base directory #47664
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR enhances the muxer path resolution logic by first checking a directory relative to the app base directory before falling back to the existing best-effort search.
- Introduces a new constructor for Muxer to compute the path based on the app’s base directory.
- Retains fallback logic if the computed muxer path is not found.
Comments suppressed due to low confidence (1)
src/Cli/Microsoft.DotNet.Cli.Utils/Muxer.cs:38
- [nitpick] Consider adding unit tests to validate that the muxer path is correctly determined based on the app base directory across different directory structures and scenarios.
public Muxer()
The sdk-unified-build failure is known/unrelated: #47580 (comment), dotnet/source-build#4952 Can we merge on red? |
FYI @dotnet/distro-maintainers |
Hi folks! On Linux/macOS, there is also a file called |
cc @elinor-fung thoughts? |
This isn't used by the
|
When determining the muxer (
dotnet
) path, search relative to the app base directory first. In most scenarios, this should correspond to thedotnet.dll
directory of<root>/sdk/<version>
where thedotnet
executable is under<root>
. If it doesn't exist, fall back to the existing logic.With custom SDK search paths in global.json (dotnet/runtime#113512), the running
dotnet
process may not be the same as that corresponding to the running SDK. This updated logic finds thedotnet
corresponding to the running SDK such that it can be properly propagated to anything launched via SDK commands (for example,build
).Part of https://github.com/dotnet/designs/blob/main/proposed/local-sdk-global-json.md.
Contributes to #8254
cc @dotnet/appmodel @jaredpar @rainersigwald