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