Supose that I have a multi target project, something like that:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Bugsnag</PackageId>
<Title>Bugsnag .NET Notifier</Title>
<TargetFrameworks>net35;net40;net45;netstandard1.3;netstandard2.0</TargetFrameworks>
</PropertyGroup>
</Project>
I am targeting to net35, net40, net45 and others. Net40 has features that net35 has not, and net45 has features that net40 has not.
So my doubt is, when I code my application, do I have available all the features of net45? And if it is true, how is it possible can it compile if for example, net35 has not some of the features that I am using?
Thanks so much.