// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // namespace Microsoft.SqlTools.ServiceLayer.TaskServices { /// /// Task execution mode /// public enum TaskExecutionMode { /// /// Execute task /// Execute = 0, /// /// Script task /// Script = 1, /// /// Execute and script task /// Needed for tasks that will show the script when execution completes /// ExecuteAndScript = 2 } }