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