From e6646d6c6e4fde054cdcc9349808988c8ab64fb0 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Tue, 16 Oct 2018 23:34:29 -0500 Subject: [PATCH] Added SuppressUnmanagedCodeSecurity to main form class Used due to interopt calls used for auto profile system --- DS4Windows/DS4Forms/DS4Form.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DS4Windows/DS4Forms/DS4Form.cs b/DS4Windows/DS4Forms/DS4Form.cs index 96cc734..4366d9c 100644 --- a/DS4Windows/DS4Forms/DS4Form.cs +++ b/DS4Windows/DS4Forms/DS4Form.cs @@ -17,9 +17,11 @@ using System.Drawing.Drawing2D; using TaskRunner = System.Threading.Tasks.Task; using NonFormTimer = System.Timers.Timer; using static DS4Windows.Global; +using System.Security; namespace DS4Windows { + [SuppressUnmanagedCodeSecurity] public partial class DS4Form : Form { public string[] cmdArguments;