aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.UI
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-03-08 01:19:58 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-03-08 01:19:58 +0200
commit436ceaea56ecff755476a3796cff72e1da39dfc6 (patch)
tree5d8ebc02e999f777378df5e699f0b13a9827d622 /Software/Visual_Studio/PPC/Tango.PPC.UI
parent9d18d9ec9658af3716814625b608d58ad3daa14c (diff)
downloadTango-436ceaea56ecff755476a3796cff72e1da39dfc6.tar.gz
Tango-436ceaea56ecff755476a3796cff72e1da39dfc6.zip
Integrated WebRTC channel to PPC/FSE.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.UI/App.xaml.cs3
1 files changed, 3 insertions, 0 deletions
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
/// <param name="e">A <see cref="T:System.Windows.StartupEventArgs" /> that contains the event data.</param>
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)
{