| File: Coordinator\Capabilities.cs | Web Access |
| Project: src\msbuild\src\Framework\Microsoft.Build.Framework.csproj (Microsoft.Build.Framework) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.Build.Framework.Coordinator; /// <summary> /// Known capabilities that can be advertised by clients or servers. /// </summary> internal static class Capabilities { /// <summary> /// Supports flowing coordinator grant tokens to nested clients. /// </summary> public const string NestedGrants = "nested-grants"; } |