We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to create a ISetOptionsFromClientExtension like what is mentioned at #83 , and adding some documents of code to the project?
session.Roslyn.Project.AddDocument is immutable, and as I could find, adding documents require the workspace!
The text was updated successfully, but these errors were encountered:
@vrassouli Thanks for asking! This is something I was planning to add/test explicitly, but haven't got to yet. You can definitely do the Roslyn part:
session.Roslyn.Project = session.Roslyn.Project.AddDocument(...).Project;
However the MirrorSharp part might expect exactly one document in some places, and may fail otherwise.
Sorry, something went wrong.
Thanks for your reply adding document this way, throws NotSupported exception: System.NotSupportedException: 'Adding documents is not supported.'
No branches or pull requests
Is it possible to create a ISetOptionsFromClientExtension like what is mentioned at #83 , and adding some documents of code to the project?
session.Roslyn.Project.AddDocument is immutable, and as I could find, adding documents require the workspace!
The text was updated successfully, but these errors were encountered: