I'm upgrading from .NET 4.0 to 4.7.1
two things that concern me.
App.Config-
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.1"/></startup></configuration>
does that mean that it really hasn't upgrade to newer framework and is running at 4.0.0 instead of 4.7.1?In a class that is autogenerated by svcutil?
auto-generated // This code was generated by a tool. // Runtime Version:4.0.30319.18444
it generates:
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
Would I have to delete all the autogenerated class and somehow regenerate that with the newer framework or can I just manually change them to 4.7.1?