| File: AssemblyDependency\Node\RarNodeShutdownReason.cs | Web Access |
| Project: src\msbuild\src\Tasks\Microsoft.Build.Tasks.csproj (Microsoft.Build.Tasks.Core) |
// 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.Tasks.AssemblyDependency { /// <summary> /// Reasons why the RAR node shutdown. /// </summary> public enum RarNodeShutdownReason { /// <summary> /// The RAR node was instructed to terminate and gracefully shut down. /// </summary> Complete, /// <summary> /// The RAR node is already running. /// </summary> AlreadyRunning, /// <summary> /// The RAR node timed out waiting for a connection. /// </summary> ConnectionTimedOut, /// <summary> /// The RAR node encountered an unrecoverable error. /// </summary> Error, } }