1
0
mirror of https://github.com/oliverbooth/VpSharp synced 2024-11-10 03:15:42 +00:00

Suppress CA2101 false positive

Strings are marshalled using a custom marshaller, this does not apply
This commit is contained in:
Oliver Booth 2022-11-30 19:24:44 +00:00
parent 8faf25c315
commit 031450ca7e
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634

View File

@ -1,8 +1,9 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using VpSharp.Internal.NativeAttributes; using VpSharp.Internal.NativeAttributes;
using static System.Runtime.InteropServices.DllImportSearchPath; using static System.Runtime.InteropServices.DllImportSearchPath;
// ReSharper disable InconsistentNaming // ReSharper disable InconsistentNaming
#pragma warning disable CA2101
#pragma warning disable CA5393 #pragma warning disable CA5393
namespace VpSharp.Internal; namespace VpSharp.Internal;