-
As the title says. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Well this one is strange, but I just figured what is preventing it from working. <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.10.0-1.final" PrivateAssets="all"/> For whatever reason that makes it not working. <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.8.0" PrivateAssets="all"/> And bam, it just magically works now. I am very much confused as to why this is...
I would like to hear an explanation for this. |
Beta Was this translation helpful? Give feedback.
Well this one is strange, but I just figured what is preventing it from working.
After several hours of trial and error...
In my source generator csproj I had:
For whatever reason that makes it not working.
I tried out some different (older) version:
And bam, it just magically works now. I am very much confused as to why this is...
To confirm it, I switched back to the newer version, and guess what -- it doesn't work again.
So it is literally something about the newer version which makes it …