1 interface inheriting from IFileChange
Microsoft.TemplateEngine.Abstractions (1)
IFileChange.cs (1)
32public interface IFileChange2 : IFileChange
14 references to IFileChange
Microsoft.TemplateEngine.Abstractions (3)
ICreationEffects.cs (1)
15IReadOnlyList<IFileChange> FileChanges { get; }
ITemplateEngineHost.cs (2)
81bool OnPotentiallyDestructiveChangesDetected(IReadOnlyList<IFileChange> changes, IReadOnlyList<IFileChange> destructiveChanges);
Microsoft.TemplateEngine.Cli (5)
CliTemplateEngineHost.cs (2)
91bool ITemplateEngineHost.OnPotentiallyDestructiveChangesDetected(IReadOnlyList<IFileChange> changes, IReadOnlyList<IFileChange> destructiveChanges)
TemplateInvoker.cs (3)
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(); 284foreach (IFileChange change in destructiveChanges)
Microsoft.TemplateEngine.Edge (4)
DefaultTemplateEngineHost.cs (2)
84bool ITemplateEngineHost.OnPotentiallyDestructiveChangesDetected(IReadOnlyList<IFileChange> changes, IReadOnlyList<IFileChange> destructiveChanges)
Template\TemplateCreator.cs (2)
173IReadOnlyList<IFileChange> changes = creationEffects.FileChanges; 174IReadOnlyList<IFileChange> destructiveChanges = changes.Where(x => x.ChangeKind != ChangeKind.Create).ToList();
Microsoft.TemplateEngine.Utils (2)
DefaultTemplateEngineHost.cs (2)
113public bool OnPotentiallyDestructiveChangesDetected(IReadOnlyList<IFileChange> changes, IReadOnlyList<IFileChange> destructiveChanges)