This commit is contained in:
2025-04-16 13:19:22 +04:00
parent 7aa49b9f84
commit 0d9bb677c1
2 changed files with 5 additions and 5 deletions

View File

@@ -1,4 +0,0 @@
[*.cs]
# CS0618: Type or member is obsolete
dotnet_diagnostic.CS0618.severity = none

View File

@@ -6,6 +6,8 @@ using System.Data.SqlClient;
internal class Program internal class Program
{ {
private static DateTime lastDate = DateTime.MinValue; private static DateTime lastDate = DateTime.MinValue;
[Obsolete]
private static void Main(string[] args) private static void Main(string[] args)
{ {
while (true) while (true)
@@ -44,7 +46,7 @@ internal class Program
} }
} }
[Obsolete]
private static async void NotifyPollingAsync(string url, string token, string proxyUrl, string proxyUsername, string proxyPassword) private static async void NotifyPollingAsync(string url, string token, string proxyUrl, string proxyUsername, string proxyPassword)
{ {
#region check furnace 250 #region check furnace 250
@@ -119,6 +121,8 @@ internal class Program
return (true, "OK"); return (true, "OK");
} }
[Obsolete]
private static async Task<(bool status, string msg)> CheckFurnace250() private static async Task<(bool status, string msg)> CheckFurnace250()
{ {
int cntEmptyPOID = 0; int cntEmptyPOID = 0;