Proj1004: .NET Project File Analyzers SDK no longer requires separate package
With the release of DotNetProjectFile.Analyzers v1.12.0
the .net.csproj works without including the DotNetProjectFile.Analyzers.Sdk
package. More info on how the .net.csproj works, can be read here.
Non-compliant
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<PackageReference PrivateAssets="all" Include="DotNetProjectFile.Analyzers" Version="1.11.0" />
</ItemGroup>
</Project>
Compliant
<Project Sdk="Microsoft.NET.Sdk" />