Skip to content

Commit f94ce3b

Browse files
committed
format true/false as possible
1 parent 57886d9 commit f94ce3b

File tree

97 files changed

+166
-166
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+166
-166
lines changed

xml/Microsoft.Build.Evaluation/Project.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2393,7 +2393,7 @@
23932393
<param name="item">The item to be removed.</param>
23942394
<summary>Removes an item from the project. The item to be removed must be present in the project, and must not originate from an imported file.</summary>
23952395
<returns>
2396-
<see langword="true" /> if the item is present in this evaluated project; otherwise, <see langword="false" />. Normally this method returns true, since if the requested item is not present, the method throws an exception. If the item is present only in the ItemsIgnoringCondition collection, however, the method returns false.</returns>
2396+
<see langword="true" /> if the item is present in this evaluated project; otherwise, <see langword="false" />. Normally this method returns true, since if the requested item is not present, the method throws an exception. If the item is present only in the ItemsIgnoringCondition collection, however, the method returns <see langword="false" />.</returns>
23972397
<remarks>
23982398
<format type="text/markdown"><![CDATA[
23992399

xml/Microsoft.Build.Framework/BuildEventContext.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@
424424
<param name="left">Left hand side operand</param>
425425
<param name="right">Right hand side operand</param>
426426
<summary>Override == so the equals comparison using this operator will be the same as .Equals</summary>
427-
<returns>True if the object values are identical, false if they are not identical</returns>
427+
<returns><see langword="true" /> if the object values are identical, false if they are not identical</returns>
428428
<remarks>To be added.</remarks>
429429
</Docs>
430430
</Member>
@@ -451,7 +451,7 @@
451451
<param name="left">Left hand side operand</param>
452452
<param name="right">Right hand side operand</param>
453453
<summary>Override != so the equals comparison using this operator will be the same as ! Equals</summary>
454-
<returns>True if the object values are not identical, false if they are identical</returns>
454+
<returns><see langword="true" /> if the object values are not identical, false if they are identical</returns>
455455
<remarks>To be added.</remarks>
456456
</Docs>
457457
</Member>

xml/Microsoft.Build.Tasks.Xaml/IXamlBuildTypeInspectionExtension.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<Docs>
3737
<param name="buildContext">The build context for the extension.</param>
3838
<summary>Indicates whether the XAML build type inspection extension executes.</summary>
39-
<returns>True if the XAML build type inspection extension executes; otherwise, false.</returns>
39+
<returns><see langword="true" /> if the XAML build type inspection extension executes; otherwise, <see langword="false" />.</returns>
4040
<remarks>To be added.</remarks>
4141
</Docs>
4242
</Member>

xml/Microsoft.Build.Tasks/CreateTemporaryVCProject.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
<Parameters />
101101
<Docs>
102102
<summary>Executes the **CreateTemporaryVCProject** task.</summary>
103-
<returns>true if task execution succeeded; otherwise, false.</returns>
103+
<returns><see langword="true" /> if task execution succeeded; otherwise, <see langword="false" />.</returns>
104104
<remarks>To be added.</remarks>
105105
<forInternalUseOnly />
106106
<altmember cref="T:Microsoft.Build.Tasks.CreateTemporaryVCProject" />

xml/Microsoft.Build.Utilities/FileTracker.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@
270270
<Docs>
271271
<param name="toolType">The executable type for the tool being tracked</param>
272272
<summary>Determines whether we must track out-of-proc, or whether inproc tracking will work.</summary>
273-
<returns>True if we need to track out-of-proc, false if inproc tracking is OK</returns>
273+
<returns><see langword="true" /> if we need to track out-of-proc, false if inproc tracking is OK</returns>
274274
<remarks>To be added.</remarks>
275275
</Docs>
276276
</Member>
@@ -299,7 +299,7 @@
299299
<param name="dllName">The tool being tracked.</param>
300300
<param name="cancelEventName">The name of the cancel event tracker should listen for, or null if there isn't one</param>
301301
<summary>Determines whether we must track out-of-proc, or whether inproc tracking will work.</summary>
302-
<returns>True if we need to track out-of-proc, false if inproc tracking is OK</returns>
302+
<returns><see langword="true" /> if we need to track out-of-proc, false if inproc tracking is OK</returns>
303303
<remarks>To be added.</remarks>
304304
</Docs>
305305
</Member>

xml/Microsoft.Extensions.Caching.Memory/IMemoryCache.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
<param name="key">An object identifying the requested entry.</param>
112112
<param name="value">The located value or null.</param>
113113
<summary>Gets the item associated with this key if present.</summary>
114-
<returns>True if the key was found.</returns>
114+
<returns><see langword="true" /> if the key was found.</returns>
115115
<remarks>To be added.</remarks>
116116
</Docs>
117117
</Member>

xml/Microsoft.Extensions.Configuration/ChainedConfigurationProvider.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@
222222
<param name="value">The value.</param>
223223
<summary>Tries to get a configuration value for the specified key.</summary>
224224
<returns>
225-
<c>True</c> if a value for the specified key was found, otherwise <c>false</c>.</returns>
225+
<see langword="true" /> if a value for the specified key was found; otherwise, <see langword="false" />.</returns>
226226
<remarks>To be added.</remarks>
227227
</Docs>
228228
</Member>

xml/Microsoft.Extensions.Configuration/ConfigurationProvider.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@
282282
<param name="key">The key to lookup.</param>
283283
<param name="value">The value found at key if one is found.</param>
284284
<summary>Attempts to find a value with the given key, returns true if one is found, false otherwise.</summary>
285-
<returns>True if key has a value, false otherwise.</returns>
285+
<returns><see langword="true" /> if key has a value, false otherwise.</returns>
286286
<remarks>To be added.</remarks>
287287
</Docs>
288288
</Member>

xml/Microsoft.Extensions.Configuration/FileConfigurationProvider.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
</Parameters>
9999
<Docs>
100100
<param name="disposing">
101-
<c>true</c> if invoked from <see cref="M:System.IDisposable.Dispose" />.</param>
101+
<see langword="true" /> if invoked from <see cref="M:System.IDisposable.Dispose" />.</param>
102102
<summary>Dispose the provider.</summary>
103103
<remarks>To be added.</remarks>
104104
</Docs>
@@ -127,7 +127,7 @@
127127
<Docs>
128128
<summary>Loads the contents of the file at <see cref="T:System.IO.Path" />.</summary>
129129
<remarks>To be added.</remarks>
130-
<exception cref="T:System.IO.FileNotFoundException">If Optional is <c>false</c> on the source and a
130+
<exception cref="T:System.IO.FileNotFoundException">If Optional is <see langword="false" /> on the source and a
131131
file does not exist at specified Path.</exception>
132132
</Docs>
133133
</Member>

xml/Microsoft.Extensions.Configuration/IConfigurationProvider.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@
167167
<param name="value">The value.</param>
168168
<summary>Tries to get a configuration value for the specified key.</summary>
169169
<returns>
170-
<c>True</c> if a value for the specified key was found, otherwise <c>false</c>.</returns>
170+
<see langword="true" /> if a value for the specified key was found; otherwise, <see langword="false" />.</returns>
171171
<remarks>To be added.</remarks>
172172
</Docs>
173173
</Member>

0 commit comments

Comments
 (0)