13 references to Get
Microsoft.TemplateEngine.Orchestrator.RunnableProjects (13)
ConfigModel\CustomOperationModel.cs (1)
31Configuration = jObject.Get<JsonObject>(nameof(Configuration))?.ToJsonString(),
ConfigModel\ExtendedFileSource.cs (2)
66Rename = jObject.Get<JsonObject>(nameof(Rename))?.ToStringDictionary().ToDictionary(x => x.Key, x => x.Value) ?? RenameDefaults, 80Rename = entry.Get<JsonObject>(nameof(Rename))?.ToStringDictionary().ToDictionary(x => x.Key, x => x.Value) ?? RenameDefaults,
ConfigModel\PostActionModel.cs (1)
144IReadOnlyList<ManualInstructionModel> manualInstructions = LoadManualInstructionsFromJArray(action.Get<JsonArray>("ManualInstructions"), validationEntries);
ConfigModel\ReplacementContext.cs (1)
33JsonArray? onlyIf = jObject.Get<JsonArray>("onlyIf");
ConfigModel\TemplateConfigModel.cs (3)
154_postActions = PostActionModel.LoadListFromJArray(source.Get<JsonArray>("PostActions"), _validationEntries); 155PrimaryOutputs = PrimaryOutputModel.ListFromJArray(source.Get<JsonArray>(nameof(PrimaryOutputs))); 565IReadOnlyDictionary<string, string>? defaultOverrides = obj.Get<JsonObject>(nameof(Utils.BaselineInfo.DefaultOverrides))?.ToStringDictionary() ?? new Dictionary<string, string>();
OperationConfig\ReplacementConfig.cs (1)
29JsonArray? onlyIf = rawConfiguration.Get<JsonArray>("onlyIf");
parent\Shared\JExtensions.cs (4)
200JsonNode? token = jObject.Get<JsonNode>(propertyName); 368token = token.Get<JsonArray>(propertyName); 393token = token.Get<JsonArray>(propertyName); 422token = token.Get<JsonArray>(propertyName);