-
Notifications
You must be signed in to change notification settings - Fork 25
Open
Labels
Description
Describe the bug
Empty description when you try to view any function in Visual Studio (not sure about other IDEs), but the XML docs exist.
To Reproduce
- Call any function (for example ITranslator.TranslateTextAsync)
- Hover your mouse over any function to see a xml description
- See nothing
Expected behavior
Xml docs: summary, params, etc
Screenshots or sample code
var translator = new Translator("my-api-key");
var result = await translator.TranslateTextAsync(
text: "Hi, how do you do?",
sourceLanguageCode: "EN",
targetLanguageCode: "PL"
);
Additional context
This happens because the code does not have the GenerateDocumentationFile
property. Info about this property here