From 0d31ef3358e45e6d9fde7cce4f219702deb62274 Mon Sep 17 00:00:00 2001 From: Ryan Sweet Date: Fri, 8 Nov 2024 22:53:51 -0800 Subject: [PATCH] missed one --- .../Agents/Services/Grpc/GrpcGatewayService.cs | 2 +- .../Agents/Services/Orleans/OrleansRuntimeHostingExtenions.cs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/dotnet/src/Microsoft.AutoGen/Agents/Services/Grpc/GrpcGatewayService.cs b/dotnet/src/Microsoft.AutoGen/Agents/Services/Grpc/GrpcGatewayService.cs index 4d647e75b85..e26f5c2bc9a 100644 --- a/dotnet/src/Microsoft.AutoGen/Agents/Services/Grpc/GrpcGatewayService.cs +++ b/dotnet/src/Microsoft.AutoGen/Agents/Services/Grpc/GrpcGatewayService.cs @@ -10,7 +10,7 @@ namespace Microsoft.AutoGen.Agents; internal sealed class GrpcGatewayService : AgentRpc.AgentRpcBase { private readonly GrpcGateway Gateway; - public GrpcGatewayService(IGateway gateway) + public GrpcGatewayService(GrpcGateway gateway) { Gateway = (GrpcGateway)gateway; } diff --git a/dotnet/src/Microsoft.AutoGen/Agents/Services/Orleans/OrleansRuntimeHostingExtenions.cs b/dotnet/src/Microsoft.AutoGen/Agents/Services/Orleans/OrleansRuntimeHostingExtenions.cs index cd1a035021b..a6714b44e06 100644 --- a/dotnet/src/Microsoft.AutoGen/Agents/Services/Orleans/OrleansRuntimeHostingExtenions.cs +++ b/dotnet/src/Microsoft.AutoGen/Agents/Services/Orleans/OrleansRuntimeHostingExtenions.cs @@ -3,7 +3,6 @@ using System.Configuration; using Microsoft.AspNetCore.Builder; -using Microsoft.AutoGen.Abstractions; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting;