asp.net core mvc - Multiple TargetFramework with Visual Studio 2017 -
can guide me how target multiple frameworks visual studio 2017?
- netcoreapp1.1
- net46
- net45
you can specify multiple version in csproj below-
example1:
<targetframeworks>netcoreapp1.0;net452</targetframeworks>
example2:
<targetframeworks>netcoreapp1.1;net462</targetframeworks>
refer cross-targeting section.
Comments
Post a Comment