[bgen] Add support for writing xml docs for async methods.#22639
Conversation
This is accomplished by adding two new properties to the Async attribute: `XmlDocs` and `XmlDocsWithOutParameter`. We need two properties, because an [Async] member can end up with two async overloads if the original member has a return value (which will end up being the out parameter in one of the async overloads).
✅ [CI Build #99079c2] Build passed (Build packages) ✅Pipeline on Agent |
✅ [PR Build #99079c2] Build passed (Detect API changes) ✅Pipeline on Agent |
✅ API diff for current PR / commit.NET ( No breaking changes )✅ API diff vs stable.NET ( No breaking changes )✅ Generator diffGenerator diff is empty Pipeline on Agent |
✅ [CI Build #99079c2] Build passed (Build macOS tests) ✅Pipeline on Agent |
💻 [CI Build #99079c2] Tests on macOS X64 - Mac Sonoma (14) passed 💻✅ All tests on macOS X64 - Mac Sonoma (14) passed. Pipeline on Agent |
💻 [CI Build #99079c2] Tests on macOS M1 - Mac Monterey (12) passed 💻✅ All tests on macOS M1 - Mac Monterey (12) passed. Pipeline on Agent |
💻 [CI Build #99079c2] Tests on macOS arm64 - Mac Sequoia (15) passed 💻✅ All tests on macOS arm64 - Mac Sequoia (15) passed. Pipeline on Agent |
💻 [CI Build #99079c2] Tests on macOS M1 - Mac Ventura (13) passed 💻✅ All tests on macOS M1 - Mac Ventura (13) passed. Pipeline on Agent |
This comment has been minimized.
This comment has been minimized.
🚀 [CI Build #99079c2] Test results 🚀Test results✅ All tests passed on VSTS: test results. 🎉 All 115 tests passed 🎉 Tests counts✅ cecil: All 1 tests passed. Html Report (VSDrops) Download Pipeline on Agent |
This is accomplished by adding two new properties to the Async attribute:
XmlDocsandXmlDocsWithOutParameter. We need two properties, because an[Async] member can end up with two async overloads if the original member has
a return value (which will end up being the out parameter in one of the async
overloads).