diff --git a/Processor.cs b/Processor.cs index 9e3033d..caddabf 100644 --- a/Processor.cs +++ b/Processor.cs @@ -113,6 +113,10 @@ public void LoadProgram(byte[] programData) /// Thrown if a division instruction is executed with a value of zero as the divisor. /// Thrown if an operation that requires a file to exist could not find the target file. /// Thrown if an operation that requires a directory to exist could not find the target directory. + [System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessage("", "IL2026", + Justification = "Reflection is only performed on external types loaded specifically by the user at runtime.")] + [System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessage("", "IL2080", + Justification = "Reflection is only performed on external types loaded specifically by the user at runtime.")] public bool Execute(bool runUntilHalt, Stream? stdoutOverride = null) { if (!ProgramLoaded)