mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-20 17:24:00 -05:00
* passing initial testing * update local project from database * update local project * update project from database * update project from database * update project from database * update project from database * update project from database * update project from database * update project from database * update project from database * update project from database * update project from database * Bump .net version * PR feedback Co-authored-by: Noureldine Yehia <t-nyehia@microsoft.com>
29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
//
|
|
// 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.Compare;
|
|
using Microsoft.SqlTools.Hosting.Protocol.Contracts;
|
|
using Microsoft.SqlTools.ServiceLayer.TaskServices;
|
|
using Microsoft.SqlTools.ServiceLayer.Utility;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.SchemaCompare.Contracts
|
|
{
|
|
/// <summary>
|
|
/// Parameters for a schema compare generate script request.
|
|
/// </summary>
|
|
public class SchemaCompareGenerateScriptParams : SchemaComparePublishDatabaseChangesParams
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Defines the Schema Compare generate script request type
|
|
/// </summary>
|
|
class SchemaCompareGenerateScriptRequest
|
|
{
|
|
public static readonly RequestType<SchemaCompareGenerateScriptParams, ResultStatus> Type =
|
|
RequestType<SchemaCompareGenerateScriptParams, ResultStatus>.Create("schemaCompare/generateScript");
|
|
}
|
|
}
|