5 writes to Value
Aspire.Hosting.CodeGeneration.Java.Tests (1)
AtsJavaCodeGeneratorTests.cs (1)
646Value = new JsonObject { ["Default"] = "probe" },
Aspire.Hosting.RemoteHost (1)
AtsCapabilityScanner.cs (1)
1285Value = SerializeExportedValue(getValue(), memberType),
Aspire.Hosting.RemoteHost.Tests (3)
AtsContextFilterTests.cs (3)
582Value = JsonValue.Create("selected") 595Value = JsonNode.Parse("""{"mode":"Run"}""") 608Value = JsonValue.Create("unrelated")
7 references to Value
Aspire.Hosting.CodeGeneration.Go (1)
AtsGoCodeGenerator.cs (1)
665sb.Append(RenderGoExportedValue(valueInfo.Value, valueInfo.Type, dtoTypesById));
Aspire.Hosting.CodeGeneration.Java (1)
AtsJavaCodeGenerator.cs (1)
835var expression = RenderJavaExportedValue(valueInfo.Value, valueInfo.Type, dtoTypesById);
Aspire.Hosting.CodeGeneration.Python (1)
AtsPythonCodeGenerator.cs (1)
900sb.AppendLine(CultureInfo.InvariantCulture, $"{childPath} = {RenderPythonExportedValue(valueInfo.Value, valueInfo.Type, dtoTypesById, topLevel: true)}");
Aspire.Hosting.CodeGeneration.Rust (1)
AtsRustCodeGenerator.cs (1)
315WriteLine($"{indent} serde_json::from_value::<{returnType}>(serde_json::json!({valueInfo.Value?.ToRelaxedJsonString() ?? "null"}))");
Aspire.Hosting.CodeGeneration.TypeScript (1)
TypeScriptApiProjector.cs (1)
756var literal = RenderTypeScriptExportedValue(exportedValue.Value, exportedValue.Type);
Aspire.Hosting.RemoteHost (1)
CodeGeneration\CodeGenerationService.cs (1)
195Value = value.Value?.DeepClone(),
Aspire.Hosting.RemoteHost.Tests (1)
AtsCapabilityScannerTests.cs (1)
685var valueObject = Assert.IsType<JsonObject>(exportedValue.Value);