From 37939b84acc75c9b25596ef3f512569cd48516ef Mon Sep 17 00:00:00 2001 From: SuperDooper <37051355+superdooper86@users.noreply.github.com> Date: Fri, 8 May 2026 13:57:45 +0200 Subject: [PATCH] fix: add missing using System.Reflection for GetCustomAttribute --- windows/UpdateManager.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/windows/UpdateManager.cs b/windows/UpdateManager.cs index 5e59a38..48f420c 100644 --- a/windows/UpdateManager.cs +++ b/windows/UpdateManager.cs @@ -1,5 +1,6 @@ using System; using System.Diagnostics; +using System.Reflection; using System.IO; using System.IO.Compression; using System.Net.Http;