mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-04 17:10:47 +00:00
Add config settings to renderdocui to avoid extremely dubious redirect
* IronPython >= 2.7.5, if installed, adds a *global* redirect so all programs (like renderdoc) that tried to reference the 2.7.4 they provided will instead get redirected to 2.7.5. Whether or not it even exists.
This commit is contained in:
+21
-3
@@ -1,6 +1,24 @@
|
||||
<?xml version="1.0"?>
|
||||
<configuration>
|
||||
<configSections>
|
||||
</configSections>
|
||||
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>
|
||||
<configSections>
|
||||
</configSections>
|
||||
<runtime>
|
||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="IronPython"
|
||||
publicKeyToken="7f709c5b713576e1"
|
||||
culture="neutral" />
|
||||
<publisherPolicy apply="no" />
|
||||
</dependentAssembly>
|
||||
<dependentAssembly>
|
||||
<assemblyIdentity name="IronPython.Modules"
|
||||
publicKeyToken="7f709c5b713576e1"
|
||||
culture="neutral" />
|
||||
<publisherPolicy apply="no" />
|
||||
</dependentAssembly>
|
||||
</assemblyBinding>
|
||||
</runtime>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
|
||||
</startup>
|
||||
</configuration>
|
||||
|
||||
Reference in New Issue
Block a user