locked
migration of 4.5 to 4.8 framework RRS feed

  • Question

  • what is advantage of migrating web application 4.5 framework to 4.8 framework

    what is feature description of this

    • Moved by Dave PatrickMVP Friday, April 24, 2020 11:03 AM looking for forum
    Friday, April 24, 2020 10:47 AM

Answers

All replies

  • I'd try asking for help over here.

    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=netfxsetup

     

     



    Regards, Dave Patrick ....
    Microsoft Certified Professional
    Microsoft MVP [Windows Server] Datacenter Management

    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees, and confers no rights.

    Friday, April 24, 2020 11:03 AM
  • Starting with applications running on .NET Framework 4.8, when targeting .NET Framework 4.8 or later by using the targetFrameworkVersion element, the default behavior changes to strip delimiters. When targeting previous framework versions or not using targetFrameworkVersion, trailing delimiters for some values are still returned.This behavior can also be explicitly controlled with an appSetting:

    <configuration>
    <appSettings>
    ...
    <add key="aspnet:GetValidationMemberName"  value="true"/>
    ...
    </appSettings>
    </configuration>

    Friday, April 24, 2020 11:11 AM