1 instantiation of CustomFileGlobModel
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (1)
ConfigModel\CustomFileGlobModel.cs (1)
55CustomFileGlobModel globModel = new CustomFileGlobModel(globName, customOpsForGlob)
11 references to CustomFileGlobModel
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (11)
ConfigModel\CustomFileGlobModel.cs (2)
40internal static CustomFileGlobModel FromJObject(JsonObject globData, string globName) 55CustomFileGlobModel globModel = new CustomFileGlobModel(globName, customOpsForGlob)
ConfigModel\TemplateConfigModel.cs (6)
161GlobalCustomOperations = CustomFileGlobModel.FromJObject((JsonObject)globalCustomConfigData, string.Empty); 166List<CustomFileGlobModel> specialCustomSetup = new(); 173CustomFileGlobModel globModel = CustomFileGlobModel.FromJObject((JsonObject)globData, globName); 386public CustomFileGlobModel? GlobalCustomOperations { get; internal init; } 391public IReadOnlyList<CustomFileGlobModel> SpecialCustomOperations { get; internal init; } = [];
RunnableProjectConfig.cs (3)
121foreach (CustomFileGlobModel customGlobModel in ConfigurationModel.SpecialCustomOperations) 205foreach (CustomFileGlobModel fileGlobModel in ConfigurationModel.SpecialCustomOperations) 324private GlobalRunConfig ProduceOperationSetup(OperationConfigDefault defaultModel, bool generateMacros, CustomFileGlobModel? customGlobModel = null)