Skip to content

Commit 5ee4ea6

Browse files
authored
added missing return value + minor changes (#2033)
1 parent a20fc17 commit 5ee4ea6

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

xml/Microsoft.Build.Tasks/ResolveAssemblyReference.xml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -271,16 +271,16 @@
271271
<ReturnType>System.Boolean</ReturnType>
272272
</ReturnValue>
273273
<Docs>
274-
<summary>Gets or sets a Boolean value that specifies whether the resulting dependency graph is automatically treated as if there were an App.Config file passed in to the <see cref="P:Microsoft.Build.Tasks.ResolveAssemblyReference.AppConfigFile" /> property.</summary>
274+
<summary>Gets or sets a value that indicates whether the resulting dependency graph is automatically treated as if there were an App.Config file passed in to the <see cref="P:Microsoft.Build.Tasks.ResolveAssemblyReference.AppConfigFile" /> property.</summary>
275275
<value>
276-
<see langword="true" /> if the resulting dependency graph is automatically treated as if there were an App.Config file passed in to the <see cref="P:Microsoft.Build.Tasks.ResolveAssemblyReference.AppConfigFile" /> property.</value>
276+
<see langword="true" /> if the resulting dependency graph is automatically treated as if there were an App.Config file passed in to the <see cref="P:Microsoft.Build.Tasks.ResolveAssemblyReference.AppConfigFile" /> property; otherwise, <see langword="false" />.</value>
277277
<remarks>
278278
<format type="text/markdown"><![CDATA[
279279
280280
## Remarks
281281
The default value is `false`.
282282
283-
For more information about this property, see [ResolveAssemblyReference Task](https://msdn.microsoft.com/library/4d56d848-b29b-4dff-86a2-0a96c9e4a170)
283+
For more information about this property, see [ResolveAssemblyReference Task](/visualstudio/msbuild/resolveassemblyreference-task).
284284
285285
]]></format>
286286
</remarks>
@@ -537,7 +537,7 @@
537537
<ReturnType>System.Boolean</ReturnType>
538538
</ReturnValue>
539539
<Docs>
540-
<summary>Gets or sets a Boolean value that specifies whether related files such as .pdb files and .xml files will be found.</summary>
540+
<summary>Gets or sets a value that indicates whether related files such as .pdb files and .xml files will be found.</summary>
541541
<value>
542542
<see langword="true" /> if related files such as .pdb files and .xml files will be found; otherwise, <see langword="false" />.</value>
543543
<remarks>
@@ -579,7 +579,7 @@
579579
<ReturnType>System.Boolean</ReturnType>
580580
</ReturnValue>
581581
<Docs>
582-
<summary>Gets or sets a Boolean value that specifies whether satellite assemblies will be found.</summary>
582+
<summary>Gets or sets a value that indicates whether satellite assemblies will be found.</summary>
583583
<value>
584584
<see langword="true" /> if satellite assemblies will be found; otherwise, <see langword="false" />.</value>
585585
<remarks>
@@ -621,7 +621,7 @@
621621
<ReturnType>System.Boolean</ReturnType>
622622
</ReturnValue>
623623
<Docs>
624-
<summary>Gets or sets a Boolean value that specifies whether the serialization assemblies will be found.</summary>
624+
<summary>Gets or sets a value that indicates whether the serialization assemblies will be found.</summary>
625625
<value>
626626
<see langword="true" /> if the serialization assemblies will be found; otherwise, <see langword="false" />.</value>
627627
<remarks>
@@ -731,7 +731,7 @@
731731
<ReturnType>System.String[]</ReturnType>
732732
</ReturnValue>
733733
<Docs>
734-
<summary>A string that contains the names of the subsets of the specified target framework.</summary>
734+
<summary>Gets or sets a string that contains the names of the subsets of the specified target framework.</summary>
735735
<value>A string value that contains subset names.</value>
736736
<remarks>
737737
<format type="text/markdown"><![CDATA[
@@ -880,8 +880,8 @@
880880
<ReturnType>Microsoft.Build.Framework.ITaskItem[]</ReturnType>
881881
</ReturnValue>
882882
<Docs>
883-
<summary>An <see cref="T:Microsoft.Build.Framework.ITaskItem" /> that represents a list of XML files that contain assemblies that are expected to be in the target subset.</summary>
884-
<value>An <see cref="T:Microsoft.Build.Framework.ITaskItem" /> list of XML files.</value>
883+
<summary>Gets or sets an <see cref="T:Microsoft.Build.Framework.ITaskItem" /> that represents a list of XML files that contain assemblies that are expected to be in the target subset.</summary>
884+
<value>A list of XML files.</value>
885885
<remarks>
886886
<format type="text/markdown"><![CDATA[
887887
@@ -1114,10 +1114,10 @@
11141114
<ReturnType>Microsoft.Build.Framework.ITaskItem[]</ReturnType>
11151115
</ReturnValue>
11161116
<Docs>
1117-
<summary>A list of resolved SDK references which contain the sdk name, sdk location and the targeted configuration.
1117+
<summary>Gets or sets a list of resolved SDK references which contain the sdk name, sdk location and the targeted configuration.
11181118

11191119
These locations will only be searched if the reference has the SDKName metadata attached to it.</summary>
1120-
<value>Returns <see cref="T:Microsoft.Build.Framework.ITaskItem" />.</value>
1120+
<value>A list of resolved SDK references.</value>
11211121
<remarks>To be added.</remarks>
11221122
<forInternalUseOnly />
11231123
</Docs>
@@ -1228,7 +1228,7 @@
12281228
<ReturnType>System.String[]</ReturnType>
12291229
</ReturnValue>
12301230
<Docs>
1231-
<summary>Specifies the directories or special locations that are searched to find the files on disk that represent the assemblies.</summary>
1231+
<summary>Gets or sets the directories or special locations that are searched to find the files on disk that represent the assemblies.</summary>
12321232
<value>The directories or special locations that are searched to find the files on disk that represent the assemblies.</value>
12331233
<remarks>To be added.</remarks>
12341234
<forInternalUseOnly />
@@ -1296,7 +1296,7 @@
12961296
<ReturnType>System.Boolean</ReturnType>
12971297
</ReturnValue>
12981298
<Docs>
1299-
<summary>Gets or sets a Boolean value that specifies whether no messages are logged.</summary>
1299+
<summary>Gets or sets a value that indicates whether no messages are logged.</summary>
13001300
<value>
13011301
<see langword="true" /> if no messages are logged; otherwise, <see langword="false" />.</value>
13021302
<remarks>
@@ -1553,8 +1553,8 @@
15531553
<ReturnType>System.String[]</ReturnType>
15541554
</ReturnValue>
15551555
<Docs>
1556-
<summary>A list of target framework subset names that will be searched for in the target framework directories.</summary>
1557-
<value>To be added.</value>
1556+
<summary>Gets or sets a list of target framework subset names that will be searched for in the target framework directories.</summary>
1557+
<value>A list of target framework subset names.</value>
15581558
<remarks>To be added.</remarks>
15591559
<forInternalUseOnly />
15601560
</Docs>
@@ -1653,4 +1653,4 @@
16531653
</Docs>
16541654
</Member>
16551655
</Members>
1656-
</Type>
1656+
</Type>

0 commit comments

Comments
 (0)