mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-13 17:23:02 -05:00
Update login migrations nuget with perf improvements (#1789)
* Update login migrations nuget with perf improvements * Add new nuget Co-authored-by: Akshay Mata <akma@microsoft.com>
This commit is contained in:
@@ -24,7 +24,7 @@
|
||||
<PackageReference Update="Microsoft.Azure.Kusto.Language" Version="9.0.4" />
|
||||
<PackageReference Update="Microsoft.SqlServer.Assessment" Version="[1.1.9]" />
|
||||
<PackageReference Update="Microsoft.SqlServer.Migration.Assessment" Version="1.0.20221028.23" />
|
||||
<PackageReference Update="Microsoft.SqlServer.Migration.Logins" Version="1.0.20221103.24" />
|
||||
<PackageReference Update="Microsoft.SqlServer.Migration.Logins" Version="1.0.20221215.33" />
|
||||
<PackageReference Update="Microsoft.SqlServer.Management.SqlParser" Version="160.22519.0" />
|
||||
<PackageReference Update="Microsoft.Azure.OperationalInsights" Version="1.0.0" />
|
||||
<PackageReference Update="Microsoft.CodeAnalysis.CSharp" Version="3.10.0" />
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -13,6 +13,11 @@ namespace Microsoft.SqlTools.ServiceLayer.Migration.Utils
|
||||
{
|
||||
public static void AddExceptions(this IDictionary<string, IEnumerable<ReportableException>> exceptionMap1, IDictionary<string, IEnumerable<ReportableException>> exceptionMap2)
|
||||
{
|
||||
if (exceptionMap1 is null || exceptionMap2 is null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
foreach (var keyValuePair2 in exceptionMap2)
|
||||
{
|
||||
// If the dictionary already contains the key then merge them
|
||||
|
||||
Reference in New Issue
Block a user