18 references to MuxerPath
dotnet (14)
CommandFactory\CommandResolution\AppBaseDllCommandResolver.cs (1)
29
new Muxer().
MuxerPath
,
CommandFactory\CommandResolution\DepsJsonCommandResolver.cs (1)
194
return new CommandSpec(_muxer.
MuxerPath
, escapedArgString);
CommandFactory\CommandResolution\MuxerCommandResolver.cs (1)
20
return new CommandSpec(muxer.
MuxerPath
, escapedArgs);
CommandFactory\CommandResolution\MuxerCommandSpecMaker.cs (1)
20
var host = muxer.
MuxerPath
;
CommandFactory\CommandResolution\PackagedCommandSpecFactory.cs (1)
125
string host = muxer.
MuxerPath
;
CommandFactory\CommandResolution\PublishPathCommandSpecFactory.cs (1)
54
var host = muxer.
MuxerPath
;
Commands\Clean\FileBasedAppArtifacts\CleanFileBasedAppArtifactsCommand.cs (1)
126
FileName = new Muxer().
MuxerPath
,
Commands\NuGet\NuGetCommand.cs (1)
53
return new Muxer().
MuxerPath
;
Commands\Run\CSharpCompilerCommand.cs (1)
76
Environment.SetEnvironmentVariable("DOTNET_HOST_PATH", new Muxer().
MuxerPath
);
Commands\Run\RunCommand.cs (1)
462
command.EnvironmentVariable(rootVariableName, Path.GetDirectoryName(new Muxer().
MuxerPath
));
Commands\Test\MTP\TestApplication.cs (1)
122
processStartInfo.Environment[Module.DotnetRootArchVariableName] = Path.GetDirectoryName(new Muxer().
MuxerPath
);
Commands\Test\MTP\TestModulesFilterHandler.cs (1)
49
var muxerPath = new Muxer().
MuxerPath
;
Commands\Test\VSTest\VSTestForwardingApp.cs (1)
50
["VSTEST_DOTNET_ROOT_PATH"] = Path.GetDirectoryName(new Muxer().
MuxerPath
),
MsbuildProject.cs (1)
212
Environment.SetEnvironmentVariable("DOTNET_HOST_PATH", new Muxer().
MuxerPath
);
Microsoft.DotNet.Cli.Utils (3)
BuiltInCommand.cs (1)
74
ProcessStartInfo startInfo = new(new Muxer().
MuxerPath
, $"{CommandName} {CommandArgs}");
ForwardingAppImplementation.cs (1)
96
private string GetHostExeName() => new Muxer().
MuxerPath
;
MSBuildForwardingAppWithoutLogging.cs (1)
219
return new Muxer().
MuxerPath
;
Microsoft.DotNet.Cli.Utils.Tests (1)
BuiltInCommandTests.cs (1)
24
Assert.Equal(new Muxer().
MuxerPath
, result.StartInfo.FileName);