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