22 references to Module
dotnet (22)
Commands\Test\MTP\TestApplication.cs (22)
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}"; 193if (Module.DotnetRootArchVariableName is not null) 195processStartInfo.Environment[Module.DotnetRootArchVariableName] = Path.GetDirectoryName(new Muxer().MuxerPath); 211StringBuilder builder = new(Module.RunProperties.Arguments); 541if (!string.IsNullOrEmpty(Module.RunProperties.Command)) 543builder.Append($"{ProjectProperties.RunCommand}: {Module.RunProperties.Command}"); 546if (!string.IsNullOrEmpty(Module.RunProperties.Arguments)) 548builder.Append($"{ProjectProperties.RunArguments}: {Module.RunProperties.Arguments}"); 551if (!string.IsNullOrEmpty(Module.RunProperties.WorkingDirectory)) 553builder.Append($"{ProjectProperties.RunWorkingDirectory}: {Module.RunProperties.WorkingDirectory}"); 556if (!string.IsNullOrEmpty(Module.ProjectFullPath)) 558builder.Append($"{ProjectProperties.ProjectFullPath}: {Module.ProjectFullPath}"); 561if (!string.IsNullOrEmpty(Module.TargetFramework)) 563builder.Append($"{ProjectProperties.TargetFramework} : {Module.TargetFramework}"); 595messageBuilder.AppendLine($"RunCommand: {Module.RunProperties.Command}"); 596messageBuilder.AppendLine($"RunArguments: {Module.RunProperties.Arguments}");