You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When creating pull requests, always follow the [PR template](PULL_REQUEST_TEMPLATE.md).
3
+
## General Guidelines
4
4
5
-
Use the following coding guidelines: https://github.com/NuGet/NuGet.Client/blob/dev/docs/coding-guidelines.md
5
+
- When creating pull requests, always follow the [PR template](PULL_REQUEST_TEMPLATE.md).
6
+
- Always format before submitting a pull request.
6
7
7
-
Always format before submitting a pull request.
8
+
## Coding Standards
8
9
9
-
Never use reflection.
10
+
- Use the following coding guidelines: https://github.com/NuGet/NuGet.Client/blob/dev/docs/coding-guidelines.md
11
+
- Never use reflection.
12
+
13
+
## Project-Specific Rules
14
+
15
+
- All files in the repository are nullable by default (project-level nullable enable). No need to add `#nullable enable` directives to individual files.
Copy file name to clipboardExpand all lines: src/NuGet.Core/NuGet.Common/MsBuildStringUtility.cs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -91,7 +91,7 @@ public static bool IsTrueOrEmpty(string? value)
91
91
/// </summary>
92
92
/// <param name="s">A comma or semicolon delimited list of NuGet log codes.</param>
93
93
/// <returns>An <see cref="IList{T}" /> containing the <see cref="NuGetLogCode" /> values that were successfully parsed from the specified string.</returns>
0 commit comments