When adding a project reference to a Roslyn analyzer or source generator, you generally want the resulting csproj to contain: ```c# <ProjectReference Include="Analyzer.csproj" OutputItemType="Analyzer" /> ``` Or: ```c# <ProjectReference Include="Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" /> ``` There doesn't seem to be way to achieve this just using `dotnet new reference` and I think it would be nice if there was.