From 65e574190270d323c2f3ba0ab64330a6ecc00d49 Mon Sep 17 00:00:00 2001 From: Alexander Sergeev Date: Mon, 24 Jun 2024 00:06:05 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D1=83=D0=B1=D0=BB=D0=B8=D0=BA=D0=B0?= =?UTF-8?q?=D1=86=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bot_Funcs.cs | 3 +-- FirehoseFinder.csproj | 2 +- Properties/AssemblyInfo.cs | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Bot_Funcs.cs b/Bot_Funcs.cs index cdf73df..cb8cfb6 100644 --- a/Bot_Funcs.cs +++ b/Bot_Funcs.cs @@ -16,12 +16,11 @@ namespace FirehoseFinder class Bot_Funcs { internal readonly long channel = -1001227261414; - internal static ITelegramBotClient _botClient; + internal static ITelegramBotClient _botClient = new TelegramBotClient(Resources.bot); // Это объект с настройками работы бота. Здесь мы будем указывать, какие типы Update мы будем получать, Timeout бота и так далее. private static ReceiverOptions _receiverOptions; internal static async Task BotWork() { - _botClient = new TelegramBotClient(Resources.bot); _receiverOptions = new ReceiverOptions { AllowedUpdates = new[] // Тут указываем типы получаемых Update`ов, о них подробнее расказано тут https://core.telegram.org/bots/api#update diff --git a/FirehoseFinder.csproj b/FirehoseFinder.csproj index cd30b3d..a63a0fd 100644 --- a/FirehoseFinder.csproj +++ b/FirehoseFinder.csproj @@ -37,7 +37,7 @@ false true 0 - 24.6.19.0 + 24.6.24.0 false true true diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index cda0870..19bb141 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -32,6 +32,6 @@ // Можно задать все значения или принять номера сборки и редакции по умолчанию // используя "*", как показано ниже: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("24.6.19.0")] -[assembly: AssemblyFileVersion("24.6.19.0")] +[assembly: AssemblyVersion("24.6.24.0")] +[assembly: AssemblyFileVersion("24.6.24.0")] [assembly: NeutralResourcesLanguage("ru-RU")]