Dependency Update

- downgrade NetStandard from 2.1 to 2.0 to allow .NetFramework usage from 4.6.1 to 4.8
- remove .Net Framework 4.7.2 compilation target
- replacing conditioned compilation for .Net Framework with .Net Standard
- removing System.Net.Http dependency (was only necessary for .Net Framework)
This commit is contained in:
FlorianDahn
2021-12-16 14:57:28 +01:00
parent 03565aba98
commit 3b8b24593f
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -138,7 +138,7 @@ namespace TelegramBotBase.Form
{
var oldMessages = OldMessages.AsEnumerable();
#if !NET472
#if !NETSTANDARD2_0
while (oldMessages.Any())
{
using var cts = new CancellationTokenSource();