File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -147,21 +147,21 @@ The following example shows how to batch each item in an item list one at a time
147
147
148
148
<Target Name =" ShowMessage" >
149
149
<Message
150
- Text = " Identity: " %(Identity)" -- Items in ExampColl: @(ExampColl)" />
150
+ Text = " Identity: ' %(Identity)' -- Items in ExampColl: @(ExampColl)" />
151
151
</Target >
152
152
153
153
</Project >
154
154
```
155
155
156
156
The [ Message task] ( ../msbuild/message-task.md ) displays the following information:
157
157
158
- ```
159
- Identity: " Item1" -- Items in ExampColl: Item1
160
- Identity: " Item2" -- Items in ExampColl: Item2
161
- Identity: " Item3" -- Items in ExampColl: Item3
162
- Identity: " Item4" -- Items in ExampColl: Item4
163
- Identity: " Item5" -- Items in ExampColl: Item5
164
- Identity: " Item6" -- Items in ExampColl: Item6
158
+ ``` output
159
+ Identity: ' Item1' -- Items in ExampColl: Item1
160
+ Identity: ' Item2' -- Items in ExampColl: Item2
161
+ Identity: ' Item3' -- Items in ExampColl: Item3
162
+ Identity: ' Item4' -- Items in ExampColl: Item4
163
+ Identity: ' Item5' -- Items in ExampColl: Item5
164
+ Identity: ' Item6' -- Items in ExampColl: Item6
165
165
```
166
166
167
167
## Filter item lists
You can’t perform that action at this time.
0 commit comments