net core
Additions to the csproj format for .NET Core
A
Desh-Duniya Team
Author
When referencing the Microsoft.AspNetCore.App or Microsoft.AspNetCore.All packages, do not specify their version. If a version is specified, the SDK may produce warning NETSDK1071. To fix this warning, remove the package version like in the following example:
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>