1 implementation of TargetRelativePath
Microsoft.TemplateEngine.Core (1)
FileChange.cs (1)
20public string TargetRelativePath { get; }
4 references to TargetRelativePath
Microsoft.TemplateEngine.Cli (4)
PostActionProcessors\PostActionProcessorBase.cs (1)
44results.Add(Path.GetFullPath(change.TargetRelativePath, outputBasePath));
TemplateInvoker.cs (3)
209foreach (IFileChange change in instantiateResult.CreationEffects.FileChanges.OrderBy(fc => fc.TargetRelativePath, StringComparer.Ordinal)) 211Reporter.Output.WriteLine($" {GetChangeString(change.ChangeKind)}: {AdjustReportedPath(change.TargetRelativePath)}"); 286Reporter.Error.WriteLine(($" {GetChangeString(change.ChangeKind)}".PadRight(padLen) + AdjustReportedPath(change.TargetRelativePath)).Bold().Red());