From 7e9e9b3a95ee6f8c58a3c54ce953b097080fea29 Mon Sep 17 00:00:00 2001
From: Michael Krisper <michael.krisper@tugraz.at>
Date: Mon, 25 Apr 2022 14:12:30 +0200
Subject: [PATCH] HashingTool and VectoConsole: Removed binding redirects due
 to an incompatible version of Ninject for all projects (3.3.4 vs. 3.3.3)

(cherry picked from commit 72e5e23c8d547a2d5396bb3a0a3f344a9427875c)
---
 HashingTool/App.config  | 8 --------
 VectoConsole/App.config | 9 ---------
 2 files changed, 17 deletions(-)

diff --git a/HashingTool/App.config b/HashingTool/App.config
index 2d7c95c83a..85cc8776a9 100644
--- a/HashingTool/App.config
+++ b/HashingTool/App.config
@@ -3,12 +3,4 @@
     <startup> 
         <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
     </startup>
-  <runtime>
-    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
-      <dependentAssembly>
-        <assemblyIdentity name="Ninject" publicKeyToken="c7192dc5380945e7" culture="neutral" />
-        <bindingRedirect oldVersion="0.0.0.0-3.3.4.0" newVersion="3.3.4.0" />
-      </dependentAssembly>
-    </assemblyBinding>
-  </runtime>
 </configuration>
\ No newline at end of file
diff --git a/VectoConsole/App.config b/VectoConsole/App.config
index 8ef55200ef..f3e7e3a3ca 100644
--- a/VectoConsole/App.config
+++ b/VectoConsole/App.config
@@ -3,15 +3,6 @@
 	<configSections>
 		<section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog" />
 	</configSections>
-	<runtime>
-		<loadFromRemoteSources enabled="true" />
-		<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
-			<dependentAssembly>
-				<assemblyIdentity name="Ninject" publicKeyToken="c7192dc5380945e7" culture="neutral" />
-				<bindingRedirect oldVersion="0.0.0.0-3.3.4.0" newVersion="3.3.4.0" />
-			</dependentAssembly>
-		</assemblyBinding>
-	</runtime>
 	<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.nlog-project.org/schemas/NLog.xsd NLog.xsd" autoReload="false" throwExceptions="false" internalLogLevel="Off" internalLogFile="c:\temp\nlog-internal.log">
 		<targets async="true">
 			<target xsi:type="Console" name="ConsoleLogger" error="true" />
-- 
GitLab