Xml documentation support

Answered

I want to use swagger to generate documentation for my web api. In order to bind comments on properties to fields, I need to enable `XML documentation file` based on tutorial on msdn.Build tab of project properties

Is there anything similar to these in Rider yet? 

Mac, Mono.

0
4 comments

What toolset do you use? MSBuild15 maybe?

I added an issue https://youtrack.jetbrains.com/issue/RIDER-7433

0
Avatar
Permanently deleted user

Without this feature, can't really use swagger since it uses the xml to create the meta data

0
Avatar
Permanently deleted user

A workaround is to add this to your the .csproj file

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DocumentationFile>bin\Debug\netcoreapp1.1\PowerBiApiService.xml</DocumentationFile>
</PropertyGroup>
0

Please sign in to leave a comment.