1 implementation of PrimaryOutputs
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (1)
CreationResult.cs (1)
18public IReadOnlyList<ICreationPath> PrimaryOutputs { get; }
5 references to PrimaryOutputs
dotnet (5)
Commands\New\PostActions\DotnetRestorePostActionProcessor.cs (2)
26if (templateCreationResult.PrimaryOutputs.Count == 0) 31targetFiles = templateCreationResult.PrimaryOutputs.Select(output => Path.GetFullPath(output.Path, outputBasePath));
Commands\New\PostActions\DotnetSlnPostActionProcessor.cs (3)
62if (templateCreationResult.PrimaryOutputs.Count <= index || index < 0) 67filesToAdd.Add(Path.GetFullPath(templateCreationResult.PrimaryOutputs[index].Path, outputBasePath)); 80foreach (string pathString in templateCreationResult.PrimaryOutputs.Select(x => x.Path))