Code Generator Broke after VS Update
I have a code generate that seems to be completly waked out inside of VS. I believe this is an issue with Visual Studio however Rider is behaving the same way. Basically the code generator is running and creating the 'files', I can even build so the compiler is fine. The output assembly even includes the generated types. However the IDE is not treating the types as if they are part of the same assembly. Example, a partial class defined in my consuming project with a generated partial class has no partial members. The type is generated, the names match, the namespaces match, but the IDE is treating it like a different class all together. As I play around more and more I'm able to make these warning disapear but doing strange things like deleting the partial methods and re-writing them. Another example, I have a generated property IpAddress address that can't be accessed in the consuming type but exists in the partial type. As soon as I delete and re-write the reference it works fine. see the gif attached for an example. using VS Version 17.14.7 with "Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.14.0" "Microsoft.CodeAnalysis.CSharp" Version="4.14.0" and "Microsoft.CodeAnalysis.Analyzers" Version="4.14.0".
