-
Notifications
You must be signed in to change notification settings - Fork 4k
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
Support ExperimentalAttribute.Message #76060
Conversation
@@ -29,6 +29,8 @@ public sealed class ExperimentalAttribute : Attribute | |||
public ExperimentalAttribute(string diagnosticId) { } | |||
|
|||
public string? UrlFormat { get; set; } | |||
|
|||
public string? Message { get; set; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How should we track the update to the spec?
One option would be to move that doc to roslyn/docs/features and update it there, as this is more a compiler feature than a language feature (we enforce regardless of language version) anyways.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can update the spec in place. I see no value in moving the document around for the API change.
@jcouv, @dotnet/roslyn-compiler Please review |
src/Compilers/CSharp/Portable/Symbols/ObsoleteAttributeHelpers.cs
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM Thanks (iteration 2)
@dotnet/roslyn-compiler For the second review. |
Closes #75221