From cdd84acd05a01a1fc65dd79ac6bc5204896aa15b Mon Sep 17 00:00:00 2001 From: Ryan Sweet Date: Fri, 13 Dec 2024 10:32:17 -0800 Subject: [PATCH] Rysweet 4688 core doesnt use orleans (#4689) * removes core reps on Orleans Co-Autohored-by: @kostapetan --- .../src/Microsoft.AutoGen/Agents/IHandle.cs | 4 ---- .../Agents/Microsoft.AutoGen.Agents.csproj | 23 ------------------- .../HelloAppHostIntegrationTests.cs | 4 ++-- 3 files changed, 2 insertions(+), 29 deletions(-) diff --git a/dotnet/src/Microsoft.AutoGen/Agents/IHandle.cs b/dotnet/src/Microsoft.AutoGen/Agents/IHandle.cs index 17d7d459333..3e9f313ae9e 100644 --- a/dotnet/src/Microsoft.AutoGen/Agents/IHandle.cs +++ b/dotnet/src/Microsoft.AutoGen/Agents/IHandle.cs @@ -1,9 +1,5 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // IHandle.cs - -// Copyright (c) Microsoft Corporation. All rights reserved. -// IHandle.cs - namespace Microsoft.AutoGen.Agents; public interface IHandle { diff --git a/dotnet/src/Microsoft.AutoGen/Agents/Microsoft.AutoGen.Agents.csproj b/dotnet/src/Microsoft.AutoGen/Agents/Microsoft.AutoGen.Agents.csproj index e751a2b0e36..6bbb238bbb3 100644 --- a/dotnet/src/Microsoft.AutoGen/Agents/Microsoft.AutoGen.Agents.csproj +++ b/dotnet/src/Microsoft.AutoGen/Agents/Microsoft.AutoGen.Agents.csproj @@ -18,28 +18,5 @@ - - runtime; build; native; contentfiles; analyzers; buildtransitive - all - - - - - - - - - - - - - - - - - true - true - - diff --git a/dotnet/test/Microsoft.AutoGen.Integration.Tests/HelloAppHostIntegrationTests.cs b/dotnet/test/Microsoft.AutoGen.Integration.Tests/HelloAppHostIntegrationTests.cs index a29041f2dee..18b35bd7039 100644 --- a/dotnet/test/Microsoft.AutoGen.Integration.Tests/HelloAppHostIntegrationTests.cs +++ b/dotnet/test/Microsoft.AutoGen.Integration.Tests/HelloAppHostIntegrationTests.cs @@ -42,8 +42,8 @@ public async Task AppHostLogsHelloAgentE2E(TestEndpoints testEndpoints) await app.WaitForResource(ResourceName, TargetState).WaitAsync(timeout); } } - //sleep 5 seconds to make sure the app is running - await Task.Delay(15000); + //sleep to make sure the app is running + await Task.Delay(20000); app.EnsureNoErrorsLogged(); app.EnsureLogContains("HelloAgents said Goodbye"); app.EnsureLogContains("Wild Hello from Python!");