Create a file exactly with the same name like the exe, but append .config: tinke.exe.config Inside file put:
<?xml version ="1.0"?>
<configuration>
<startup useLegacyV2RuntimeActivationPolicy="true">
<supportedRuntime version="v4.0.30319"/>
</startup>
</configuration>
This will try to run the software using .NET 4.0
Regards!