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 -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -

java - How to implement an entity bound odata action in olingo v4.3 -