Author Topic: [SOLVED]Configuration .NET Framework  (Read 5060 times)

0 Members and 1 Guest are viewing this topic.

makinero

  • Guest
[SOLVED]Configuration .NET Framework
« on: July 02, 2016, 09:22:22 am »
I want to change the configuration of the .NET Framework 2 to 4.5.2
Please help, how to properly modify the code.

Code: [Select]
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
      <section name="Super.Utils.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
      <section name="Super.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
    </sectionGroup>
  </configSections>
  <applicationSettings>
    <Super.Utils.Settings>
     <setting name="LogFilePath" serializeAs="String">
      <value>SuperLog.txt</value>
     </setting>
     <setting name="LogEnabled" serializeAs="String">
      <value>True</value>
     </setting>
     <setting name="DetailedLog" serializeAs="String">
      <value>False</value>
     </setting>
    </Super.Utils.Settings>
    <Super.Settings>
     <setting name="UacBypassEnabled" serializeAs="String">
      <value>True</value>
     </setting>
     <setting name="KeyDownTimeout" serializeAs="String">
      <value>00:00:10</value>
     </setting>
    </Super.Settings>
  </applicationSettings>
  <system.net>
    <connectionManagement>
      <add address="*" maxconnection="2147483647"/>
    </connectionManagement>
    <settings>
      <httpWebRequest useUnsafeHeaderParsing="true"/>
    </settings>
  </system.net>
  <startup useLegacyV2RuntimeActivationPolicy="true">
    <supportedRuntime version="v2.0.50727" />
    <supportedRuntime version="v4.0.30319" sku=".NETFramework,Version=v4.0,Profile=Client" />
  </startup>
</configuration>


Edit:

Solution:
<supportedRuntime version="v4.6.1" />
    <supportedRuntime version="v4.0.30319" sku=".NETFramework,Version=v4.0,Profile=Client" />
« Last Edit: July 02, 2016, 11:46:56 am by makinero »