You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Program.cs 307 B

123456789101112131415
  1. // Copyright (c) Microsoft Corporation. All rights reserved.
  2. // Program.cs
  3. using Microsoft.AutoGen.Agents;
  4. var builder = WebApplication.CreateBuilder(args);
  5. builder.AddServiceDefaults();
  6. builder.AddAgentService();
  7. var app = builder.Build();
  8. app.MapDefaultEndpoints();
  9. app.MapAgentService();
  10. app.Run();