mirror of
https://github.com/microsoft/autogen.git
synced 2025-11-14 17:13:29 +00:00
* integration tests used to use the samples - now they are separate * patch dictionary problem in serializer * add Message Registry with dead letter queue that gets checked on new subs.
11 lines
334 B
C#
11 lines
334 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// Program.cs
|
|
|
|
using Microsoft.Extensions.Hosting;
|
|
|
|
var appHost = DistributedApplication.CreateBuilder();
|
|
appHost.AddProject<Projects.HelloAgentTests>("HelloAgentsDotNetInMemoryRuntime");
|
|
var app = appHost.Build();
|
|
await app.StartAsync();
|
|
await app.WaitForShutdownAsync();
|