mirror of
https://github.com/microsoft/autogen.git
synced 2025-11-25 14:36:39 +00:00
Restoring the grpc + Orleans server into the project ## Why are these changes needed? This is the distributed agent runtime for .NET that can manage routing messages amongst a fleet of grpc agent runtimes. ## Related issue number ## Checks - [ ] I've included any doc changes needed for https://microsoft.github.io/autogen/. See https://microsoft.github.io/autogen/docs/Contribute#documentation to build and test documentation locally. - [x] I've added tests (if relevant) corresponding to the changes introduced in this PR. - [x] I've made sure all auto checks have passed. --------- Co-authored-by: Jack Gerrits <jack@jackgerrits.com> Co-authored-by: Jacob Alber <jaalber@microsoft.com>
11 lines
324 B
C#
11 lines
324 B
C#
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// ClusterCollection.cs
|
|
|
|
namespace Microsoft.AutoGen.RuntimeGateway.Grpc.Tests.Helpers.Orleans;
|
|
|
|
[CollectionDefinition(Name)]
|
|
public sealed class ClusterCollection : ICollectionFixture<ClusterFixture>
|
|
{
|
|
public const string Name = nameof(ClusterCollection);
|
|
}
|