Example #1
0
 private static void ModifyContent(IGeneratedFile file)
 {
     file.Content = SomeModifiedContent;
 }
Example #2
0
 public FullPathFile(DirectoryInfo rootDir, IGeneratedFile file)
 {
     Path    = System.IO.Path.Combine(rootDir.FullName, file.Path);
     Content = file.Content;
 }