24 lines
830 B
Diff
24 lines
830 B
Diff
From: uazo <uazo@users.noreply.github.com>
|
||
Date: Sun, 15 Sep 2024 09:41:40 +0000
|
||
Subject: Remove sideloading of version.dll
|
||
|
||
Disabling support for local version.dll loading in windows
|
||
|
||
License: GPL-2.0-or-later - https://spdx.org/licenses/GPL-2.0-or-later.html
|
||
---
|
||
build/win/as_invoker.manifest | 2 ++
|
||
1 file changed, 2 insertions(+)
|
||
|
||
diff --git a/build/win/as_invoker.manifest b/build/win/as_invoker.manifest
|
||
--- a/build/win/as_invoker.manifest
|
||
+++ b/build/win/as_invoker.manifest
|
||
@@ -1,5 +1,7 @@
|
||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||
+<!-- Remove version dll hack -->
|
||
+<file name="version.dll" loadFrom="%SystemRoot%\system32\" />
|
||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||
<security>
|
||
<requestedPrivileges>
|
||
--
|