-
Notifications
You must be signed in to change notification settings - Fork 393
Tons of warning CS1587: XML comment is not placed on a valid language element #474
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I noticed a lot of these while splitting apart the WCR code. Most is from the #if for WCR method signatures interrupting the XML comment for that method. |
Ah yes, that is probably it. Can it be fixed by moving things around a bit? |
This is fixed now it seems, I recently muted thousands of warnings about missing XML doc on public methods/types, and there are none of these warnings anymore and this warning is not muted. |
The [Obsolete] attribute was being generated on top of the XML documentation, which is an invalid location, so I have moved it right after it and before the [DataContract] attribute. Related: - angularsen#474
The [Obsolete] attribute was being generated on top of the XML documentation, which is an invalid location, so I have moved it right after it and before the [DataContract] attribute. Related: - angularsen#474
The [Obsolete] attribute was being generated on top of the XML documentation, which is an invalid location, so I have moved it right after it and before the [DataContract] attribute. Related: - angularsen#474
Uh oh!
There was an error while loading. Please reload this page.
21000 warnings total! Maybe not all of them are this warning, but it seems like the vast majority are.
Not sure when this was introduced, but I guess it is fairly recent.
https://ci.appveyor.com/project/angularsen/unitsnet/build/844
A small sample:
The text was updated successfully, but these errors were encountered: