support issue severity (#1430)

This commit is contained in:
Alan Ren
2022-03-17 10:16:42 -07:00
committed by GitHub
parent 271f5f881a
commit 92cb4beca0
11 changed files with 215 additions and 112 deletions

View File

@@ -9005,6 +9005,22 @@ namespace Microsoft.SqlTools.ServiceLayer
}
}
public static string AddNewEdgeConstraintLabel
{
get
{
return Keys.GetString(Keys.AddNewEdgeConstraintLabel);
}
}
public static string AddNewClauseLabel
{
get
{
return Keys.GetString(Keys.AddNewClauseLabel);
}
}
public static string ConnectionServiceListDbErrorNotConnected(string uri)
{
return Keys.GetString(Keys.ConnectionServiceListDbErrorNotConnected, uri);
@@ -12867,6 +12883,12 @@ namespace Microsoft.SqlTools.ServiceLayer
public const string TableColumnDefaultConstraintNamePropertyTitle = "TableColumnDefaultConstraintNamePropertyTitle";
public const string AddNewEdgeConstraintLabel = "AddNewEdgeConstraintLabel";
public const string AddNewClauseLabel = "AddNewClauseLabel";
private Keys()
{ }