1 implementation of ChangeKind
Microsoft.TemplateEngine.Core (1)
FileChange.cs (1)
22
public ChangeKind
ChangeKind
{ get; }
5 references to ChangeKind
Microsoft.TemplateEngine.Cli (4)
TemplateInvoker.cs (4)
211
Reporter.Output.WriteLine($" {GetChangeString(change.
ChangeKind
)}: {AdjustReportedPath(change.TargetRelativePath)}");
280
IReadOnlyList<IFileChange> destructiveChanges = instantiateResult.CreationEffects.FileChanges.Where(x => x.
ChangeKind
!= ChangeKind.Create).ToList();
281
int longestChangeTextLength = destructiveChanges.Max(x => GetChangeString(x.
ChangeKind
).Length);
286
Reporter.Error.WriteLine(($" {GetChangeString(change.
ChangeKind
)}".PadRight(padLen) + AdjustReportedPath(change.TargetRelativePath)).Bold().Red());
Microsoft.TemplateEngine.Edge (1)
Template\TemplateCreator.cs (1)
174
IReadOnlyList<IFileChange> destructiveChanges = changes.Where(x => x.
ChangeKind
!= ChangeKind.Create).ToList();