You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/VirtoCommerce.Platform.Modules/Local/LocalStorageModuleCatalog.cs
+67-2
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
usingSystem.Diagnostics;
4
4
usingSystem.IO;
5
5
usingSystem.Linq;
6
+
usingSystem.Reflection;
6
7
usingMicrosoft.Extensions.Logging;
7
8
usingMicrosoft.Extensions.Options;
8
9
usingVirtoCommerce.Platform.Core.Common;
@@ -151,7 +152,7 @@ public override void Validate()
151
152
.ToArray();
152
153
if(installedIncompatibilities.Any())
153
154
{
154
-
module.Errors.Add($"{module} is incompatible with installed {string.Join(", ",installedIncompatibilities.Select(x =>x.ToString()))}. You should uninstall these modules first.");
155
+
module.Errors.Add($"{module} is incompatible with installed {string.Join(", ",installedIncompatibilities.Select(x =>x.ToString()))}. You should uninstall these modules first.");
0 commit comments