4 instantiations of RunProperties
dotnet (4)
Commands\Run\RunProperties.cs (1)
25result = 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);
18 references to RunProperties
dotnet (18)
Commands\Run\RunCommand.cs (6)
127RunProperties? cachedRunProperties = null; 305private void EnsureProjectIsBuilt(out Func<ProjectCollection, ProjectInstance>? projectFactory, out RunProperties? cachedRunProperties, out VirtualProjectBuildingCommand? virtualCommand) 385internal ICommand GetTargetCommand(Func<ProjectCollection, ProjectInstance>? projectFactory, RunProperties? cachedRunProperties) 410var runProperties = RunProperties.FromProject(project).WithApplicationArguments(ApplicationArgs); 439static ICommand CreateCommandFromRunProperties(RunProperties runProperties)
Commands\Run\RunProperties.cs (4)
23internal static bool TryFromProject(ProjectInstance project, [NotNullWhen(returnValue: true)] out RunProperties? result) 42internal static RunProperties FromProject(ProjectInstance project) 44if (!TryFromProject(project, out var result)) 52internal RunProperties WithApplicationArguments(string[] applicationArgs)
Commands\Run\VirtualProjectBuildingCommand.cs (3)
357cache.CurrentEntry.Run = RunProperties.TryFromProject(buildRequest.ProjectInstance, out var runProperties) 2064public 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)