-
Notifications
You must be signed in to change notification settings - Fork 832
Integrated XML documentation reading in FCS #11454
New issue
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
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
1e0a2d7
Initial work for proper xml doc info
TIHan 1b51919
Implementing IXmlDocumentationInfoLoader
TIHan 4d78a2f
Added TryFindXmlDocumentationInfo to AssemblyLoader
TIHan f548501
Able to get xml comments
TIHan c0cc45e
Minor refactor
TIHan e90ca48
More refactoring
TIHan eedd83e
Fixing build
TIHan 456327a
Plumbing infoReader and updating surface area
TIHan 0a6943e
Do not create a local entity ref here
TIHan 92245d0
Removed extracting XML from resources as that is not correct
TIHan dc68e93
Ignore parameter
TIHan 125613e
More cleanup
TIHan cf27f51
layoutXmlDoc formats well with new-lines
TIHan 7f18105
layout xml doc for values
TIHan c667bfc
Setting up more layout functions
TIHan c56b34f
Using new layouts
TIHan b185d27
All xml is being emitted
TIHan 4dbe2ce
fixing a few tests
TIHan 832e2d6
Fixing test
TIHan 0452aa8
Fixing a test
TIHan d86f111
fixing tests
TIHan 9fee21c
Fixing tests
TIHan 63ece44
Better caching for xml documentation
TIHan File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't notice the addition of this namespace. I don't think we should be using it as it's not about XML as a thing, but about F# documentation
In any case I'd like to make sure all FCS API changes get carefully reviewed - please make sure I sign off on them for now - we need this to be iterating towards being fully stable
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can see the logic in moving out of "Syntax" since it's not purely syntax but also additional logic.
Perhaps either of these:
though we could also look forward to if we one day support Markdown docs, in which case
may be best (to also have corresponding types like
MarkdownDocetc.)