From 6672805b8e954e33b211f7bcfd717513f5f9d48d Mon Sep 17 00:00:00 2001 From: tommasodotnet Date: Tue, 10 Feb 2026 13:07:12 +0100 Subject: [PATCH] fixes formatting errors on test apphost --- .../DevUIIntegration/DevUIIntegration.AppHost/Program.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/dotnet/samples/DevUIIntegration/DevUIIntegration.AppHost/Program.cs b/dotnet/samples/DevUIIntegration/DevUIIntegration.AppHost/Program.cs index f7efd54e92..edd36e007b 100644 --- a/dotnet/samples/DevUIIntegration/DevUIIntegration.AppHost/Program.cs +++ b/dotnet/samples/DevUIIntegration/DevUIIntegration.AppHost/Program.cs @@ -1,9 +1,8 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. +// Copyright (c) Microsoft. All rights reserved. var builder = DistributedApplication.CreateBuilder(args); -var tenantId = builder.AddParameterFromConfiguration("tenant", "Azure:TenantId"); +_ = builder.AddParameterFromConfiguration("tenant", "Azure:TenantId"); var existingFoundryName = builder.AddParameter("existingFoundryName") .WithDescription("The name of the existing Azure Foundry resource."); var existingFoundryResourceGroup = builder.AddParameter("existingFoundryResourceGroup") @@ -24,7 +23,7 @@ var editorAgent = builder.AddProject("editor-agent") // Add DevUI integration that aggregates agents from all agent services. // Agent metadata is declared here so backends don't need a /v1/entities endpoint. -var devui = builder.AddDevUI("devui") +_ = builder.AddDevUI("devui") .WithAgentService(writerAgent, agents: [new("writer")]) .WithAgentService(editorAgent, agents: [new("editor")]) .WaitFor(writerAgent)