Skip to content

Commit

Permalink
Removed Russian UI log messages on stop event. Update to netcoreapp3.…
Browse files Browse the repository at this point in the history
…0. Removed netframework 4.7.1.
  • Loading branch information
grandsilence committed Feb 8, 2020
1 parent 9a40368 commit a3f6e9c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Leaf.Core.Tests/Leaf.Core.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net452;net462;net471;net472;netcoreapp2.0;netcoreapp2.1</TargetFrameworks>
<TargetFrameworks>net452;net462;net472;netcoreapp3.0</TargetFrameworks>

<IsPackable>false</IsPackable>

Expand Down
2 changes: 1 addition & 1 deletion Leaf.Core/Leaf.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Leaf.Core</RootNamespace>
<AssemblyName>Leaf.Core</AssemblyName>
<TargetFrameworks>net452;net462;net471;net472;netcoreapp2.0;netcoreapp2.1</TargetFrameworks>
<TargetFrameworks>net452;net462;net472;netcoreapp3.0</TargetFrameworks>
<FileAlignment>512</FileAlignment>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Grand Silence</Authors>
Expand Down
3 changes: 0 additions & 3 deletions Leaf.Core/Threading/ThreadManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ public void Stop()
return;

_ui.CancelAndThrow();
_ui.Log("Идет плавная остановка всех потоков...");
}

/// <summary>
Expand All @@ -128,8 +127,6 @@ public void Abort()
if (!IsWorking)
return;

_ui.Log("Принудительное завершение потоков...");

// завершаем потоки
foreach (var thread in _threads)
thread.Abort();
Expand Down

0 comments on commit a3f6e9c

Please sign in to comment.