23 references to Module
dotnet (23)
Commands\Test\MTP\TestApplication.cs (23)
160FileName = Module.RunProperties.Command, 168if (!string.IsNullOrEmpty(Module.RunProperties.WorkingDirectory)) 170processStartInfo.WorkingDirectory = Module.RunProperties.WorkingDirectory; 173if (Module.LaunchSettings is ProjectLaunchProfile) 175foreach (var entry in Module.LaunchSettings.EnvironmentVariables) 181!string.IsNullOrEmpty(Module.LaunchSettings.CommandLineArgs)) 183processStartInfo.Arguments = $"{processStartInfo.Arguments} {Module.LaunchSettings.CommandLineArgs}"; 189foreach (var (name, value) in Module.EnvironmentVariables) 194if (Module.DotnetRootArchVariableName is not null) 196processStartInfo.Environment[Module.DotnetRootArchVariableName] = Path.GetDirectoryName(new Muxer().MuxerPath); 212StringBuilder builder = new(Module.RunProperties.Arguments); 556if (!string.IsNullOrEmpty(Module.RunProperties.Command)) 558builder.Append($"{ProjectProperties.RunCommand}: {Module.RunProperties.Command}"); 561if (!string.IsNullOrEmpty(Module.RunProperties.Arguments)) 563builder.Append($"{ProjectProperties.RunArguments}: {Module.RunProperties.Arguments}"); 566if (!string.IsNullOrEmpty(Module.RunProperties.WorkingDirectory)) 568builder.Append($"{ProjectProperties.RunWorkingDirectory}: {Module.RunProperties.WorkingDirectory}"); 571if (!string.IsNullOrEmpty(Module.ProjectFullPath)) 573builder.Append($"{ProjectProperties.ProjectFullPath}: {Module.ProjectFullPath}"); 576if (!string.IsNullOrEmpty(Module.TargetFramework)) 578builder.Append($"{ProjectProperties.TargetFramework} : {Module.TargetFramework}"); 610messageBuilder.AppendLine($"RunCommand: {Module.RunProperties.Command}"); 611messageBuilder.AppendLine($"RunArguments: {Module.RunProperties.Arguments}");