22 references to Module
dotnet (22)
Commands\Test\MTP\TestApplication.cs (22)
86FileName = Module.RunProperties.Command, 94if (!string.IsNullOrEmpty(Module.RunProperties.WorkingDirectory)) 96processStartInfo.WorkingDirectory = Module.RunProperties.WorkingDirectory; 99if (Module.LaunchSettings is not null) 101foreach (var entry in Module.LaunchSettings.EnvironmentVariables) 114!string.IsNullOrEmpty(Module.LaunchSettings.CommandLineArgs)) 116processStartInfo.Arguments = $"{processStartInfo.Arguments} {Module.LaunchSettings.CommandLineArgs}"; 120if (Module.DotnetRootArchVariableName is not null) 122processStartInfo.Environment[Module.DotnetRootArchVariableName] = Path.GetDirectoryName(new Muxer().MuxerPath); 137StringBuilder builder = new(Module.RunProperties.Arguments); 324if (!string.IsNullOrEmpty(Module.RunProperties.Command)) 326builder.Append($"{ProjectProperties.RunCommand}: {Module.RunProperties.Command}"); 329if (!string.IsNullOrEmpty(Module.RunProperties.Arguments)) 331builder.Append($"{ProjectProperties.RunArguments}: {Module.RunProperties.Arguments}"); 334if (!string.IsNullOrEmpty(Module.RunProperties.WorkingDirectory)) 336builder.Append($"{ProjectProperties.RunWorkingDirectory}: {Module.RunProperties.WorkingDirectory}"); 339if (!string.IsNullOrEmpty(Module.ProjectFullPath)) 341builder.Append($"{ProjectProperties.ProjectFullPath}: {Module.ProjectFullPath}"); 344if (!string.IsNullOrEmpty(Module.TargetFramework)) 346builder.Append($"{ProjectProperties.TargetFramework} : {Module.TargetFramework}"); 378messageBuilder.AppendLine($"RunCommand: {Module.RunProperties.Command}"); 379messageBuilder.AppendLine($"RunArguments: {Module.RunProperties.Arguments}");