// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // using Microsoft.SqlServer.Dac; using Microsoft.SqlServer.Dac.Compare; using Microsoft.SqlTools.Hosting.Protocol.Contracts; using Microsoft.SqlTools.ServiceLayer.TaskServices; namespace Microsoft.SqlTools.ServiceLayer.SchemaCompare.Contracts { /// /// Parameters for a schema compare publish project changes request. /// public class SchemaComparePublishProjectChangesParams { /// /// Operation id of the schema compare operation /// public string OperationId { get; set; } /// /// Path of project folder /// public string TargetProjectPath { get; set; } /// /// folder structure of target folder /// public DacExtractTarget TargetFolderStructure { get; set; } /// /// Execution mode for the operation. Default is execution /// public TaskExecutionMode TaskExecutionMode { get; set; } } /// /// Defines the Schema Compare publish project changes request type /// class SchemaComparePublishProjectChangesRequest { public static readonly RequestType Type = RequestType.Create("schemaCompare/publishProject"); } }