This commit is contained in:
Timerix22 2022-03-13 23:13:30 +03:00
parent 95c6592625
commit 490c0f3f8c
5 changed files with 2 additions and 6 deletions

1
.gitignore vendored
View File

@ -15,6 +15,7 @@
.vshistory/
.idea/
.editorconfig
*.user
#backups
.old*/

1
DTLib
View File

@ -1 +0,0 @@
../DTLib/DTLib

View File

@ -1,2 +0,0 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:String x:Key="/Default/CodeInspection/PencilsConfiguration/ActualSeverity/@EntryValue">INFO</s:String></wpf:ResourceDictionary>

View File

@ -1,5 +1,3 @@
using System.Windows;
[assembly:ThemeInfo(
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
//(used if a resource is not found in the page,

View File

@ -44,7 +44,7 @@ static class Server
while (true)
{
var userSocket = mainSocket.Accept();
var userThread = new Thread(new ParameterizedThreadStart((obj) => UserHandle((Socket)obj)));
var userThread = new Thread((obj) => UserHandle((Socket)obj));
userThread.Start(userSocket);
}
}