-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Enable Roslyn analyzers in build process #11916
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
Changes from all commits
60616db
f9fc539
490305b
6385c10
68afea6
f563af3
44f037c
1282cfd
71b3e12
9afbf06
7058d35
4a32ab5
b9d7737
c9411c2
669837a
d3ebfe3
23564c2
d4883a3
de91d7e
20007f5
d2260f8
ddca184
194501b
36ac477
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -79,21 +79,21 @@ internal CimCmdletAliasEntry(string name, string value) | |
| /// </summary> | ||
| internal string Name { get { return this._name; } } | ||
|
|
||
| private string _name; | ||
| private readonly string _name; | ||
|
|
||
| /// <summary> | ||
| /// The string defining real cmdlet name. | ||
| /// </summary> | ||
| internal string Value { get { return this._value; } } | ||
|
|
||
| private string _value = string.Empty; | ||
| private readonly string _value = string.Empty; | ||
|
|
||
| /// <summary> | ||
| /// The string defining real cmdlet name. | ||
| /// </summary> | ||
| internal ScopedItemOptions Options { get { return this._options; } } | ||
|
|
||
| private ScopedItemOptions _options = ScopedItemOptions.AllScope | ScopedItemOptions.ReadOnly; | ||
| private readonly ScopedItemOptions _options = ScopedItemOptions.AllScope | ScopedItemOptions.ReadOnly; | ||
|
Comment on lines
+82
to
+96
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Am I remembering wrong or was this file removed in a recent PR since it only functions to add command aliases, which were moved to attributes?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is still not merged. |
||
| } | ||
|
|
||
| /// <summary> | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.