3 references to FileChanges
Microsoft.TemplateEngine.Cli (2)
TemplateInvoker.cs (2)
209
foreach (IFileChange change in instantiateResult.CreationEffects.
FileChanges
.OrderBy(fc => fc.TargetRelativePath, StringComparer.Ordinal))
280
IReadOnlyList<IFileChange> destructiveChanges = instantiateResult.CreationEffects.
FileChanges
.Where(x => x.ChangeKind != ChangeKind.Create).ToList();
Microsoft.TemplateEngine.Edge (1)
Template\TemplateCreator.cs (1)
173
IReadOnlyList<IFileChange> changes = creationEffects.
FileChanges
;