mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-19 17:23:55 -05:00
* Adding support for moving object, pre-deploy, and post-deploy scripts * tests * Removing redundant backslashes in strings
16 lines
559 B
C#
16 lines
559 B
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.SqlTools.Hosting.Protocol.Contracts;
|
|
|
|
using Microsoft.SqlTools.ServiceLayer.Utility;
|
|
namespace Microsoft.SqlTools.ServiceLayer.SqlProjects.Contracts
|
|
{
|
|
public class MovePreDeploymentScriptRequest
|
|
{
|
|
public static readonly RequestType<MoveItemParams, ResultStatus> Type = RequestType<MoveItemParams, ResultStatus>.Create("sqlProjects/movePreDeploymentScript");
|
|
}
|
|
}
|