4 instantiations of RunProperties
dotnet (4)
Commands\Run\RunProperties.cs (1)
24var result = new RunProperties(
Commands\Test\MTP\SolutionAndProjectUtility.cs (1)
327runProperties = new RunProperties(
Commands\Test\MTP\TestModulesFilterHandler.cs (2)
56? new RunProperties(muxerPath, $@"exec ""{testModule}""", null) 57: new RunProperties(testModule, null, null);
16 references to RunProperties
dotnet (16)
Commands\Run\RunCommand.cs (6)
126RunProperties? cachedRunProperties = null; 304private void EnsureProjectIsBuilt(out Func<ProjectCollection, ProjectInstance>? projectFactory, out RunProperties? cachedRunProperties, out VirtualProjectBuildingCommand? virtualCommand) 384internal ICommand GetTargetCommand(Func<ProjectCollection, ProjectInstance>? projectFactory, RunProperties? cachedRunProperties) 409var runProperties = RunProperties.FromProject(project).WithApplicationArguments(ApplicationArgs); 438static ICommand CreateCommandFromRunProperties(RunProperties runProperties)
Commands\Run\RunProperties.cs (3)
22internal static RunProperties FromProject(ProjectInstance project) 24var result = new RunProperties( 40internal RunProperties WithApplicationArguments(string[] applicationArgs)
Commands\Run\VirtualProjectBuildingCommand.cs (2)
356cache.CurrentEntry.Run = RunProperties.FromProject(buildRequest.ProjectInstance); 2013public RunProperties? Run { get; set; }
Commands\Test\MTP\Models.cs (1)
114internal sealed record TestModule(RunProperties RunProperties, string? ProjectFullPath, string? TargetFramework, bool IsTestingPlatformApplication, ProjectLaunchSettingsModel? LaunchSettings, string TargetPath, string? DotnetRootArchVariableName);
Commands\Test\MTP\SolutionAndProjectUtility.cs (3)
305RunProperties runProperties; 348static RunProperties GetRunProperties(ProjectInstance project) 362return RunProperties.FromProject(project);
Commands\Test\MTP\TestModulesFilterHandler.cs (1)
55RunProperties runProperties = testModule.HasExtension(CliConstants.DLLExtension)