From 52a7d60129406a358f52dd197b386556eaa4d0ce Mon Sep 17 00:00:00 2001 From: Roger Barreto <19890735+rogerbarreto@users.noreply.github.com> Date: Fri, 15 Aug 2025 17:52:51 +0100 Subject: [PATCH] Address warnings --- .../AgentWebChat/AgentWebChat.AppHost/ModelExtensions.cs | 3 +++ dotnet/samples/AgentWebChat/AgentWebChat.AppHost/Program.cs | 1 + 2 files changed, 4 insertions(+) diff --git a/dotnet/samples/AgentWebChat/AgentWebChat.AppHost/ModelExtensions.cs b/dotnet/samples/AgentWebChat/AgentWebChat.AppHost/ModelExtensions.cs index a44e9734f4..551397c23c 100644 --- a/dotnet/samples/AgentWebChat/AgentWebChat.AppHost/ModelExtensions.cs +++ b/dotnet/samples/AgentWebChat/AgentWebChat.AppHost/ModelExtensions.cs @@ -1,5 +1,8 @@ // Copyright (c) Microsoft. All rights reserved. +using Aspire.Hosting; +using Aspire.Hosting.ApplicationModel; + namespace AgentWebChat.AppHost; public static class ModelExtensions diff --git a/dotnet/samples/AgentWebChat/AgentWebChat.AppHost/Program.cs b/dotnet/samples/AgentWebChat/AgentWebChat.AppHost/Program.cs index 9b25fe3488..0e31a033ca 100644 --- a/dotnet/samples/AgentWebChat/AgentWebChat.AppHost/Program.cs +++ b/dotnet/samples/AgentWebChat/AgentWebChat.AppHost/Program.cs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft. All rights reserved. using AgentWebChat.AppHost; +using Aspire.Hosting; var builder = DistributedApplication.CreateBuilder(args);