mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-16 10:58:30 -05:00
Feature/schemacompare Exclude-Include and Options enhancement (#799)
* Initial code for Including/Excluding individual changes (no tests added yet) * Adding Exclude include tests. Default options call and additional options tests. * Taking PR comments * Retry in test for reliability
This commit is contained in:
@@ -2925,6 +2925,30 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
}
|
||||
}
|
||||
|
||||
public static string IncludeNodeTaskName
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.IncludeNodeTaskName);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ExcludeNodeTaskName
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.ExcludeNodeTaskName);
|
||||
}
|
||||
}
|
||||
|
||||
public static string SchemaCompareExcludeIncludeNodeNotFound
|
||||
{
|
||||
get
|
||||
{
|
||||
return Keys.GetString(Keys.SchemaCompareExcludeIncludeNodeNotFound);
|
||||
}
|
||||
}
|
||||
|
||||
public static string ConnectionServiceListDbErrorNotConnected(string uri)
|
||||
{
|
||||
return Keys.GetString(Keys.ConnectionServiceListDbErrorNotConnected, uri);
|
||||
@@ -4257,6 +4281,15 @@ namespace Microsoft.SqlTools.ServiceLayer
|
||||
|
||||
|
||||
public const string PublishChangesTaskName = "PublishChangesTaskName";
|
||||
|
||||
|
||||
public const string IncludeNodeTaskName = "IncludeNodeTaskName";
|
||||
|
||||
|
||||
public const string ExcludeNodeTaskName = "ExcludeNodeTaskName";
|
||||
|
||||
|
||||
public const string SchemaCompareExcludeIncludeNodeNotFound = "SchemaCompareExcludeIncludeNodeNotFound";
|
||||
|
||||
|
||||
private Keys()
|
||||
|
||||
@@ -1715,4 +1715,16 @@
|
||||
<value>Apply schema compare changes</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="IncludeNodeTaskName" xml:space="preserve">
|
||||
<value>Include schema compare node</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ExcludeNodeTaskName" xml:space="preserve">
|
||||
<value>Exclude schema compare node</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
<data name="ExcludeNodeTaskName" xml:space="preserve">
|
||||
<value>Failed to find the specified change in the model</value>
|
||||
<comment></comment>
|
||||
</data>
|
||||
</root>
|
||||
|
||||
Reference in New Issue
Block a user