Publishing a .Net Core Web Api project ,( Framework Depended Deployment)
If I target
Full Frameworkie net456, this will publish all framework DLLs innet462folder underbin\ReleaseWebApp.csproj
<PropertyGroup> <TargetFramework>net462</TargetFramework> </PropertyGroup>
2.If I target Core 1.1 ie netcoreapp1.1, this will publish only application DLLs in netcoreapp1.1 folder under bin\Release
WebApp.csproj
<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
</PropertyGroup>
What is the reason for this behavior ?

