From 436ceaea56ecff755476a3796cff72e1da39dfc6 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Sun, 8 Mar 2020 01:19:58 +0200 Subject: Integrated WebRTC channel to PPC/FSE. --- Software/Visual_Studio/PPC/Tango.PPC.UI/App.xaml.cs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI') diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/App.xaml.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/App.xaml.cs index fd0e288c8..8ee8f6a1a 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/App.xaml.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/App.xaml.cs @@ -6,6 +6,7 @@ using System.Diagnostics; using System.IO; using System.Linq; using System.Net; +using System.Threading; using System.Threading.Tasks; using System.Windows; using Tango.BL; @@ -38,6 +39,8 @@ namespace Tango.PPC.UI /// A that contains the event data. protected override void OnStartup(StartupEventArgs e) { + ThreadPool.SetMaxThreads(1000, 1000); + //If no debugger is attached and the argument -debug was passed launch the debugger. if (e.Args.Contains("-debug") && !Debugger.IsAttached) { -- cgit v1.3.1