I am modifying the "ADO.NET POCO Entity Generator" template to create my own POCO classes. My .tt file for my Model is called Model1.tt. When you expand Model1.tt you will see a file called Model1.cs, which contains some auto-generated "Fixup" code:
public class FixupCollection<T> : ObservableCollection<T>
{
//Auto-generated code here
}
I don't need this Model1.cs file. Is it possible to modify the Model1.tt file so that it won't create the Model1.cs file at all?