MSGraph-SDK-Code-Generator
MSGraph-SDK-Code-Generator copied to clipboard
XML comments within code comments are not correct in c#
Annotation:
<Annotations Target="microsoft.graph.cloudCommunications/calls">
<Annotation Term="Org.OData.Core.V1.Description" String="Gets or sets the list of <see cref="T:Microsoft.Graph.Call" /> for this application." />
</Annotations>
Expected code comment:
/// <summary>
/// Gets or sets the list of <see cref="T:Microsoft.Graph.Call" /> for this application.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "calls", Required = Newtonsoft.Json.Required.Default)]
public ICloudCommunicationsCallsCollectionPage Calls { get; set; }
Current code comment:
/// <summary>
/// Gets or sets calls.
/// Gets or sets the list of &lt;see cref="T:Microsoft.Graph.Call" /&gt; for this application.
/// </summary>
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "calls", Required = Newtonsoft.Json.Required.Default)]
public ICallsApplicationCallsCollectionPage Calls { get; set; }
Started some work for documentation annotations. https://github.com/microsoftgraph/MSGraph-SDK-Code-Generator/pull/211
C# development moved to kiota