18 instantiations of Muxer
dotnet (15)
CommandFactory\CommandResolution\AppBaseDllCommandResolver.cs (1)
29new Muxer().MuxerPath,
CommandFactory\CommandResolution\MuxerCommandResolver.cs (1)
15var muxer = new Muxer();
CommandFactory\CommandResolution\MuxerCommandSpecMaker.cs (1)
26var host = new Muxer().MuxerPath;
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)
127FileName = new Muxer().MuxerPath,
Commands\New\NewCommandParser.cs (1)
133{ "RuntimeFrameworkVersion", new Muxer().SharedFxVersion },
Commands\NuGet\NuGetCommand.cs (1)
87return new Muxer().MuxerPath;
Commands\Run\CSharpCompilerCommand.cs (1)
86Environment.SetEnvironmentVariable("DOTNET_HOST_PATH", new Muxer().MuxerPath);
Commands\Run\RunCommand.cs (1)
663command.EnvironmentVariable(rootVariableName, Path.GetDirectoryName(new Muxer().MuxerPath));
Commands\Test\MTP\TestApplication.cs (1)
164processStartInfo.Environment[Module.DotnetRootArchVariableName] = Path.GetDirectoryName(new Muxer().MuxerPath);
Commands\Test\MTP\TestModulesFilterHandler.cs (1)
59var muxerPath = new Muxer().MuxerPath;
Commands\Test\VSTest\VSTestForwardingApp.cs (1)
50["VSTEST_DOTNET_ROOT_PATH"] = Path.GetDirectoryName(new Muxer().MuxerPath),
MsbuildProject.cs (1)
189Environment.SetEnvironmentVariable("DOTNET_HOST_PATH", new Muxer().MuxerPath);
Microsoft.DotNet.Cli.Utils (3)
BuiltInCommand.cs (1)
72ProcessStartInfo startInfo = new(new Muxer().MuxerPath, $"{CommandName} {CommandArgs}");
ForwardingAppImplementation.cs (1)
96private string GetHostExeName() => new Muxer().MuxerPath;
MSBuildForwardingAppWithoutLogging.cs (1)
212return new Muxer().MuxerPath;
6 references to Muxer
dotnet (5)
CommandFactory\CommandResolution\MuxerCommandResolver.cs (2)
13if (commandResolverArguments.CommandName == Muxer.MuxerName) 15var 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");