22 references to Module
dotnet (22)
Commands\Test\MTP\TestApplication.cs (22)
129FileName = Module.RunProperties.Command, 137if (!string.IsNullOrEmpty(Module.RunProperties.WorkingDirectory)) 139processStartInfo.WorkingDirectory = Module.RunProperties.WorkingDirectory; 142if (Module.LaunchSettings is ProjectLaunchProfile) 144foreach (var entry in Module.LaunchSettings.EnvironmentVariables) 156!string.IsNullOrEmpty(Module.LaunchSettings.CommandLineArgs)) 158processStartInfo.Arguments = $"{processStartInfo.Arguments} {Module.LaunchSettings.CommandLineArgs}"; 162if (Module.DotnetRootArchVariableName is not null) 164processStartInfo.Environment[Module.DotnetRootArchVariableName] = Path.GetDirectoryName(new Muxer().MuxerPath); 180StringBuilder builder = new(Module.RunProperties.Arguments); 373if (!string.IsNullOrEmpty(Module.RunProperties.Command)) 375builder.Append($"{ProjectProperties.RunCommand}: {Module.RunProperties.Command}"); 378if (!string.IsNullOrEmpty(Module.RunProperties.Arguments)) 380builder.Append($"{ProjectProperties.RunArguments}: {Module.RunProperties.Arguments}"); 383if (!string.IsNullOrEmpty(Module.RunProperties.WorkingDirectory)) 385builder.Append($"{ProjectProperties.RunWorkingDirectory}: {Module.RunProperties.WorkingDirectory}"); 388if (!string.IsNullOrEmpty(Module.ProjectFullPath)) 390builder.Append($"{ProjectProperties.ProjectFullPath}: {Module.ProjectFullPath}"); 393if (!string.IsNullOrEmpty(Module.TargetFramework)) 395builder.Append($"{ProjectProperties.TargetFramework} : {Module.TargetFramework}"); 427messageBuilder.AppendLine($"RunCommand: {Module.RunProperties.Command}"); 428messageBuilder.AppendLine($"RunArguments: {Module.RunProperties.Arguments}");