net core

Additions to the csproj format for .NET Core

A
Desh-Duniya Team Author
| Published May 16, 2019

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>

Discussion (0)

Please sign in to participate in the discussion.
No comments yet. Be the first to join the conversation!