22 references to Module
dotnet (22)
Commands\Test\MTP\TestApplication.cs (22)
134FileName = Module.RunProperties.Command, 142if (!string.IsNullOrEmpty(Module.RunProperties.WorkingDirectory)) 144processStartInfo.WorkingDirectory = Module.RunProperties.WorkingDirectory; 147if (Module.LaunchSettings is ProjectLaunchProfile) 149foreach (var entry in Module.LaunchSettings.EnvironmentVariables) 155!string.IsNullOrEmpty(Module.LaunchSettings.CommandLineArgs)) 157processStartInfo.Arguments = $"{processStartInfo.Arguments} {Module.LaunchSettings.CommandLineArgs}"; 167if (Module.DotnetRootArchVariableName is not null) 169processStartInfo.Environment[Module.DotnetRootArchVariableName] = Path.GetDirectoryName(new Muxer().MuxerPath); 185StringBuilder builder = new(Module.RunProperties.Arguments); 392if (!string.IsNullOrEmpty(Module.RunProperties.Command)) 394builder.Append($"{ProjectProperties.RunCommand}: {Module.RunProperties.Command}"); 397if (!string.IsNullOrEmpty(Module.RunProperties.Arguments)) 399builder.Append($"{ProjectProperties.RunArguments}: {Module.RunProperties.Arguments}"); 402if (!string.IsNullOrEmpty(Module.RunProperties.WorkingDirectory)) 404builder.Append($"{ProjectProperties.RunWorkingDirectory}: {Module.RunProperties.WorkingDirectory}"); 407if (!string.IsNullOrEmpty(Module.ProjectFullPath)) 409builder.Append($"{ProjectProperties.ProjectFullPath}: {Module.ProjectFullPath}"); 412if (!string.IsNullOrEmpty(Module.TargetFramework)) 414builder.Append($"{ProjectProperties.TargetFramework} : {Module.TargetFramework}"); 446messageBuilder.AppendLine($"RunCommand: {Module.RunProperties.Command}"); 447messageBuilder.AppendLine($"RunArguments: {Module.RunProperties.Arguments}");