Files
sqltoolsservice/src/Microsoft.SqlTools.ServiceLayer/SqlProjects/Contracts/PrePostDeploymentScripts/ExcludePostDeploymentScript.cs
Benjin Dubishar 6cf5147eaf Adding docstrings (#1877)
* Adding docstrings

* merge from main
2023-02-22 11:07:24 -08:00

19 lines
676 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
{
/// <summary>
/// Exclude a post-deployment script from a project
/// </summary>
public class ExcludePostDeploymentScriptRequest
{
public static readonly RequestType<SqlProjectScriptParams, ResultStatus> Type = RequestType<SqlProjectScriptParams, ResultStatus>.Create("sqlProjects/excludePostDeploymentScript");
}
}