We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 491ef47 commit c0f019cCopy full SHA for c0f019c
1 file changed
Intersect (Core)/Core/ApplicationContext`2.cs
@@ -2,6 +2,8 @@
2
using Intersect.Threading;
3
using System.Collections.Concurrent;
4
using System.Diagnostics;
5
+using System.Globalization;
6
+using System.Linq;
7
using System.Reflection;
8
using Intersect.Framework.Reflection;
9
using Intersect.Properties;
@@ -237,7 +239,14 @@ public void Start(bool lockUntilShutdown = true)
237
239
{
238
240
BootstrapServices();
241
- PackedIntersectPacket.AddKnownTypes(PacketHelper.AvailablePacketTypes);
242
+ PackedIntersectPacket.AddKnownTypes(
243
+ PacketHelper.AvailablePacketTypes
244
+ .OrderBy(
245
+ type => type.GetName(qualified: true),
246
+ CultureInfo.InvariantCulture.CompareInfo.GetStringComparer(CompareOptions.Ordinal)
247
+ )
248
+ .ToList()
249
+ );
250
251
try
252
0 commit comments