You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
internalinterfaceILanguageServiceHost{/// <summary>/// Gets the active workspace project context that provides access to the language service for the active configured project./// </summary>/// <value>/// An <see cref="object"/> that provides access to the language service for the active configured project./// </value>objectActiveProjectContext{get;}}
Use Convert to method code action
Expected:
internalinterfaceILanguageServiceHost{/// <summary>/// Gets the active workspace project context that provides access to the language service for the active configured project./// </summary>/// <returns> <-- Note <returns /> not <value />/// An <see cref="object"/> that provides access to the language service for the active configured project./// </returns>objectGetActiveProjectContext();}
💡 For whoever ends up working on this, make sure to handle the case where a property contains a <returns> element in the documentation. If there is a <returns> but no <value> element, the translation is just a copy, but if there are both a <returns> and <value> element we'll have to figure out a way to handle it that doesn't just make the content disappear.
Expected:
Actual:
The text was updated successfully, but these errors were encountered: