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