Describe the Bug
After Updating ThisAssembly to from 1.5.0 to 2.0.0 I can no longer access the ThisAssembly.Info properties like ThisAssembly.Info.Description

As they come from 3rd party tools, not from my project:

Steps to Reproduce
update from "ThisAssembly.AssemblyInfo" to 2.0:
<PackageReference Include="ThisAssembly.AssemblyInfo" Version="2.0.0">
Expected Behavior
code can be called var Description = ThisAssembly.Info.Description; fine as in 1.5.0
In my csproj I have set thoise 2 entries:
<EmitCompilerGeneratedFiles>true</EmitCompilerGeneratedFiles>
<CompilerGeneratedFilesOutputPath>Generated</CompilerGeneratedFilesOutputPath>
and I no longer see the genereted ThisAssembly.AssemblyInfo.g.cs file only the ApplicationConfiguration.g.cs which includes the generated calls for ApplicationConfiguration.Initialize();


Describe the Bug
After Updating ThisAssembly to from 1.5.0 to 2.0.0 I can no longer access the ThisAssembly.Info properties like
ThisAssembly.Info.DescriptionAs they come from 3rd party tools, not from my project:
Steps to Reproduce
update from "ThisAssembly.AssemblyInfo" to 2.0:
<PackageReference Include="ThisAssembly.AssemblyInfo" Version="2.0.0">Expected Behavior
code can be called
var Description = ThisAssembly.Info.Description;fine as in 1.5.0In my csproj I have set thoise 2 entries:
and I no longer see the genereted
ThisAssembly.AssemblyInfo.g.csfile only theApplicationConfiguration.g.cswhich includes the generated calls forApplicationConfiguration.Initialize();