mirror of
https://github.com/chibicitiberiu/rainmeter-studio.git
synced 2024-02-24 04:33:31 +00:00
f6461a1b30
This allows plugins like InputText.dll to be used with .NET 4.0/4.5 in addition to 2.0. Therefore, we can avoid installing .NET 2.0 on Windows 8 and 8.1 where it is not installed by default (whereas 4.5/4.5.1 is installed by default).
9 lines
305 B
XML
9 lines
305 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<configuration>
|
|
<startup useLegacyV2RuntimeActivationPolicy="true">
|
|
<supportedRuntime version="v4.5.1" />
|
|
<supportedRuntime version="v4.5" />
|
|
<supportedRuntime version="v4.0" />
|
|
<supportedRuntime version="v2.0.50727" />
|
|
</startup>
|
|
</configuration> |