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

Popular posts from this blog

'hasOwnProperty' in javascript -

python - ValueError: No axis named 1 for object type <class 'pandas.core.series.Series'> -

java - How to provide dependency injections in Eclipse RCP 3.x? -