Framework gate pragma disable

This commit is contained in:
Matt Nadareski
2026-01-25 16:41:08 -05:00
parent 4c2303ff25
commit 2077eb647a

View File

@@ -3,6 +3,9 @@ using System.Net;
namespace SabreTools.RedumpLib.Web
{
#if NET6_0_OR_GREATER
#pragma warning disable SYSLIB0014
#endif
internal class CookieWebClient : WebClient
{
/// <summary>
@@ -48,4 +51,7 @@ namespace SabreTools.RedumpLib.Web
return request;
}
}
#if NET6_0_OR_GREATER
#pragma warning restore SYSLIB0014
#endif
}