When I'm creating a NuGet package I always ask myself how many targets I should provide? And usually I create all possible from 4.0 to 4.6 with all versions in between.
But is this really necessary? I noticed that all assemblies have the same size and to verify that they target the right version I used the JustDecompile.
I'm not an IL expert so I don't know what to look at when I open an assembly with ILDasm. Should I still compile several different versions or does it make sense only if I use something specific to a higher .NET version like a string.IsNullOrWhitespace etc.?
– Hans Passant