20 instantiations of Muxer
dotnet (16)
CommandFactory\CommandResolution\AppBaseDllCommandResolver.cs (1)
29new Muxer().MuxerPath,
CommandFactory\CommandResolution\DepsJsonCommandResolver.cs (1)
25: this(new Muxer(), nugetPackageRoot) { }
CommandFactory\CommandResolution\MuxerCommandResolver.cs (1)
17var muxer = new Muxer();
CommandFactory\CommandResolution\MuxerCommandSpecMaker.cs (1)
18var muxer = new Muxer();
CommandFactory\CommandResolution\PackagedCommandSpecFactory.cs (1)
123var muxer = new Muxer();
CommandFactory\CommandResolution\PackagedCommandSpecFactoryWithCliRuntime.cs (1)
31var muxer = new Muxer();
CommandFactory\CommandResolution\PublishPathCommandSpecFactory.cs (1)
52var muxer = new Muxer();
Commands\Clean\FileBasedAppArtifacts\CleanFileBasedAppArtifactsCommand.cs (1)
126FileName = new Muxer().MuxerPath,
Commands\New\NewCommandParser.cs (1)
170{ "RuntimeFrameworkVersion", new Muxer().SharedFxVersion },
Commands\NuGet\NuGetCommand.cs (1)
53return new Muxer().MuxerPath;
Commands\Run\CSharpCompilerCommand.cs (1)
76Environment.SetEnvironmentVariable("DOTNET_HOST_PATH", new Muxer().MuxerPath);
Commands\Run\RunCommand.cs (1)
462command.EnvironmentVariable(rootVariableName, Path.GetDirectoryName(new Muxer().MuxerPath));
Commands\Test\MTP\TestApplication.cs (1)
122processStartInfo.Environment[Module.DotnetRootArchVariableName] = Path.GetDirectoryName(new Muxer().MuxerPath);
Commands\Test\MTP\TestModulesFilterHandler.cs (1)
49var muxerPath = new Muxer().MuxerPath;
Commands\Test\VSTest\VSTestForwardingApp.cs (1)
50["VSTEST_DOTNET_ROOT_PATH"] = Path.GetDirectoryName(new Muxer().MuxerPath),
MsbuildProject.cs (1)
212Environment.SetEnvironmentVariable("DOTNET_HOST_PATH", new Muxer().MuxerPath);
Microsoft.DotNet.Cli.Utils (3)
BuiltInCommand.cs (1)
74ProcessStartInfo startInfo = new(new Muxer().MuxerPath, $"{CommandName} {CommandArgs}");
ForwardingAppImplementation.cs (1)
96private string GetHostExeName() => new Muxer().MuxerPath;
MSBuildForwardingAppWithoutLogging.cs (1)
219return new Muxer().MuxerPath;
Microsoft.DotNet.Cli.Utils.Tests (1)
BuiltInCommandTests.cs (1)
24Assert.Equal(new Muxer().MuxerPath, result.StartInfo.FileName);
9 references to Muxer
dotnet (8)
CommandFactory\CommandResolution\DepsJsonCommandResolver.cs (2)
12public class DepsJsonCommandResolver(Muxer muxer, string nugetPackageRoot) : ICommandResolver 22private readonly Muxer _muxer = muxer;
CommandFactory\CommandResolution\MuxerCommandResolver.cs (2)
15if (commandResolverArguments.CommandName == Muxer.MuxerName) 17var muxer = new Muxer();
CommandFactory\CommandResolution\MuxerCommandSpecMaker.cs (1)
18var muxer = new Muxer();
CommandFactory\CommandResolution\PackagedCommandSpecFactory.cs (1)
123var muxer = new Muxer();
CommandFactory\CommandResolution\PackagedCommandSpecFactoryWithCliRuntime.cs (1)
31var muxer = new Muxer();
CommandFactory\CommandResolution\PublishPathCommandSpecFactory.cs (1)
52var muxer = new Muxer();
Microsoft.DotNet.Cli.Utils (1)
FrameworkDependencyFile.cs (1)
21_depsFilePath = Muxer.GetDataFromAppDomain("FX_DEPS_FILE");