aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Modules/Tango.FSE.Procedures/Procedures Assemblies/Microsoft.Build.xml
blob: 0f2a935b1489df94cf7211d9a1fdbfcdaa52611a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
<?xml version="1.0" encoding="utf-8"?>
<doc>
  <assembly>
    <name>Microsoft.Build</name>
  </assembly>
  <members>
    <member name="E:Microsoft.Build.Evaluation.ProjectCollection.ProjectAdded">
      <summary>Event that is fired when a project is added to the ProjectRootElementCache of this project collection.</summary>
    </member>
    <member name="E:Microsoft.Build.Evaluation.ProjectCollection.ProjectChanged">
      <summary>Raised when a <see cref="T:Microsoft.Build.Evaluation.Project" /> contained by this instance is directly changed.</summary>
    </member>
    <member name="E:Microsoft.Build.Evaluation.ProjectCollection.ProjectCollectionChanged">
      <summary>Raised when state is changed on this instance.</summary>
    </member>
    <member name="E:Microsoft.Build.Evaluation.ProjectCollection.ProjectXmlChanged">
      <summary>Raised when a <see cref="T:Microsoft.Build.Construction.ProjectRootElement" /> contained by this instance is changed.</summary>
    </member>
    <member name="M:Microsoft.Build.Construction.ElementLocation.#ctor">
      <summary>Initializes a new instance of the <see cref="T:Microsoft.Build.Construction.ElementLocation" /> class.</summary>
    </member>
    <member name="M:Microsoft.Build.Construction.ElementLocation.Equals(System.Object)">
      <summary>Override Equals so that identical fields imply equal objects.</summary>
      <param name="obj">The element location to compare to this element location.</param>
      <returns>Returns  <see langword="true" /> if the objects are equal; otherwise, returns <see langword="false" />.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ElementLocation.GetHashCode">
      <summary>Get reasonable hash code.</summary>
      <returns>Returns <see cref="T:System.Int32" />.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ElementLocation.ToString">
      <summary>Location of element.</summary>
      <returns>Returns <see cref="T:System.String" />.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectElementContainer.AppendChild(Microsoft.Build.Construction.ProjectElement)">
      <summary>Appends the <paramref name="child" /> element as the last child of this project container. </summary>
      <param name="child">The project element to be appended.</param>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectElementContainer.InsertAfterChild(Microsoft.Build.Construction.ProjectElement,Microsoft.Build.Construction.ProjectElement)">
      <summary>Inserts the <paramref name="child" /> element after the <paramref name="reference" /> element. </summary>
      <param name="child">The project element to be inserted.</param>
      <param name="reference">The project element to be inserted after.</param>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectElementContainer.InsertBeforeChild(Microsoft.Build.Construction.ProjectElement,Microsoft.Build.Construction.ProjectElement)">
      <summary>Inserts the <paramref name="child" /> element before the <paramref name="reference" /> element.</summary>
      <param name="child">The project element to be inserted.</param>
      <param name="reference">The project element to be inserted before.</param>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectElementContainer.PrependChild(Microsoft.Build.Construction.ProjectElement)">
      <summary>Prepends the <paramref name="child" /> element as the first child of this project container. </summary>
      <param name="child">The project element to be prepended.</param>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectElementContainer.RemoveAllChildren">
      <summary>Removes all the children, if any, from this project container.</summary>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectElementContainer.RemoveChild(Microsoft.Build.Construction.ProjectElement)">
      <summary>Removes a <paramref name="child" /> element from this project container.</summary>
      <param name="child">The project element to be removed.</param>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectImportGroupElement.AddImport(System.String)">
      <summary>Adds a new import after the last import in this import group.</summary>
      <param name="project">The project to import.</param>
      <returns>Returns the new import.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectItemDefinitionElement.AddMetadata(System.String,System.String)">
      <summary>Adds metadata to this item definition. Appends the metadata to any existing metadata.</summary>
      <param name="name">Name of the metadata.</param>
      <param name="unevaluatedValue">Metadata to be added.</param>
      <returns>Returns the modified metadata.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectItemDefinitionGroupElement.AddItemDefinition(System.String)">
      <summary>Adds a new item definition after the last child in this item definition group.</summary>
      <param name="itemType">Element name of item to be added.</param>
      <returns>Returns the new item definition.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectItemElement.AddMetadata(System.String,System.String)">
      <summary>Adds metadata to this item. Appends the metadata to any existing metadata.</summary>
      <param name="name">Name of metadata.</param>
      <param name="unevaluatedValue">Metadata to be added.</param>
      <returns>Returns the modified metadata.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectItemGroupElement.AddItem(System.String,System.String)">
      <summary>Adds a new item to the item group. Items are ordered first by item element name, and then by the Include attribute.</summary>
      <param name="itemType">Item element name of the item to be added.</param>
      <param name="include">Include attribute of the item to be added.</param>
      <returns>Returns the new item element.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectItemGroupElement.AddItem(System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})">
      <summary>Adds a new item with metadata to the item group. Items are ordered first by item element name, and then by the Include attribute.</summary>
      <param name="itemType">Item element name of the item to be added.</param>
      <param name="include">Include attribute of the item to be added.</param>
      <param name="metadata">Metadata to be added. </param>
      <returns>Returns the new item element.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectPropertyGroupElement.AddProperty(System.String,System.String)">
      <summary>Appends a new property to the property group. </summary>
      <param name="name">The property name.</param>
      <param name="unevaluatedValue">The property value.</param>
      <returns>Returns the new property. </returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectPropertyGroupElement.SetProperty(System.String,System.String)">
      <summary>Updates the value of the given property in the property group. </summary>
      <param name="name">The name of the property to be updated.</param>
      <param name="unevaluatedValue">The new property value.</param>
      <returns>Returns the updated property. </returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.AddImport(System.String)">
      <summary>Adds a project import to this project.</summary>
      <param name="project">The project to be imported.</param>
      <returns>Returns the added project import.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.AddImportGroup">
      <summary>Creates an import group at the end of this project.</summary>
      <returns>Returns the import group created at the end of this project.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.AddItem(System.String,System.String)">
      <summary>Adds an item to this project.</summary>
      <param name="itemType">The item type of the item to be added.</param>
      <param name="include">The Include value of the item to be added.</param>
      <returns>Returns the added item.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.AddItem(System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})">
      <summary>Adds an item with metadata to this project.</summary>
      <param name="itemType">The item type of the item to be added.</param>
      <param name="include">The Include value of the item to be added.</param>
      <param name="metadata">The metadata to be added.</param>
      <returns>Returns the added item.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.AddItemDefinition(System.String)">
      <summary>Adds an item definition to this project.</summary>
      <param name="itemType">The item type of the item definition to be added.</param>
      <returns>Returns the added item definition.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.AddItemDefinitionGroup">
      <summary>Adds an item definition group to this project.</summary>
      <returns>Returns the added item definition group.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.AddItemGroup">
      <summary>Creates and adds an item group to this project.</summary>
      <returns>Returns the added item group.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.AddProperty(System.String,System.String)">
      <summary>Updates or adds a property to this project.</summary>
      <param name="name">The name of the property to be updated or added.</param>
      <param name="value">The value of the property to be updated or added.</param>
      <returns>Returns the updated or added property.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.AddPropertyGroup">
      <summary>Adds a new property group to this project.</summary>
      <returns>Returns the added property group.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.AddTarget(System.String)">
      <summary>Adds a target to the project.</summary>
      <param name="name">The name of the target to be added.</param>
      <returns>Returns the added target.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.AddUsingTask(System.String,System.String,System.String)">
      <summary>Adds a UsingTask Element (MSBuild) to the project.</summary>
      <param name="name">The task name.</param>
      <param name="assemblyFile">The file path to the assembly.</param>
      <param name="assemblyName">The name of the assembly to load.</param>
      <returns>Returns the added UsingTask element.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.Create">
      <summary>Creates and initializes an in-memory, empty ProjectRootElement instance and adds it to the global project collection. </summary>
      <returns>Returns the new project root.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.Create(Microsoft.Build.Evaluation.ProjectCollection)">
      <summary>Creates and initializes an in-memory, empty ProjectRootElement instance and adds it to the specified project collection.</summary>
      <param name="projectCollection">The project collection to be added to.</param>
      <returns>Returns the new project root.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.Create(System.String)">
      <summary>Creates and initializes an in-memory, empty ProjectRootElement instance and adds it to the global project collection. The new project root is initialized from data found at the specified file path.</summary>
      <param name="path">The file path to the data used for initialization.</param>
      <returns>Returns the new project root.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.Create(System.String,Microsoft.Build.Evaluation.ProjectCollection)">
      <summary>Creates and initializes an in-memory, empty ProjectRootElement instance and adds it to the specified project collection. The new project root is initialized from data found at the specified file path.</summary>
      <param name="path">The file path to the data used for initialization.</param>
      <param name="projectCollection">The project collection to be added to.</param>
      <returns>Returns the new project root.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.Create(System.Xml.XmlReader)">
      <summary>Creates and initializes an in-memory, empty ProjectRootElement instance and adds it to the global project collection. The new project root is initialized from data read from the specified XmlReader. </summary>
      <param name="xmlReader">The XML reader used for initialization.</param>
      <returns>Returns the new project root.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.Create(System.Xml.XmlReader,Microsoft.Build.Evaluation.ProjectCollection)">
      <summary>Creates and initializes an in-memory, empty ProjectRootElement instance and adds it to the specified project collection. The new project root is initialized from data read from the specified XmlReader. </summary>
      <param name="xmlReader">The XML reader used for initialization.</param>
      <param name="projectCollection">The project collection to be added to.</param>
      <returns>Returns the new project root.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateChooseElement">
      <summary>Creates a Choose Element (MSBuild). </summary>
      <returns>A <see cref="T:Microsoft.Build.Construction.ProjectChooseElement" /> object.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateImportElement(System.String)">
      <summary>Creates an Import Element (MSBuild). </summary>
      <param name="project">The project to be imported.</param>
      <returns>Returns the created Import element.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateImportGroupElement">
      <summary>Creates an import group. </summary>
      <returns>Returns the import group.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateItemDefinitionElement(System.String)">
      <summary>Creates an item definition. </summary>
      <param name="itemType">The item type of the item definition.</param>
      <returns>Returns the item definition.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateItemDefinitionGroupElement">
      <summary>Creates an item definition group. </summary>
      <returns>Returns the item definition group.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateItemElement(System.String)">
      <summary>Creates an item.</summary>
      <param name="itemType">The item type of the item.</param>
      <returns>Returns the item.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateItemElement(System.String,System.String)">
      <summary>Creates an item with the specifed Include value.</summary>
      <param name="itemType">The item type of the item.</param>
      <param name="include">The Include value of the item.</param>
      <returns>Returns the item.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateItemGroupElement">
      <summary>Creates an item group. </summary>
      <returns>Returns the item group.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateMetadataElement(System.String)">
      <summary>Creates a metadata node with the specified name. </summary>
      <param name="name">The name of the metadata.</param>
      <returns>Returns the metadata node.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateMetadataElement(System.String,System.String)">
      <summary>Creates a metadata node with the specified name and value. </summary>
      <param name="name">The name of the metadata.</param>
      <param name="unevaluatedValue">The value of the metadata.</param>
      <returns>Returns the metadata element.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateOnErrorElement(System.String)">
      <summary>Creates an OnError Element (MSBuild). </summary>
      <param name="executeTargets">The targets to execute if a task fails.</param>
      <returns>Returns the OnError element.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateOtherwiseElement">
      <summary>Creates an Otherwise Element (MSBuild). Caller must add it to the location of choice in the project.</summary>
      <returns>Returns the Otherwise element.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateOutputElement(System.String,System.String,System.String)">
      <summary>Creates an Output Element (MSBuild).</summary>
      <param name="taskParameter">The name of the task's output parameter.</param>
      <param name="itemType">The item that receives the task's output parameter value.</param>
      <param name="propertyName">The property that receives the task's output parameter value.</param>
      <returns>Returns the Output element.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateProjectExtensionsElement">
      <summary>Creates a ProjectExtensions Element (MSBuild). </summary>
      <returns>Returns the ProjectExtensions element.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreatePropertyElement(System.String)">
      <summary>Creates a property. </summary>
      <param name="name">The name of the property.</param>
      <returns>Returns the property.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreatePropertyGroupElement">
      <summary>Creates a property group. </summary>
      <returns>Returns the property group.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateTargetElement(System.String)">
      <summary>Creates a target. </summary>
      <param name="name">The name of the target.</param>
      <returns>Returns the target.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateTaskElement(System.String)">
      <summary>Creates a task. </summary>
      <param name="name">The name of the task.</param>
      <returns>Returns the task.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateUsingTaskBodyElement(System.String,System.String)">
      <summary>Creates a task to be referenced by a UsingTask Element (MSBuild). </summary>
      <param name="evaluate">The string to evaluate.</param>
      <param name="body">The body to add.</param>
      <returns>Returns the task.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateUsingTaskElement(System.String,System.String,System.String)">
      <summary>Adds a UsingTask Element (MSBuild) to the project.</summary>
      <param name="taskName">The task name.</param>
      <param name="assemblyFile">The file path to the assembly.</param>
      <param name="assemblyName">The name of the assembly to load.</param>
      <returns>Returns the UsingTask element.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateUsingTaskElement(System.String,System.String,System.String,System.String,System.String)">
      <summary>Adds a UsingTask Element (MSBuild) to the project.</summary>
      <param name="taskName">The task name.</param>
      <param name="assemblyFile">The file path to the assembly.</param>
      <param name="assemblyName">The name of the assembly to load.</param>
      <param name="runtime">Optional runtime specifier.</param>
      <param name="architecture">Optional architecture specifier.</param>
      <returns>Returns the UsingTask element.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateUsingTaskParameterElement(System.String,System.String,System.String,System.String)">
      <summary>Creates a parameter for use in a UsingTask Element (MSBuild) parameter group.</summary>
      <param name="name">The name of the UsingTask element.</param>
      <param name="output">Stores outputs from the task in the project file.</param>
      <param name="required">A user-defined task parameter that contains the parameter value as its value.</param>
      <param name="parameterType">The type of the parameter.</param>
      <returns>Returns the parameter.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateUsingTaskParameterGroupElement">
      <summary>Creates a parameter group for a UsingTask Element (MSBuild). </summary>
      <returns>Returns the parameter group.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.CreateWhenElement(System.String)">
      <summary>Creates a When Element (MSBuild) with a specified Condition attribute. </summary>
      <param name="condition">The value of the Condition attribute.</param>
      <returns>Returns the When element.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.Open(System.String)">
      <summary>Initializes a project root in the global project collection by loading data from the specified file path. </summary>
      <param name="path">The file path to the data.</param>
      <returns>Returns the initialized project root.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.Open(System.String,Microsoft.Build.Evaluation.ProjectCollection)">
      <summary>Initializes a project root in the specified project collection by loading data from the specified file path. </summary>
      <param name="path">The file path to the data.</param>
      <param name="projectCollection">The project collection containing the project to be initialized.</param>
      <returns>Returns the initialized project root.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.Save">
      <summary>Saves the project, if modified, to the file system. </summary>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.Save(System.IO.TextWriter)">
      <summary>Saves the project to the specified text writer, whether modified or not. </summary>
      <param name="writer">The text writer to write the project to.</param>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.Save(System.String)">
      <summary>Saves the project, if modified or if the file path to storage has changed.</summary>
      <param name="path">The file path to the project in storage.</param>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.Save(System.String,System.Text.Encoding)">
      <summary>Saves the project, if modified or if the file path to storage has changed. Uses the specified character encoding..</summary>
      <param name="path">The file path to the project in storage.</param>
      <param name="encoding">The character encoding used to save the project.</param>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.Save(System.Text.Encoding)">
      <summary>Saves the project, if modified, using the specified character encoding.</summary>
      <param name="saveEncoding">The character encoding used to save the project.</param>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.TryOpen(System.String)">
      <summary>Gets the project root in the global project collection that was loaded into memory from the specified file path. or null if it is not currently in memory. </summary>
      <param name="path">The path of the ProjectRootElement, cannot be null.</param>
      <returns>Returns the project root. Returns null if no project was loaded into memory from the specified file path.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectRootElement.TryOpen(System.String,Microsoft.Build.Evaluation.ProjectCollection)">
      <summary>Gets the project root in the specified project collection that was loaded into memory from the specified file path. or null if it is not currently in memory. </summary>
      <param name="path">The path of the ProjectRootElement, cannot be null.</param>
      <param name="projectCollection">The project collection to search for the project root.</param>
      <returns>Returns the project root. Returns null if no project was loaded into memory from the specified file path.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectTargetElement.AddItemGroup">
      <summary>Adds an item group after the last child.</summary>
      <returns>Returns the added item group.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectTargetElement.AddPropertyGroup">
      <summary>Adds a property group after the last child.</summary>
      <returns>Returns the added property group.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectTargetElement.AddTask(System.String)">
      <summary>Adds a task to this target after any existing task.</summary>
      <param name="taskName">The name of the task to add.</param>
      <returns>Returns the added task.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectTaskElement.AddOutputItem(System.String,System.String)">
      <summary>Adds an Output item after the last child.</summary>
      <param name="taskParameter">The name of the task which outputs to the item.</param>
      <param name="itemType">The item type of the new item whose value is set to the output of the task.</param>
      <returns>Returns the added Output item.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectTaskElement.AddOutputItem(System.String,System.String,System.String)">
      <summary>Adds a conditioned Output item to this task after the last child.</summary>
      <param name="taskParameter">The name of the parameter.</param>
      <param name="itemType">The item type of the item.</param>
      <param name="condition">The condition of the parameter.</param>
      <returns>Returns the added conditioned Output item.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectTaskElement.AddOutputProperty(System.String,System.String)">
      <summary>Adds an Output property to this task after the last child.</summary>
      <param name="taskParameter">The name of the parameter.</param>
      <param name="propertyName">The name of the property.</param>
      <returns>Returns the added Output property.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectTaskElement.AddOutputProperty(System.String,System.String,System.String)">
      <summary>Adds a conditioned Output property to this task after the last child.</summary>
      <param name="taskParameter">The name of the parameter.</param>
      <param name="propertyName">The name of the property.</param>
      <param name="condition">The condition of the property.</param>
      <returns>Returns the added conditioned Output property.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectTaskElement.GetParameter(System.String)">
      <summary>Gets the value of the parameter with the specified name.</summary>
      <param name="name">The name of the parameter.</param>
      <returns>Returns the value of the parameter with the specified name. If no parameter by that name exists in the task, returns an empty string.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectTaskElement.RemoveAllParameters">
      <summary>Removes all parameters from the task. Does not remove any ContinueOnError and/or Condition attributes.</summary>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectTaskElement.RemoveParameter(System.String)">
      <summary>Removes any parameter on this task with the specified name. If no parameter by that name exists in the task, does nothing.</summary>
      <param name="name">The name of the parameter to remove.</param>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectTaskElement.SetParameter(System.String,System.String)">
      <summary>Updates or adds a parameter on this task</summary>
      <param name="name">The name of the parameter to update or add.</param>
      <param name="unevaluatedValue">The value of the parameter.</param>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectUsingTaskElement.AddParameterGroup">
      <summary>Adds a new ParameterGroup element to this inline task. </summary>
      <returns>Returns the new parameter group.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.ProjectUsingTaskElement.AddUsingTaskBody(System.String,System.String)">
      <summary>Adds a new TaskBody element to this inline task.</summary>
      <param name="evaluate">A flag which, if true, expands the item and property values in the task body. This flag is true by default.</param>
      <param name="taskBody">The body of the task as a string.</param>
      <returns>Returns the new task body.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.UsingTaskParameterGroupElement.AddParameter(System.String)">
      <summary>Adds a parameter to this parameter group.</summary>
      <param name="name">The name of the parameter to be added.</param>
      <returns>The new parameter.</returns>
    </member>
    <member name="M:Microsoft.Build.Construction.UsingTaskParameterGroupElement.AddParameter(System.String,System.String,System.String,System.String)">
      <summary>Adds a parameter to this parameter group, using the given name, type, and attributes.</summary>
      <param name="name">The name of the parameter to be added.</param>
      <param name="output">The value of the Output attribute.</param>
      <param name="required">The value of the Required attribute.</param>
      <param name="parameterType">The type of the parameter.</param>
      <returns>Returns the new parameter.</returns>
    </member>
    <member name="M:Microsoft.Build.Debugging.DebuggerManager.IslandThread.IslandWorker(Microsoft.Build.Debugging.DebuggerManager.IslandThread)">
      <summary>Private entry point called from islands. Must be public so that the islands can invoke it. Called on debugger worker thread.</summary>
      <param name="controller">The thread calling the entry point.</param>
    </member>
    <member name="M:Microsoft.Build.Debugging.DebuggerManager.IslandThread.System#IDisposable#Dispose">
      <summary>Releases all resources used by the current instance of the <see cref="T:Microsoft.Build.Debugging.DebuggerManager.IslandThread" /> class.</summary>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor">
      <summary>Constructs an empty project using the global project collection global properties and default tools version.</summary>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor(Microsoft.Build.Construction.ProjectRootElement)">
      <summary>Constructs an empty project and evaluates it using the given project root and the global project collection global properties and default tools version.</summary>
      <param name="xml">ProjectRootElement to use for evaluation.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor(Microsoft.Build.Construction.ProjectRootElement,System.Collections.Generic.IDictionary{System.String,System.String},System.String)">
      <summary>Constructs an empty project and evaluates it using the given project root and with the given global properties and given tools version.</summary>
      <param name="xml">The project root to use for evaluation.</param>
      <param name="globalProperties">Global properties to evaluate with. May be null in which case the containing project collection's global properties will be used.</param>
      <param name="toolsVersion">Tools version to evaluate with. May be null.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor(Microsoft.Build.Construction.ProjectRootElement,System.Collections.Generic.IDictionary{System.String,System.String},System.String,Microsoft.Build.Evaluation.ProjectCollection)">
      <summary>Constructs a project and evaluates it using the given project root and with the given global properties and given tools version.</summary>
      <param name="xml">The project root to use for evaluation.</param>
      <param name="globalProperties">Global properties to evaluate with. May be null in which case the containing project collection's global properties will be used.</param>
      <param name="toolsVersion">Tools version to evaluate with. May be null.</param>
      <param name="projectCollection">The project collection the project is added to.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor(Microsoft.Build.Construction.ProjectRootElement,System.Collections.Generic.IDictionary{System.String,System.String},System.String,Microsoft.Build.Evaluation.ProjectCollection,Microsoft.Build.Evaluation.ProjectLoadSettings)">
      <summary>Constructs a project and evaluates it using the given project root and with the given global properties, given tools version, and given load settings.</summary>
      <param name="xml">The project root to use for evaluation.</param>
      <param name="globalProperties">Global properties to evaluate with. May be null in which case the containing project collection's global properties will be used.</param>
      <param name="toolsVersion">Tools version to evaluate with. May be null.</param>
      <param name="projectCollection">The project collection the project is added to. May not be null.</param>
      <param name="loadSettings">The load settings to use for evaluation.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor(Microsoft.Build.Construction.ProjectRootElement,System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.String,Microsoft.Build.Evaluation.ProjectCollection,Microsoft.Build.Evaluation.ProjectLoadSettings)">
      <summary>Constructs a project and evaluates it using the given project root and with the given global properties, tools and sub-toolset versions, project collection, and load settings.</summary>
      <param name="xml">The project root to use for evaluation.</param>
      <param name="globalProperties">Global properties to evaluate with. May be null in which case the containing project collection's global properties will be used.</param>
      <param name="toolsVersion">Tools version to evaluate with. May be null.</param>
      <param name="subToolsetVersion">Sub toolset version to evaluate with. May be null.</param>
      <param name="projectCollection">The project collection the project is added to. May not be null.</param>
      <param name="loadSettings">The load settings to use for evaluation.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor(Microsoft.Build.Evaluation.ProjectCollection)">
      <summary>Constructs an empty project using the given project collection global properties and default tools version.</summary>
      <param name="projectCollection">The project collection that the new project is added to.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor(System.Collections.Generic.IDictionary{System.String,System.String},System.String,Microsoft.Build.Evaluation.ProjectCollection)">
      <summary>Constructs an empty project, to be evaluated with the given project collection and with the given global properties and given tools version. </summary>
      <param name="globalProperties">Global properties to evaluate with. May be null in which case the containing project collection's global properties will be used.</param>
      <param name="toolsVersion">The tools version used to evaluate the project. May be null.</param>
      <param name="projectCollection">The project collection the new project will be added to.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor(System.String)">
      <summary>Constructs a project and evaluates it from the given source project file and with the global project collection global properties and default tools version. </summary>
      <param name="projectFile">The source project file to be evaluated.</param>
      <exception cref="T:Microsoft.Build.Exceptions.InvalidProjectFileException">If the evaluation fails.</exception>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.String)">
      <summary>Constructs a project and evaluates it from the given source project file and with the given global properties and given tools version. </summary>
      <param name="projectFile">The path to the source project file to be evaluated.</param>
      <param name="globalProperties">Global properties to evaluate with. May be null in which case the containing project collection's global properties will be used.</param>
      <param name="toolsVersion">Tools version to evaluate with. May be null.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.String,Microsoft.Build.Evaluation.ProjectCollection)">
      <summary>Constructs a project and evaluates it from the given source project file and with the given global properties and given tools version. </summary>
      <param name="projectFile">The path to the source project file to be evaluated.</param>
      <param name="globalProperties">The global properties. May be null.</param>
      <param name="toolsVersion">The tools version. May be null.</param>
      <param name="projectCollection">The project collection the project is added to. May not be null.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.String,Microsoft.Build.Evaluation.ProjectCollection,Microsoft.Build.Evaluation.ProjectLoadSettings)">
      <summary>Constructs a project and evaluates it from the given source project file and with the given global properties, given tools version, and given load settings. </summary>
      <param name="projectFile">The path to the source project file to be evaluated.</param>
      <param name="globalProperties">Global properties to evaluate with. May be null in which case the containing project collection's global properties will be used.</param>
      <param name="toolsVersion">The tools version. May be null.</param>
      <param name="projectCollection">The project collection the project is added to. May not be null.</param>
      <param name="loadSettings">The load settings to use for evaluation.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.String,Microsoft.Build.Evaluation.ProjectCollection,Microsoft.Build.Evaluation.ProjectLoadSettings)">
      <summary>Constructs a project and evaluates it from the given source project file and with the given global properties, tools and sub-toolset versions, project collection, and load settings.</summary>
      <param name="projectFile">The path to the source project file to be evaluated.</param>
      <param name="globalProperties">Global properties to evaluate with. May be null in which case the containing project collection's global properties will be used.</param>
      <param name="toolsVersion">The tools version. May be null.</param>
      <param name="subToolsetVersion">The sub toolset version. May be null.</param>
      <param name="projectCollection">The project collection the project is added to. May not be null.</param>
      <param name="loadSettings">The load settings to use for evaluation.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor(System.Xml.XmlReader)">
      <summary>Constructs a project and evaluates the source code from the given XML reader. The source code is evaluated with the global project collection global properties and default tools version. </summary>
      <param name="xmlReader">Xml reader to read project source code from.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor(System.Xml.XmlReader,System.Collections.Generic.IDictionary{System.String,System.String},System.String)">
      <summary>Constructs a project and evaluates the source code from the given XML reader. The source code is evaluated with the given global properties and given tools version. </summary>
      <param name="xmlReader">Xml reader to read project source code from.</param>
      <param name="globalProperties">Global properties to evaluate with. May be null in which case the containing project collection's global properties will be used.</param>
      <param name="toolsVersion">Tools version to evaluate with. May be null.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor(System.Xml.XmlReader,System.Collections.Generic.IDictionary{System.String,System.String},System.String,Microsoft.Build.Evaluation.ProjectCollection)">
      <summary>Constructs a project and evaluates the source code from the given XML reader. The source code is evaluated with the given global properties and given tools version. </summary>
      <param name="xmlReader">Xml reader to read project source code from.</param>
      <param name="globalProperties">Global properties to evaluate with. May be null in which case the containing project collection's global properties will be used.</param>
      <param name="toolsVersion">Tools version to evaluate with. May be null.</param>
      <param name="projectCollection">The project collection the project is added to. May not be null.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor(System.Xml.XmlReader,System.Collections.Generic.IDictionary{System.String,System.String},System.String,Microsoft.Build.Evaluation.ProjectCollection,Microsoft.Build.Evaluation.ProjectLoadSettings)">
      <summary>Constructs a project and evaluates the source code from the given XML reader. The source code is evaluated with the given global properties and given tools version. </summary>
      <param name="xmlReader">Xml reader from which to read project source code.</param>
      <param name="globalProperties">Global properties to evaluate with. May be null in which case the containing project collection's global properties will be used.</param>
      <param name="toolsVersion">Tools version to evaluate with. May be null.</param>
      <param name="projectCollection">The project collection the project is added to. May not be null.</param>
      <param name="loadSettings">The load settings to use for evaluation.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.#ctor(System.Xml.XmlReader,System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.String,Microsoft.Build.Evaluation.ProjectCollection,Microsoft.Build.Evaluation.ProjectLoadSettings)">
      <summary>Constructs a project and evaluates the source code from the given XML reader. The source code is evaluated with the given global properties, tools and sub-toolset versions, project collection, and load settings.</summary>
      <param name="xmlReader">Xml reader to read project source code from.</param>
      <param name="globalProperties">Global properties to evaluate with. May be null in which case the containing project collection's global properties will be used.</param>
      <param name="toolsVersion">Tools version to evaluate with. May be null.</param>
      <param name="subToolsetVersion">Sub Toolset version to evaluate with. May be null.</param>
      <param name="projectCollection">The project collection the project is added to. May not be null.</param>
      <param name="loadSettings">The load settings to use for evaluation.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.AddItem(System.String,System.String)">
      <summary>Adds an item with no metadata to the project. </summary>
      <param name="itemType">The item type of the added item.</param>
      <param name="unevaluatedInclude">Include attribute of the item to be added.</param>
      <returns>Returns the added item.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.AddItem(System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})">
      <summary>Adds an item with the given metadata to the project. </summary>
      <param name="itemType">The item type of the added item.</param>
      <param name="unevaluatedInclude">Include attribute of the item to be added.</param>
      <param name="metadata">The metadata of the added item.</param>
      <returns>Returns the added item.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.AddItemFast(System.String,System.String)">
      <summary>Adds an item with no metadata to the project.  Makes no effort to see if an existing wildcard would already match the new item, unless it is the first item in an item group.  Makes no effort to locate the new item near similar items.</summary>
      <param name="itemType">The item type to be added.</param>
      <param name="unevaluatedInclude">The unevaluated Include attribute to be added to the item.</param>
      <returns>Returns a list of the project items added.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.AddItemFast(System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})">
      <summary>Adds an item with metadata to the project. Metadata may be null, indicating no metadata. Makes no effort to see if an existing wildcard would already match the new item, unless it is the first item in an item group. Makes no effort to locate the new item near similar items.</summary>
      <param name="itemType">The item type to be added.</param>
      <param name="unevaluatedInclude">The unevaluated Include attribute to be added to the item.</param>
      <param name="metadata">The metadata to be added.</param>
      <returns>Returns a list of the project items added.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.Build">
      <summary>Builds this project, using the default targets. </summary>
      <returns>Returns true on success; false otherwise. </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.Build(Microsoft.Build.Framework.ILogger)">
      <summary>Builds this project, using the default targets and the given logger.</summary>
      <param name="logger">The logger to be used during the build.</param>
      <returns>Returns true on success; false otherwise. </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.Build(System.Collections.Generic.IEnumerable{Microsoft.Build.Framework.ILogger})">
      <summary>Builds this project, using the default targets and the given loggers.</summary>
      <param name="loggers">An enumerator over all loggers to be used during the build.</param>
      <returns>Returns true on success; false otherwise. </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.Build(System.Collections.Generic.IEnumerable{Microsoft.Build.Framework.ILogger},System.Collections.Generic.IEnumerable{Microsoft.Build.Logging.ForwardingLoggerRecord})">
      <summary>Builds this project, using the default targets and the given loggers and remote loggers.</summary>
      <param name="loggers">The loggers to be used during the build.</param>
      <param name="remoteLoggers">The remote loggers to be used during the build.</param>
      <returns>Returns true on success; false otherwise. </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.Build(System.String)">
      <summary>Builds this project, building the given target.</summary>
      <param name="target">The target to be built.</param>
      <returns>Returns true on success; false otherwise. </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.Build(System.String,System.Collections.Generic.IEnumerable{Microsoft.Build.Framework.ILogger})">
      <summary>Builds this project, building the given target and using the given loggers.</summary>
      <param name="target">The target to be built.</param>
      <param name="loggers">The loggers to be used during the build.</param>
      <returns>Returns true on success; false otherwise. </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.Build(System.String,System.Collections.Generic.IEnumerable{Microsoft.Build.Framework.ILogger},System.Collections.Generic.IEnumerable{Microsoft.Build.Logging.ForwardingLoggerRecord})">
      <summary>Builds this project, building the given target and using the given loggers and remote loggers.</summary>
      <param name="target">The target to be built.</param>
      <param name="loggers">The loggers to be used during the build.</param>
      <param name="remoteLoggers">The remote loggers to be used during the build.</param>
      <returns>Returns true on success; false otherwise. </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.Build(System.String[])">
      <summary>Builds this project, building the given targets.</summary>
      <param name="targets">An array of targets to be built.</param>
      <returns>Returns true on success; false otherwise. </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.Build(System.String[],System.Collections.Generic.IEnumerable{Microsoft.Build.Framework.ILogger})">
      <summary>Builds this project, building the given targets and using the given loggers.</summary>
      <param name="targets">The targets to be built.</param>
      <param name="loggers">The loggers to be used during the build.</param>
      <returns>Returns true on success; false otherwise. </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.Build(System.String[],System.Collections.Generic.IEnumerable{Microsoft.Build.Framework.ILogger},System.Collections.Generic.IEnumerable{Microsoft.Build.Logging.ForwardingLoggerRecord})">
      <summary>Builds this project, building the given targets and using the given loggers and remote loggers.</summary>
      <param name="targets">The targets to be built.</param>
      <param name="loggers">The loggers to be used during the build.</param>
      <param name="remoteLoggers">The remote loggers to be used during the build.</param>
      <returns>Returns true on success; false otherwise. </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.CreateProjectInstance">
      <summary>Creates a project instance based on this project, but completely disconnected from it. </summary>
      <returns>Returns the project instance.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.CreateProjectInstance(Microsoft.Build.Execution.ProjectInstanceSettings)">
      <summary>Creates a project instance based on this project, but completely disconnected from it.</summary>
      <param name="settings">Determines whether created project instance is immutable and whether it contains a look up table to improve performance.</param>
      <returns>Returns the project instance.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.ExpandString(System.String)">
      <summary>Evaluates the given string by expanding items and properties. The string is evaluated as if it were found at the very end of the project file. </summary>
      <param name="unexpandedValue">The string to be evaluated.</param>
      <returns>Returns the evaluated string.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.GetEvaluatedItemIncludeEscaped(Microsoft.Build.Evaluation.ProjectItem)">
      <summary>Gets evaluated, escaped value of the Include attribute of the provided items.</summary>
      <param name="item">The item to be evaluated and escaped.</param>
      <returns>Returns the evaluated, escaped value of the Include attribute of the provided items.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.GetEvaluatedItemIncludeEscaped(Microsoft.Build.Evaluation.ProjectItemDefinition)">
      <summary>Gets the evaluated, escaped value of the Include attribute of the provided item definition.</summary>
      <param name="item">The item definition to be evaluated and escaped.</param>
      <returns>Returns the value of the Include attribute.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.GetItems(System.String)">
      <summary>Gets all the items in the project of the given item type. If there are none, returns an empty list. Use AddItem or RemoveItem to modify items in this project.</summary>
      <param name="itemType">The item type to be retrieved.</param>
      <returns>Returns all the items in the project of the given item type. Returns an empty list if there are no items with the given item name. </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.GetItemsByEvaluatedInclude(System.String)">
      <summary>Gets all items that have the given evaluated Include attribute. </summary>
      <param name="evaluatedInclude">The evaluated Include attribute.</param>
      <returns>Returns all items that have the given evaluated Include attribute.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.GetItemsIgnoringCondition(System.String)">
      <summary>Gets all the items in the project of the given type, whether or not their Condition attribute evaluates to true. This is a read-only list: use AddItem or RemoveItem to modify items in this project.</summary>
      <param name="itemType">The item type to be retrieved.</param>
      <returns>Returns all the items in the project of the given type, whether or not their Condition attribute evaluates to true. </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.GetLogicalProject">
      <summary>Gets an enumerator over all the elements in the "logical project". The logical project is defined as the unevaluated project obtained from the single MSBuild file that is the result of inlining the text of all imports of the original MSBuild project manifest file.</summary>
      <returns>Returns an enumerator over all the elements in the "logical project". </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.GetMetadataValueEscaped(Microsoft.Build.Evaluation.ProjectItem,System.String)">
      <summary>Gets the escaped value of the metadatum with the provided name on the provided item.</summary>
      <param name="item">The item whose metadata is to be escaped.</param>
      <param name="name">The name of the metadata to be escaped.</param>
      <returns>Gets the escaped value of the metadatum with the provided name on the provided item.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.GetMetadataValueEscaped(Microsoft.Build.Evaluation.ProjectItemDefinition,System.String)">
      <summary>Gets the escaped value of the metadatum with the provided name on the provided item definition.</summary>
      <param name="item">The item definition whose metadata is to be escaped.</param>
      <param name="name">The name of the metadata to be escaped.</param>
      <returns>Returns the escaped value of the metadatum with the provided name on the provided item definition.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.GetMetadataValueEscaped(Microsoft.Build.Evaluation.ProjectMetadata)">
      <summary>Gets the escaped value of the provided metadatum.</summary>
      <param name="metadatum">The metadatum to be escaped.</param>
      <returns>Gets the escaped value of the provided metadatum.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.GetProperty(System.String)">
      <summary>Gets any property in the project that has the specified name. </summary>
      <param name="name">The name of the property to retrieve.</param>
      <returns>Returns any property in the project that has the specified name. Returns null if no property of that name exists.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.GetPropertyValue(System.String)">
      <summary>Gets the value of the given property in this project.</summary>
      <param name="name">The name of the property whose value is retrieved.</param>
      <returns>Returns the value of the given property in this project. Return an empty string if no property of that name exists. Escape sequences are converted before returning the string.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.GetPropertyValueEscaped(Microsoft.Build.Evaluation.ProjectProperty)">
      <summary>Get the escaped value of the provided property.</summary>
      <param name="property">The property to be escaped.</param>
      <returns>Returns the escaped value of the provided property.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.MarkDirty">
      <summary>Marks this project as modified. </summary>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.ReevaluateIfNecessary">
      <summary>Reevaluates the project to incorporate any changes. </summary>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.RemoveGlobalProperty(System.String)">
      <summary>Removes a global property and marks the project as modified.</summary>
      <param name="name">The name of the global property to be removed.</param>
      <returns>Returns true if the value of the global property was set. </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.RemoveItem(Microsoft.Build.Evaluation.ProjectItem)">
      <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>
      <param name="item">The item to be removed.</param>
      <returns>Returns true if the item is present in this evaluated project; otherwise 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>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.RemoveItems(System.Collections.Generic.IEnumerable{Microsoft.Build.Evaluation.ProjectItem})">
      <summary>Removes all the given items from the project, unless they originate from an imported project. </summary>
      <param name="items">The items to be removed.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.RemoveProperty(Microsoft.Build.Evaluation.ProjectProperty)">
      <summary>Removes an property from the project. The property to be removed must be present in the project, and must not originate from an imported file. </summary>
      <param name="property">The property to remove.</param>
      <returns>Returns true if the property is present in this evaluated project; otherwise false. </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.Save">
      <summary>Saves the project to the file system, if modified, using the default character encoding.</summary>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.Save(System.IO.TextWriter)">
      <summary>Saves the project to the provided text writer, whether or not the project has been modified. Uses the character encoding of the text writer and marks the project as unmodified.</summary>
      <param name="writer">The text writer to save the project to.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.Save(System.String)">
      <summary>Saves the project to the file system, if modified or if the path to the project source code changes, using the default character encoding.</summary>
      <param name="path">The path to the project source code.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.Save(System.String,System.Text.Encoding)">
      <summary>Saves the project to the file system, if modified or if the path to the project source code changes, using the given character encoding.</summary>
      <param name="path">The path to the project source code.</param>
      <param name="encoding">The character encoding used to save the project.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.Save(System.Text.Encoding)">
      <summary>Saves the project to the file system, if modified, using the given character encoding.</summary>
      <param name="encoding">The character encoding used to save the project.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.SaveLogicalProject(System.IO.TextWriter)">
      <summary>Saves a "logical" or "preprocessed" project file, that includes all the imported files as if they formed a single file.</summary>
      <param name="writer">The writer that saves the project file.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.SetGlobalProperty(System.String,System.String)">
      <summary>Sets a global property after the project has been evaluated. If the value changes, the project is marked to require reevaluation. </summary>
      <param name="name">The name of the global property to set.</param>
      <param name="escapedValue">The new value of the global property.</param>
      <returns>Returns <see langword="true" /> if the value changes, otherwise returns <see langword="false" />.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Project.SetProperty(System.String,System.String)">
      <summary>Sets or adds a property with the given name and value to the project. Overwrites the value of a property with the same name if it did not originate in an imported file. </summary>
      <param name="name">The name of the property to set.</param>
      <param name="unevaluatedValue">The new unevaluated value of the property.</param>
      <returns>Returns the property.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.#ctor">
      <summary>Creates a project collection with no global properties or loggers. The project collection toolset is initialized from the configuration file and registry.</summary>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.#ctor(Microsoft.Build.Evaluation.ToolsetDefinitionLocations)">
      <summary>Creates a project collection with no global properties or loggers. The project collection toolset is initialized from toolsets in the given locations.</summary>
      <param name="toolsetLocations">The locations from which to load toolsets.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.#ctor(System.Collections.Generic.IDictionary{System.String,System.String})">
      <summary>Instantiates a project collection with specified global properties, no loggers, and that reads toolset information from the configuration file and registry.</summary>
      <param name="globalProperties">The default global properties to use. May be null.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.#ctor(System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IEnumerable{Microsoft.Build.Framework.ILogger},Microsoft.Build.Evaluation.ToolsetDefinitionLocations)">
      <summary>Instantiates a project collection with specified global properties and loggers and using the specified toolset locations.</summary>
      <param name="globalProperties">The default global properties to use. May be null.</param>
      <param name="loggers">The loggers to register. May be null.</param>
      <param name="toolsetDefinitionLocations">The locations from which to load toolsets.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.#ctor(System.Collections.Generic.IDictionary{System.String,System.String},System.Collections.Generic.IEnumerable{Microsoft.Build.Framework.ILogger},System.Collections.Generic.IEnumerable{Microsoft.Build.Logging.ForwardingLoggerRecord},Microsoft.Build.Evaluation.ToolsetDefinitionLocations,System.Int32,System.Boolean)">
      <summary>Creates a project collection with specified global properties, loggers, node count, and onlyLogCriticalEvents value. The project collection toolset is initialized from toolsets in the given locations. </summary>
      <param name="globalProperties">The default global properties to use. May be null.</param>
      <param name="loggers">The loggers to register. May be null and specified to any build instead.</param>
      <param name="remoteLoggers">Any remote loggers to register. May be null and specified to any build instead.</param>
      <param name="toolsetDefinitionLocations">The locations from which to load toolsets.</param>
      <param name="maxNodeCount">The maximum number of nodes to use for building.</param>
      <param name="onlyLogCriticalEvents">If set to true, only critical events will be logged.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.AddToolset(Microsoft.Build.Evaluation.Toolset)">
      <summary>Adds a new toolset to the project collection. Replaces any existing toolset with the same tools version.</summary>
      <param name="toolset">The toolset to be added.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.ContainsToolset(System.String)">
      <summary>Determines whether a toolset is defined for the given tools version.</summary>
      <param name="toolsVersion">The tools version to search for.</param>
      <returns>Returns true if there is a toolset defined for the given tools version; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.Dispose">
      <summary>Releases both managed and unmanaged resources.  Called when a host no longer needs the project collection. </summary>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.Dispose(System.Boolean)">
      <summary>Releases both managed and unmanaged resources.  Called when a host no longer needs the project collection.. Shuts down any logging services that the project collection owns and releases the logger thread.</summary>
      <param name="disposing">If true, releases both managed and unmanaged resources; otherwise releases only unmanaged resources..</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.Escape(System.String)">
      <summary>Converts special characters in a string to MSBuild escape format. </summary>
      <param name="unescapedString">The string to be converted.</param>
      <returns>Returns the converted string.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.GetGlobalProperty(System.String)">
      <summary>Get any global property on the project collection that has the specified name.</summary>
      <param name="name">The name of the property to be retrieved.</param>
      <returns>Returns any global property on the project collection that has the specified name; otherwise returns null.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.GetLoadedProjects(System.String)">
      <summary>Gets all projects whose project path matches the given path. </summary>
      <param name="fullPath">The path to a project file to be matched.</param>
      <returns>Returns all projects whose project path matches the given path. </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.GetToolset(System.String)">
      <summary>Get the toolset with the specified tools version. </summary>
      <param name="toolsVersion">The tools version to match.</param>
      <returns>Returns the toolset with the specified tools version. Returns null if no toolset matching this tools version exists.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.LoadProject(System.String)">
      <summary>Evaluates a project from the source code in the given project file. The source code is evaluated with the global properties and tools version of this project collection. </summary>
      <param name="fileName">The project file to evaluate.</param>
      <returns>If an existing project in the collection has already been evaluated from the given project file, the existing project is returned. Otherwise, a new project is created, evaluated, added to the project collection, and returned.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.LoadProject(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.String)">
      <summary>Evaluates a project from the source code read from the given project file. The source code is evaluated with the given global properties and tools version. </summary>
      <param name="fileName">The project file to be evaluated.</param>
      <param name="globalProperties">The global properties to use. May be null, in which case the containing project collection's global properties will be used.</param>
      <param name="toolsVersion">The tools version. May be null.</param>
      <returns>If an existing project in the collection has already been evaluated from the given project file, and with the given global properties and tools version, then the existing project is returned. Otherwise, a new project is created, evaluated, added to the project collection, and returned.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.LoadProject(System.String,System.String)">
      <summary>Evaluates a project from the source code read from the given project file. The source code is evaluated with the global properties of this project collection and the given tools version. </summary>
      <param name="fileName">The project file to evaluate.</param>
      <param name="toolsVersion">The tools version to use. May be null.</param>
      <returns>If an existing project in the collection has already been evaluated from the given project file, and with the given tools version, then the existing project is returned. Otherwise, a new project is created, evaluated, added to the project collection, and returned.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.LoadProject(System.Xml.XmlReader)">
      <summary>Evaluates a project from the source code read from the given XML reader. The source code is evaluated with the global properties and tools version of this project collection. </summary>
      <param name="xmlReader">Xml reader to read project source code from.</param>
      <returns>Returns the new project.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.LoadProject(System.Xml.XmlReader,System.Collections.Generic.IDictionary{System.String,System.String},System.String)">
      <summary>Evaluates a project from the source code read from the given XML reader. The source code is evaluated with the given global properties and tools version. </summary>
      <param name="xmlReader">Xml reader to read project from</param>
      <param name="globalProperties">The global properties to use. May be null in which case the containing project collection's global properties will be used.</param>
      <param name="toolsVersion">The tools version. May be null.</param>
      <returns>Returns the new project.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.LoadProject(System.Xml.XmlReader,System.String)">
      <summary>Evaluates a project from the source code read from the given XML reader. The source code is evaluated with the global properties of this project collection and the given tools version. </summary>
      <param name="xmlReader">Xml reader to read project source code from.</param>
      <param name="toolsVersion">The tools version to use. May be null.</param>
      <returns>Returns the new project.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.ProjectAddedToProjectCollectionEventArgs.#ctor(Microsoft.Build.Construction.ProjectRootElement)">
      <summary>The root element which was added to the project collection.</summary>
      <param name="element">The root element which was added to the project collection.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.RegisterForwardingLoggers(System.Collections.Generic.IEnumerable{Microsoft.Build.Logging.ForwardingLoggerRecord})">
      <summary>Adds the given remote loggers to the collection of remote loggers used for builds of projects in this collection. </summary>
      <param name="remoteLoggers">The remote loggers to add. May be null.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.RegisterLogger(Microsoft.Build.Framework.ILogger)">
      <summary>Adds the given logger to the collection of loggers used for builds of projects in this collection. </summary>
      <param name="logger">The logger to add.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.RegisterLoggers(System.Collections.Generic.IEnumerable{Microsoft.Build.Framework.ILogger})">
      <summary>Adds the given loggers to the collection of loggers used for builds of projects in this collection. </summary>
      <param name="loggers">The loggers to be added. May be null.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.RemoveAllToolsets">
      <summary>Removes all toolsets from the project collection.</summary>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.RemoveGlobalProperty(System.String)">
      <summary>Removes a global property from the set of default global properties.</summary>
      <param name="name">The name of the default global property to remove.</param>
      <returns>Returns true if the global property is present before removal; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.RemoveToolset(System.String)">
      <summary>Removes a toolset from the project collection.</summary>
      <param name="toolsVersion">The toolset to be removed.</param>
      <returns>Returns true if the toolset is present before removal; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.SetGlobalProperty(System.String,System.String)">
      <summary>Sets the value of a property in the default set of global properties.</summary>
      <param name="name">The name of the default global property to be added or set.</param>
      <param name="value">The new value of the default global property.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.TryUnloadProject(Microsoft.Build.Construction.ProjectRootElement)">
      <summary>Attempts to remove a project from the collection.</summary>
      <param name="projectRootElement">The root element of the project to unload.</param>
      <returns>Returns true if the project was unloaded.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.Unescape(System.String)">
      <summary>Converts escaped characters in a string to MSBuild characters with special meaning. </summary>
      <param name="escapedString">The string to be converted.</param>
      <returns>Returns the converted string.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.UnloadAllProjects">
      <summary>Removes all projects in this project collection. </summary>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.UnloadProject(Microsoft.Build.Construction.ProjectRootElement)">
      <summary>Removes a project root element from the project root cache.</summary>
      <param name="projectRootElement">The project root element to unload.</param>
      <exception cref="T:System.InvalidOperationException">Thrown if the project root element to unload is still in use by a loaded project or its imports.</exception>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.UnloadProject(Microsoft.Build.Evaluation.Project)">
      <summary>Removes the given project from the project collection.</summary>
      <param name="project">The project to remove.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectCollection.UnregisterAllLoggers">
      <summary>Removes all loggers from the collection of loggers used by project builds in this collection.</summary>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectItem.GetMetadata(System.String)">
      <summary>Gets the evaluated value of the given metadata for this item. </summary>
      <param name="name">The name of the metadata whose value is retrieved.</param>
      <returns>Gets the evaluated value of the given metadata for this item. Returns null if no metadata exists with the given name.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectItem.GetMetadataValue(System.String)">
      <summary>Get the evaluated value of the given metadata for this item, including metadata originating from an item definition.</summary>
      <param name="name">The name of the metadata whose value is retrieved.</param>
      <returns>Returns the evaluated value of the given metadata for this item, including metadata originating from an item definition. Returns an empty string if no metadata exists with the given name.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectItem.HasMetadata(System.String)">
      <summary>Determines whether metadata with the given name is defined on this item.</summary>
      <param name="name">The name of the metadata to be searched for.</param>
      <returns>Returns true if metadata with the given name is defined on this item; false otherwise. </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectItem.RemoveMetadata(System.String)">
      <summary>Removes any metadata with the given name. </summary>
      <param name="name">The name of the metadata to remove.</param>
      <returns>Returns true if metadata with the given name exists before removal; false otherwise. </returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectItem.Rename(System.String)">
      <summary>Renames the item to the given name. </summary>
      <param name="name">The new name of the item.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectItem.SetMetadataValue(System.String,System.String)">
      <summary>Adds metadata with the given name and unevaluated value to the item. </summary>
      <param name="name">The name of the metadata to add.</param>
      <param name="unevaluatedValue">The unevaluated value of the metadata to add.</param>
      <returns>Returns the new metadata. If metadata with the given name already exists, returns this metadata.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectItemDefinition.GetMetadata(System.String)">
      <summary>Get any metadata in the item definition with the given name.</summary>
      <param name="name">The name of the metadata to retrieve.</param>
      <returns>Get any metadata in the item definition with the given name. Returns null if no metadata exists with that name.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectItemDefinition.GetMetadataValue(System.String)">
      <summary>Get the value of any metadata in the item that has the specified name.</summary>
      <param name="name">The name of the item whose metadata value is to be retrieved.</param>
      <returns>Returns the value of any metadata in the item that has the specified name; otherwise returns null.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectItemDefinition.SetMetadataValue(System.String,System.String)">
      <summary>Sets the value of the given metadata in the item definition.</summary>
      <param name="name">The name of the metadata to set.</param>
      <param name="unevaluatedValue">The new unevaluated value of the metadata.</param>
      <returns>Returns the metadata with the given name.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectMetadata.System#IEquatable{Microsoft#Build#Evaluation#ProjectMetadata}#Equals(Microsoft.Build.Evaluation.ProjectMetadata)">
      <summary>Compares this project metadata with the given project metadata for equality.</summary>
      <param name="other">The project metadata to be compared to.</param>
      <returns>Returns true if the project metadata are equal; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.ProjectProperty.System#IEquatable{Microsoft#Build#Evaluation#ProjectProperty}#Equals(Microsoft.Build.Evaluation.ProjectProperty)">
      <summary>Compares this project property with the given project property for equality.</summary>
      <param name="other">The project property to be compared to</param>
      <returns>Returns true if the project properties are equal; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Toolset.#ctor(System.String,System.String,Microsoft.Build.Evaluation.ProjectCollection,System.String)">
      <summary>Creates a toolset with the given tools version and tools path. Global, reserved, and environment properties are taken from the given project collection.</summary>
      <param name="toolsVersion">Name of the toolset</param>
      <param name="toolsPath">Path to this toolset's tasks and targets</param>
      <param name="projectCollection">The project collection from which to obtain the properties.</param>
      <param name="msbuildOverrideTasksPath">The path to search for msbuild overridetasks files.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Toolset.#ctor(System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},Microsoft.Build.Evaluation.ProjectCollection,System.Collections.Generic.IDictionary{System.String,Microsoft.Build.Evaluation.SubToolset},System.String)">
      <summary>Creates a toolset with the given tools version and tools path. Global, reserved, and environment properties are taken from the given project collection.</summary>
      <param name="toolsVersion">Name of the toolset.</param>
      <param name="toolsPath">Path to this toolset's tasks and targets.</param>
      <param name="buildProperties">Properties that should be associated with the Toolset. May be null, in which case an empty property group will be used.</param>
      <param name="projectCollection">The project collection from which to obtain the properties.</param>
      <param name="subToolsets">The set of sub toolsets to add to this toolset.</param>
      <param name="msbuildOverrideTasksPath">The path to search for msbuild overridetasks files. The set of sub-toolsets to add to this toolset</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Toolset.#ctor(System.String,System.String,System.Collections.Generic.IDictionary{System.String,System.String},Microsoft.Build.Evaluation.ProjectCollection,System.String)">
      <summary>Creates a toolset with the given tools version, tools path, and build properties. Global, reserved, and environment properties are taken from the given project collection.</summary>
      <param name="toolsVersion">Name of the toolset</param>
      <param name="toolsPath">Path to this toolset's tasks and targets</param>
      <param name="buildProperties">Properties that should be associated with the Toolset. May be null, in which case an empty property group will be used.</param>
      <param name="projectCollection">The project collection from which to obtain the properties.</param>
      <param name="msbuildOverrideTasksPath">The path to search for msbuild overridetasks files.</param>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Toolset.GenerateSubToolsetVersion">
      <summary>Creates the sub toolset version to be used with this toolset.</summary>
      <returns>Returns the sub toolset version to be used with this toolset.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Toolset.GenerateSubToolsetVersion(System.Collections.Generic.IDictionary{System.String,System.String},System.Int32)">
      <summary>Creates the sub toolset version to be used with this toolset.</summary>
      <param name="overrideGlobalProperties">Set of global properties to use to create the sub toolset version. May be null.</param>
      <param name="solutionVersion">The solution version to use to create the sub toolset version.</param>
      <returns>Returns the sub toolset version.</returns>
    </member>
    <member name="M:Microsoft.Build.Evaluation.Toolset.GetProperty(System.String,System.String)">
      <summary>Gets property specified by the given property name and sub toolset version. </summary>
      <param name="propertyName">The name of the property.</param>
      <param name="subToolsetVersion">The sub toolset version of the sub toolset. May be null</param>
      <returns>Returns the property specified, if it is found, otherwise returns null.</returns>
    </member>
    <member name="M:Microsoft.Build.Exceptions.BuildAbortedException.#ctor">
      <summary>Creates a BuildAborted exception.</summary>
    </member>
    <member name="M:Microsoft.Build.Exceptions.BuildAbortedException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Protected constructor used for (de)serialization. </summary>
      <param name="info">The error information.</param>
      <param name="context">The error context.</param>
    </member>
    <member name="M:Microsoft.Build.Exceptions.BuildAbortedException.#ctor(System.String)">
      <summary>Creates a BuildAborted exception.</summary>
      <param name="message">The error message.</param>
    </member>
    <member name="M:Microsoft.Build.Exceptions.BuildAbortedException.#ctor(System.String,System.Exception)">
      <summary>Constructs a BuildAbortedException with an additional message attached and an inner exception.</summary>
      <param name="message">The error message.</param>
      <param name="innerException">The inner exception.</param>
    </member>
    <member name="M:Microsoft.Build.Exceptions.BuildAbortedException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>ISerializable method which must be overridden because Exception implements this interface.</summary>
      <param name="info">The error information.</param>
      <param name="context">The error context.</param>
    </member>
    <member name="M:Microsoft.Build.Exceptions.InternalLoggerException.#ctor">
      <summary>Default constructor.</summary>
      <exception cref="T:System.InvalidOperationException">Operation is invalid.</exception>
    </member>
    <member name="M:Microsoft.Build.Exceptions.InternalLoggerException.#ctor(System.String)">
      <summary>Creates an instance of this exception using the specified error message.</summary>
      <param name="message">The error message.</param>
      <exception cref="T:System.InvalidOperationException">Operation is invalid.</exception>
    </member>
    <member name="M:Microsoft.Build.Exceptions.InternalLoggerException.#ctor(System.String,System.Exception)">
      <summary>Creates an instance of this exception using the specified error message and inner exception.</summary>
      <param name="message">The error message.</param>
      <param name="innerException">The inner exception.</param>
      <exception cref="T:System.InvalidOperationException">Operation is invalid.</exception>
    </member>
    <member name="M:Microsoft.Build.Exceptions.InternalLoggerException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>ISerializable method which we must override since Exception implements this interface If we ever add new members to this class, we'll need to update this.</summary>
      <param name="info">The error information.</param>
      <param name="context">The error context.</param>
    </member>
    <member name="M:Microsoft.Build.Exceptions.InvalidProjectFileException.#ctor">
      <summary>Default constructor.</summary>
    </member>
    <member name="M:Microsoft.Build.Exceptions.InvalidProjectFileException.#ctor(System.String)">
      <summary>Creates an instance of this exception using the specified error message.</summary>
      <param name="message">The error message.</param>
    </member>
    <member name="M:Microsoft.Build.Exceptions.InvalidProjectFileException.#ctor(System.String,System.Exception)">
      <summary>Creates an instance of this exception using the specified error message and inner exception.</summary>
      <param name="message">The error message.</param>
      <param name="innerException">The inner exception.</param>
    </member>
    <member name="M:Microsoft.Build.Exceptions.InvalidProjectFileException.#ctor(System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.String,System.String,System.String,System.String)">
      <summary>Creates an instance of this exception using rich error information.</summary>
      <param name="projectFile">The invalid project file (can be empty string).</param>
      <param name="lineNumber">The invalid line number in the project (set to zero if not available).</param>
      <param name="columnNumber">The invalid column number in the project (set to zero if not available).</param>
      <param name="endLineNumber">The end of a range of invalid lines in the project (set to zero if not available).</param>
      <param name="endColumnNumber">The end of a range of invalid columns in the project (set to zero if not available).</param>
      <param name="message">Error message for exception.</param>
      <param name="errorSubcategory">Error sub-category that describes the error (can be null).</param>
      <param name="errorCode">The error code (can be null).</param>
      <param name="helpKeyword">The F1-help keyword for the host IDE (can be null).</param>
    </member>
    <member name="M:Microsoft.Build.Exceptions.InvalidProjectFileException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>ISerializable method which we must override since Exception implements this interface If we ever add new members to this class, we'll need to update this.</summary>
      <param name="info">The error information.</param>
      <param name="context">The error context.</param>
    </member>
    <member name="M:Microsoft.Build.Exceptions.InvalidToolsetDefinitionException.#ctor">
      <summary>Basic constructor.</summary>
    </member>
    <member name="M:Microsoft.Build.Exceptions.InvalidToolsetDefinitionException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>Basic constructor.</summary>
      <param name="info">The error information.</param>
      <param name="context">The error context.</param>
    </member>
    <member name="M:Microsoft.Build.Exceptions.InvalidToolsetDefinitionException.#ctor(System.String)">
      <summary>Basic constructor.</summary>
      <param name="message">The error message.</param>
    </member>
    <member name="M:Microsoft.Build.Exceptions.InvalidToolsetDefinitionException.#ctor(System.String,System.Exception)">
      <summary>Basic constructor.</summary>
      <param name="message">The error message.</param>
      <param name="innerException">The inner exception.</param>
    </member>
    <member name="M:Microsoft.Build.Exceptions.InvalidToolsetDefinitionException.#ctor(System.String,System.String)">
      <summary>Constructor that takes an MSBuild error code</summary>
      <param name="message">The error message.</param>
      <param name="errorCode">The error code.</param>
    </member>
    <member name="M:Microsoft.Build.Exceptions.InvalidToolsetDefinitionException.#ctor(System.String,System.String,System.Exception)">
      <summary>Constructor that takes an MSBuild error code</summary>
      <param name="message">The error message.</param>
      <param name="errorCode">The error code.</param>
      <param name="innerException">The inner exception.</param>
    </member>
    <member name="M:Microsoft.Build.Exceptions.InvalidToolsetDefinitionException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
      <summary>ISerializable method which we must override since Exception implements this interface If we ever add new members to this class, we'll need to update this.</summary>
      <param name="info">The error information.</param>
      <param name="context">The error context.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildManager.#ctor">
      <summary>Gets a new build manager without specifying a name.</summary>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildManager.#ctor(System.String)">
      <summary>Creates a new unnamed build manager.</summary>
      <param name="hostName">The host for the build manager.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildManager.BeginBuild(Microsoft.Build.Execution.BuildParameters)">
      <summary>Prepares the BuildManager to receive build requests.</summary>
      <param name="parameters">The build parameters. May be null.</param>
      <exception cref="T:System.InvalidOperationException">Thrown if a build is already in progress.</exception>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildManager.Build(Microsoft.Build.Execution.BuildParameters,Microsoft.Build.Execution.BuildRequestData)">
      <summary>Submits a lone build request and blocks until results are available.</summary>
      <param name="parameters">Build parameters.</param>
      <param name="requestData">Build request data.</param>
      <returns>Returns the build result.</returns>
      <exception cref="T:System.InvalidOperationException">Thrown if a build is already in progress.</exception>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildManager.BuildRequest(Microsoft.Build.Execution.BuildRequestData)">
      <summary>Submits a build request and blocks until the results are available.</summary>
      <param name="requestData">Build request.</param>
      <returns>Returns the build result.</returns>
      <exception cref="T:System.InvalidOperationException">Thrown if StartBuild has not been called or if EndBuild has been called.</exception>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildManager.CancelAllSubmissions">
      <summary>Cancels all outstanding submissions asynchronously.</summary>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildManager.Dispose">
      <summary>Dispose of the build manager.</summary>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildManager.EndBuild">
      <summary>Signals that no more build requests are expected (or allowed) and that the BuildManager may clean up.</summary>
      <exception cref="T:System.InvalidOperationException">Thrown if there is no build in progress.</exception>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildManager.Finalize">
      <summary>Finalize the building manager.</summary>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildManager.GetProjectInstanceForBuild(Microsoft.Build.Evaluation.Project)">
      <summary>Gets a matching ProjectInstance from the BuildManager cache of previously built projects.</summary>
      <param name="project">The project for which an instance should be retrieved.</param>
      <returns>Returns a matching ProjectInstance from the BuildManager cache of previously built projects. If none exist, a new project instance will be created from the specified project.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildManager.PendBuildRequest(Microsoft.Build.Execution.BuildRequestData)">
      <summary>Submits a build request to the current build but does not start it immediately. Allows the user to perform asynchronous execution or access the submission ID prior to executing the request.</summary>
      <param name="requestData">Build request data.</param>
      <returns>Returns the submission that will be built.</returns>
      <exception cref="T:System.InvalidOperationException">Thrown if StartBuild has not been called or if EndBuild has been called.</exception>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildManager.ResetCaches">
      <summary>Clears out all of the build manager cached information.</summary>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildParameters.#ctor">
      <summary>Creates build parameters.</summary>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildParameters.#ctor(Microsoft.Build.Evaluation.ProjectCollection)">
      <summary>Creates build parameters and initializes them from a project collection.</summary>
      <param name="projectCollection">The ProjectCollection from which the BuildParameters should populate itself.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildParameters.Clone">
      <summary>Creates a clone of this build parameters object. </summary>
      <returns>Returns a clone of this build parameters object. </returns>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildParameters.GetToolset(System.String)">
      <summary>Gets a given toolset.</summary>
      <param name="toolsVersion">The toolset to retrieve.</param>
      <returns>Returns the toolset.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildRequestData.#ctor(Microsoft.Build.Execution.ProjectInstance,System.String[])">
      <summary>Constructs build request data for build requests based on project instances.</summary>
      <param name="projectInstance">The instance to build.</param>
      <param name="targetsToBuild">The targets to build.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildRequestData.#ctor(Microsoft.Build.Execution.ProjectInstance,System.String[],Microsoft.Build.Execution.HostServices)">
      <summary>Constructs build request data for build requests based on project instances.</summary>
      <param name="projectInstance">The instance to build.</param>
      <param name="targetsToBuild">The targets to build.</param>
      <param name="hostServices">The host services to use, if any.  May be null.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildRequestData.#ctor(Microsoft.Build.Execution.ProjectInstance,System.String[],Microsoft.Build.Execution.HostServices,Microsoft.Build.Execution.BuildRequestDataFlags)">
      <summary>Constructs a BuildRequestData for build requests based on project instances.</summary>
      <param name="projectInstance">The instance to build.</param>
      <param name="targetsToBuild">The targets to build.</param>
      <param name="hostServices">The host services to use, if any.  May be null.</param>
      <param name="flags">The flags to use for the build.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildRequestData.#ctor(Microsoft.Build.Execution.ProjectInstance,System.String[],Microsoft.Build.Execution.HostServices,Microsoft.Build.Execution.BuildRequestDataFlags,System.Collections.Generic.IEnumerable{System.String})">
      <summary>Constructs a BuildRequestData for build requests based on project instances.</summary>
      <param name="projectInstance">The instance to build.</param>
      <param name="targetsToBuild">The targets to build.</param>
      <param name="hostServices">The host services to use, if any.  May be null.</param>
      <param name="flags">The flags to use for the build.</param>
      <param name="propertiesToTransfer">The list of properties to transfer from the project to any out of process node.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildRequestData.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.String[],Microsoft.Build.Execution.HostServices)">
      <summary>Constructs a BuildRequestData for build requests with a given project path.</summary>
      <param name="projectFullPath">The full path to the project file.</param>
      <param name="globalProperties">The global properties to use during evaluation of the project.</param>
      <param name="toolsVersion">The tools version to use for the build.  May be null.</param>
      <param name="targetsToBuild">The targets to build.</param>
      <param name="hostServices">The host services to use, if any.  May be null.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildRequestData.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.String[],Microsoft.Build.Execution.HostServices,Microsoft.Build.Execution.BuildRequestDataFlags)">
      <summary>Constructs a BuildRequestData for build requests with a given project path.</summary>
      <param name="projectFullPath">The full path to the project file.</param>
      <param name="globalProperties">The global properties to use during evaluation of the project.</param>
      <param name="toolsVersion">The tools version to use for the build.  May be null.</param>
      <param name="targetsToBuild">The targets to build.</param>
      <param name="hostServices">The host services to use, if any.  May be null.</param>
      <param name="flags">The flags to use for the build.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildResult.#ctor">
      <summary>Creates the build result set.</summary>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildResult.AddResultsForTarget(System.String,Microsoft.Build.Execution.TargetResult)">
      <summary>Adds the results for the specified target to this build result set.</summary>
      <param name="target">The target whose results are to be added.</param>
      <param name="result">The results for the target.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildResult.HasResultsForTarget(System.String)">
      <summary>Determines if there are any results for the given target.</summary>
      <param name="target">The target whose results are retrieved.</param>
      <returns>Returns true if results exist; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildResult.MergeResults(Microsoft.Build.Execution.BuildResult)">
      <summary>Merges the given results with this build result set.</summary>
      <param name="results">The results to merge.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildSubmission.Execute">
      <summary>Starts a build request synchronously and waits until results are available.</summary>
      <returns>Returns the build request.</returns>
      <exception cref="T:System.InvalidOperationException">The request has already been started or is already complete.</exception>
    </member>
    <member name="M:Microsoft.Build.Execution.BuildSubmission.ExecuteAsync(Microsoft.Build.Execution.BuildSubmissionCompleteCallback,System.Object)">
      <summary>Starts a build request asynchronously and within the given context. Immediately returns control to the caller.</summary>
      <param name="callback">The callback method to call when the build submission is complete.</param>
      <param name="context">The context in which the build submission occurs.</param>
      <exception cref="T:System.InvalidOperationException">The request has already been started or is already complete.</exception>
    </member>
    <member name="M:Microsoft.Build.Execution.HostServices.#ctor">
      <summary>Creates a host service.</summary>
    </member>
    <member name="M:Microsoft.Build.Execution.HostServices.GetHostObject(System.String,System.String,System.String)">
      <summary>Gets the host service for the given task where the task appears within a target and project with the given names. </summary>
      <param name="projectFile">The name of the project file.</param>
      <param name="targetName">The name of the target.</param>
      <param name="taskName">The task name associated with the host service.</param>
      <returns>Returns the host service for the given task where the task appears within a target and project with the given names. If no host service exists, returns null.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.HostServices.GetNodeAffinity(System.String)">
      <summary>Gets the node affinity for the given project file.</summary>
      <param name="projectFile">The project file associated with the node.</param>
      <returns>Returns the node affinity for the given project file.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.HostServices.OnRenameProject(System.String,System.String)">
      <summary>Updates the host services table when a project is named or renamed. </summary>
      <param name="oldFullPath">The current path to the project file.</param>
      <param name="newFullPath">The new path to the project file.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.HostServices.RegisterHostObject(System.String,System.String,System.String,Microsoft.Build.Framework.ITaskHost)">
      <summary>Register a host service for the given task/target pair. </summary>
      <param name="projectFile">The project file containing the task/target pair.</param>
      <param name="targetName">The name of the target.</param>
      <param name="taskName">The name of the task.</param>
      <param name="hostObject">The host service.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.HostServices.SetNodeAffinity(System.String,Microsoft.Build.Execution.NodeAffinity)">
      <summary>Sets the node affinity for the given project file.</summary>
      <param name="projectFile">The project file. If set to String.Empty, all projects will use the given node affinity. If set to null, all node affinities will be cleared.</param>
      <param name="nodeAffinity">The node affinity.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.HostServices.UnregisterProject(System.String)">
      <summary>Unregister the project's host objects, if any and remove any node affinities associated with it.</summary>
      <param name="projectFullPath">The path to the project to unregister.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.OutOfProcNode.#ctor">
      <summary>Constructor.</summary>
    </member>
    <member name="M:Microsoft.Build.Execution.OutOfProcNode.Run(System.Exception@)">
      <summary>Starts up the node and processes messages until the node is requested to shut down.</summary>
      <param name="shutdownException">The exception which caused shutdown, if any.</param>
      <returns>The reason for shutting down.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.#ctor(Microsoft.Build.Construction.ProjectRootElement)">
      <summary>Creates a new project instance and initializes it from the given project root, using the default project collection. </summary>
      <param name="xml">The project root element.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.#ctor(Microsoft.Build.Construction.ProjectRootElement,System.Collections.Generic.IDictionary{System.String,System.String},System.String,Microsoft.Build.Evaluation.ProjectCollection)">
      <summary>Creates a new project instance and initializes it from the given project root, using the given global properties, tools version, and project collection. </summary>
      <param name="xml">The project root element</param>
      <param name="globalProperties">The global properties to use. May be null.</param>
      <param name="toolsVersion">The tools version. May be null.</param>
      <param name="projectCollection">Project collection</param>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.#ctor(Microsoft.Build.Construction.ProjectRootElement,System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.String,Microsoft.Build.Evaluation.ProjectCollection)">
      <summary>Creates a new project instance and initializes it from the given project root, using the given global properties, tools version, and project collection</summary>
      <param name="xml">The project root element.</param>
      <param name="globalProperties">The global properties to use. May be null.</param>
      <param name="toolsVersion">The tools version. May be null.</param>
      <param name="subToolsetVersion">The sub toolset version. May be null.</param>
      <param name="projectCollection">Project collection.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.#ctor(System.String)">
      <summary>Creates a new project instance and initializes it from the given project file, using the default project collection. </summary>
      <param name="projectFile">The name of the project file.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.String)">
      <summary>Creates a new project instance and initializes it from the given project file, using the given global properties, tools version, and the default project collection. </summary>
      <param name="projectFile">The name of the project file.</param>
      <param name="globalProperties">The global properties to use.</param>
      <param name="toolsVersion">The tools version.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.String,Microsoft.Build.Evaluation.ProjectCollection)">
      <summary>Creates a new project instance and initializes it from the given project file, using the given global properties, tools version, and project collection. </summary>
      <param name="projectFile">The name of the project file.</param>
      <param name="globalProperties">The global properties to use. May be null.</param>
      <param name="toolsVersion">The tools version. May be null.</param>
      <param name="projectCollection">Project collection</param>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.#ctor(System.String,System.Collections.Generic.IDictionary{System.String,System.String},System.String,System.String,Microsoft.Build.Evaluation.ProjectCollection)">
      <summary>Creates a new project instance and initializes it from the given project file, using the given global properties, tools version, sub toolset version, and project collection.</summary>
      <param name="projectFile">The name of the project file.</param>
      <param name="globalProperties">The global properties to use. May be null.</param>
      <param name="toolsVersion">The tools version. May be null.</param>
      <param name="subToolsetVersion">The sub toolset version. May be null.</param>
      <param name="projectCollection">Project collection.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.AddItem(System.String,System.String)">
      <summary>Adds an item with no metadata to the project.</summary>
      <param name="itemType">The item type of the item to be added.</param>
      <param name="evaluatedInclude">The evaluated Include attribute of the item.</param>
      <returns>Returns the new item.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.AddItem(System.String,System.String,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})">
      <summary>Adds an item with the given metadata to the project.</summary>
      <param name="itemType">The item type of the item to be added.</param>
      <param name="evaluatedInclude">The evaluated Include attribute of the item.</param>
      <param name="metadata">The metadata of the item.</param>
      <returns>Return the new item.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.Build">
      <summary>Builds the default targets of the project with loggers of the project collection. </summary>
      <returns>Returns true if the build succeeds; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.Build(System.Collections.Generic.IEnumerable{Microsoft.Build.Framework.ILogger})">
      <summary>Builds the default targets of the project with the given loggers. </summary>
      <param name="loggers">The loggers to use for the build. May be null.</param>
      <returns>Returns true if the build succeeds; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.Build(System.Collections.Generic.IEnumerable{Microsoft.Build.Framework.ILogger},System.Collections.Generic.IEnumerable{Microsoft.Build.Logging.ForwardingLoggerRecord})">
      <summary>Builds the default targets of the project with the given loggers and remote loggers. </summary>
      <param name="loggers">The loggers to use for the build. May be null.</param>
      <param name="remoteLoggers">The remote loggers to use for the build. May be null.</param>
      <returns>Returns true if the build succeeds; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.Build(System.String,System.Collections.Generic.IEnumerable{Microsoft.Build.Framework.ILogger})">
      <summary>Builds the given target of the project with the given loggers. </summary>
      <param name="target">The target to build. May be null.</param>
      <param name="loggers">The loggers to use for the build. May be null.</param>
      <returns>Returns true if the build succeeds; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.Build(System.String,System.Collections.Generic.IEnumerable{Microsoft.Build.Framework.ILogger},System.Collections.Generic.IEnumerable{Microsoft.Build.Logging.ForwardingLoggerRecord})">
      <summary>Builds the given target of the project with the given loggers and remote loggers. </summary>
      <param name="target">The target to build. May be null.</param>
      <param name="loggers">The loggers to use for the build. May be null.</param>
      <param name="remoteLoggers">The remote loggers to use for the build. May be null.</param>
      <returns>Returns true if the build succeeds; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.Build(System.String[],System.Collections.Generic.IEnumerable{Microsoft.Build.Framework.ILogger})">
      <summary>Builds the given targets of the project with the given loggers. </summary>
      <param name="targets">The targets to build. May be null.</param>
      <param name="loggers">The loggers to use for the build. May be null.</param>
      <returns>Returns true if the build succeeds; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.Build(System.String[],System.Collections.Generic.IEnumerable{Microsoft.Build.Framework.ILogger},System.Collections.Generic.IDictionary{System.String,Microsoft.Build.Execution.TargetResult}@)">
      <summary>Build a list of targets with specified loggers. Targets may be null. Loggers may be null.</summary>
      <param name="targets">List of targets to build. May be null.</param>
      <param name="loggers">Enumerated list of loggers to use for building targets.</param>
      <param name="targetOutputs">Outputs of target builds.</param>
      <returns>Returns true on success, false on failure.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.Build(System.String[],System.Collections.Generic.IEnumerable{Microsoft.Build.Framework.ILogger},System.Collections.Generic.IEnumerable{Microsoft.Build.Logging.ForwardingLoggerRecord})">
      <summary>Builds the given targets of the project with the given loggers and remote loggers. </summary>
      <param name="targets">The targets to build. May be null.</param>
      <param name="loggers">The loggers to use for the build. May be null.</param>
      <param name="remoteLoggers">The remote loggers to use for the build. May be null.</param>
      <returns>Returns true if the build succeeds; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.Build(System.String[],System.Collections.Generic.IEnumerable{Microsoft.Build.Framework.ILogger},System.Collections.Generic.IEnumerable{Microsoft.Build.Logging.ForwardingLoggerRecord},System.Collections.Generic.IDictionary{System.String,Microsoft.Build.Execution.TargetResult}@)">
      <summary>Builds the given targets with the given target outputs and with the given loggers and remote loggers. </summary>
      <param name="targets">The targets to build. May be null.</param>
      <param name="loggers">The loggers to use for the build. May be null.</param>
      <param name="remoteLoggers">The remote loggers to use for the build. May be null.</param>
      <param name="targetOutputs">The target outputs.</param>
      <returns>Returns true if the build succeeds; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.DeepCopy">
      <summary>Creates an independent, deep clone of this project and everything in it. Clone has the same mutability as the original. Useful for compiling a single file or for keeping build results between builds.</summary>
      <returns>Creates an independent, deep clone of this project.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.DeepCopy(System.Boolean)">
      <summary>Creates an independent, deep clone of this project and everything in it, with specified mutability. Useful for compiling a single file or for keeping build results between builds.</summary>
      <param name="isImmutable">Flag indicating clone mutability.</param>
      <returns>Returns an independent, deep clone of this project, with specified mutability.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.EvaluateCondition(System.String)">
      <summary>Evaluates the provided string as a condition by expanding items and properties, using the current items and properties available, then doing a logical evaluation.</summary>
      <param name="condition">The string to be expanded.</param>
      <returns>Returns true if the string evaluates to true; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.ExpandString(System.String)">
      <summary>Evaluates the provided string by expanding items and properties, using the current items and properties available.</summary>
      <param name="unexpandedValue">The string to be expanded.</param>
      <returns>Returns the expanded string value.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.GetEvaluatedItemIncludeEscaped(Microsoft.Build.Execution.ProjectItemDefinitionInstance)">
      <summary>Gets the evaluated, escaped value of the Include attribute of the provided item definition.</summary>
      <param name="item">The item definition to be evaluated and escaped.</param>
      <returns>Returns the evaluated, escaped value of the Include attribute of the provided item definition.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.GetEvaluatedItemIncludeEscaped(Microsoft.Build.Execution.ProjectItemInstance)">
      <summary>Gets the evaluated, escaped value of the Include attribute of the provided item.</summary>
      <param name="item">The item to be evaluated and escaped.</param>
      <returns>Returns the evaluated, escaped value of the Include attribute of the provided item.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.GetItems(System.String)">
      <summary>Gets all the items in this project of the specified type. This is a read-only list.</summary>
      <param name="itemType">The item type of the items to be retrieved.</param>
      <returns>Returns all the items in this project of the specified type. Returns an empty list if there are none.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.GetItemsByItemTypeAndEvaluatedInclude(System.String,System.String)">
      <summary>Gets all the items in this project of the specified type and evaluated include value. This is a read-only list.</summary>
      <param name="itemType">The item type of the items to be retrieved.</param>
      <param name="evaluatedInclude">The evaluated include value of the items to be retrieved</param>
      <returns>Returns all the items in this project of the specified type and evaluated include value. Returns an empty collection if there are none.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.GetMetadataValueEscaped(Microsoft.Build.Execution.ProjectItemDefinitionInstance,System.String)">
      <summary>Gets the escaped value of the metadatum with the provided name of the provided item definition.</summary>
      <param name="item">The item definition to provide the metadatum value.</param>
      <param name="name">The name of the metadatum.</param>
      <returns>Returns the escaped value of the metadatum with the provided name of the provided item definition.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.GetMetadataValueEscaped(Microsoft.Build.Execution.ProjectItemInstance,System.String)">
      <summary>Gets the escaped value of the metadatum with the provided name on the provided item.</summary>
      <param name="item">The item to provide the metadatum value.</param>
      <param name="name">The name of the metadatum.</param>
      <returns>Returns the escaped value of the metadatum with the provided name on the provided item.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.GetMetadataValueEscaped(Microsoft.Build.Execution.ProjectMetadataInstance)">
      <summary>Gets the escaped value of the provided metadatum.</summary>
      <param name="metadatum">The metadatum to be escaped.</param>
      <returns>Returns the escaped value of the provided metadatum.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.GetProperty(System.String)">
      <summary>Get the property with the given name.</summary>
      <param name="name">The name of the property to retrieve.</param>
      <returns>Returns the property with the given name. Returns null if no property exists with that name.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.GetPropertyValue(System.String)">
      <summary>Get the value of the property with the given name.</summary>
      <param name="name">The name of the property whose value is to be retrieved.</param>
      <returns>Returns the value of the property with the given name. Returns an empty string if no property exists with that name. The value returned has no escaped character sequences.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.GetPropertyValueEscaped(Microsoft.Build.Execution.ProjectPropertyInstance)">
      <summary>Get the escaped value of the provided property.</summary>
      <param name="property">The property to be escaped.</param>
      <returns>Returns the escaped value of the provided property.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.RemoveItem(Microsoft.Build.Execution.ProjectItemInstance)">
      <summary>Removes an item from the project, if present. Returns true if it was present, false otherwise.</summary>
      <param name="item">The item to be removed.</param>
      <returns>Returns true if the item was present before removal; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.RemoveProperty(System.String)">
      <summary>Removes a property with the given name. Returns true if the property had a value (possibly empty string), otherwise false.</summary>
      <param name="name">The name of the property to be removed.</param>
      <returns>Returns true if the property had a value (possibly an empty string) before removal; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.SetProperty(System.String,System.String)">
      <summary>Add a property with the specified name and value to the project. Overwrites any property with the same name already in the property collection.</summary>
      <param name="name">The name of the property to add.</param>
      <param name="evaluatedValue">The evaluated value of the property to add.</param>
      <returns>Returns the new property.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.ToProjectRootElement">
      <summary>Creates a ProjectRootElement from the contents of this ProjectInstance.</summary>
      <returns>Returns a ProjectRootElement which represents this instance.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectInstance.UpdateStateFrom(Microsoft.Build.Execution.ProjectInstance)">
      <summary>Replaces the project state <see cref="P:Microsoft.Build.Execution.ProjectInstance.GlobalProperties" />, <see cref="P:Microsoft.Build.Execution.ProjectInstance.Properties" /> and <see cref="P:Microsoft.Build.Execution.ProjectInstance.Items" /> with those from the specified <see cref="T:Microsoft.Build.Execution.ProjectInstance" />.</summary>
      <param name="projectState">The <see langword="ProjectInstance" /> to update from.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectItemDefinitionInstance.GetMetadata(System.String)">
      <summary>Get any metadata in this item definition with the given name.</summary>
      <param name="name">The name of the metadata to retrieve.</param>
      <returns>Returns any metadata in this item definition with the given name. Returns null if no metadata exists with this name.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectItemInstance.GetMetadata(System.String)">
      <summary>Get the metadata with the given name, including metadata inherited from item definitions. </summary>
      <param name="name">The name of the metadata.</param>
      <returns>Returns the metadata with the given name. Returns null if no metadata exists with that name. </returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectItemInstance.GetMetadataValue(System.String)">
      <summary>Gets the value of the metadata with the given name, including metadata inherited from item definitions. </summary>
      <param name="name">The name of the metadata.</param>
      <returns>Gets the value of the metadata with the given name, including metadata inherited from item definitions. Returns an empty string if no metadata exists with that name.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectItemInstance.HasMetadata(System.String)">
      <summary>Determines whether the metadata with the given name is defined on this item (even if its value is empty string). </summary>
      <param name="name">The name of the metadata.</param>
      <returns>Returns true if the metadata with the given name is defined on this item (even if its value is empty string); false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectItemInstance.Microsoft#Build#Framework#ITaskItem#CloneCustomMetadata">
      <summary>ITaskItem implementation. Gets the collection of custom metadata.</summary>
      <returns>The collection of custom metadata.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectItemInstance.Microsoft#Build#Framework#ITaskItem#CopyMetadataTo(Microsoft.Build.Framework.ITaskItem)">
      <summary>ITaskItem implementation. Copies the custom metadata entries to another item.</summary>
      <param name="destinationItem">The item to copy the metadata entries to.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectItemInstance.Microsoft#Build#Framework#ITaskItem#GetMetadata(System.String)">
      <summary>ITaskItem implementation. Gets the value of the specified metadata entry.</summary>
      <param name="metadataName">The name of the metadata entry.</param>
      <returns>The value of the <paramref name="attributeName" /> metadata.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectItemInstance.Microsoft#Build#Framework#ITaskItem#SetMetadata(System.String,System.String)">
      <summary>ITaskItem implementation. Adds or changes a custom metadata entry to the item.</summary>
      <param name="metadataName">Metadata name to be added or changed.</param>
      <param name="metadataValue">Metadata value to be added or changed.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectItemInstance.Microsoft#Build#Framework#ITaskItem2#CloneCustomMetadataEscaped">
      <summary>ITaskItem2 implementation. Returns a clone of the metadata on this object.  Values returned are in their original escaped form.</summary>
      <returns>Returns the cloned metadata, with values' escaping preserved.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectItemInstance.Microsoft#Build#Framework#ITaskItem2#GetMetadataValueEscaped(System.String)">
      <summary>ITaskItem2 implementation. Allows the values of metadata on the item to be queried.</summary>
      <param name="name">The metadata to be queried.</param>
      <returns>Returns the escaped metadata value.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectItemInstance.Microsoft#Build#Framework#ITaskItem2#SetMetadataValueLiteral(System.String,System.String)">
      <summary>ITaskItem2 implementation. Allows a piece of custom metadata to be set on the item. Assumes that the value passed in is unescaped, and escapes the value as necessary in order to maintain its value.</summary>
      <param name="metadataName">The metadata name.</param>
      <param name="metadataValue">The metadata value.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectItemInstance.RemoveMetadata(System.String)">
      <summary>Removes metadata with the given name. </summary>
      <param name="metadataName">The metadata name.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectItemInstance.SetMetadata(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})">
      <summary>Adds metadata with the given names and values. Overwrites any metadata with the same name already in the collection.</summary>
      <param name="metadataDictionary">The metadata to add.</param>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectItemInstance.SetMetadata(System.String,System.String)">
      <summary>Add metadata with the given name and value. Overwrites any metadata with the same name already in the collection.</summary>
      <param name="name">The name of the metadata to add.</param>
      <param name="evaluatedValue">The evaluated value of the metadata to add.</param>
      <returns>Returns the new metadata.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectItemInstance.ToString">
      <summary>Gets a String that represents the current item.</summary>
      <returns>Returns a String that represents the current item.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectMetadataInstance.DeepClone">
      <summary>Copies the metadata to create a deep clone.</summary>
      <returns>Returns the new metadata.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectMetadataInstance.System#IEquatable{Microsoft#Build#Execution#ProjectMetadataInstance}#Equals(Microsoft.Build.Execution.ProjectMetadataInstance)">
      <summary>Compares this project metadata with the given project metadata for equality.</summary>
      <param name="other">The project metadata to be compared to.</param>
      <returns>Returns true if the project metadata are equal; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectMetadataInstance.ToString">
      <summary>Gets a string representation of this metadata.</summary>
      <returns>Returns a string representation of this metadata.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectPropertyInstance.System#IEquatable{Microsoft#Build#Execution#ProjectPropertyInstance}#Equals(Microsoft.Build.Execution.ProjectPropertyInstance)">
      <summary>Compares this project property with the given project property for equality.</summary>
      <param name="other">The project property to be compared to.</param>
      <returns>Returns true if the project property are equal; false otherwise.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectPropertyInstance.ToString">
      <summary>Gets a string representation for this property.</summary>
      <returns>Returns a string representation for this property.</returns>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectTargetInstanceChild.#ctor">
      <summary>Abstract classes cannot be instantiated.</summary>
    </member>
    <member name="M:Microsoft.Build.Execution.ProjectTaskInstanceChild.#ctor">
      <summary>Abstract classes cannot be instantiated.</summary>
    </member>
    <member name="M:Microsoft.Build.Logging.ConfigurableForwardingLogger.#ctor">
      <summary>Constructs a logger.</summary>
    </member>
    <member name="M:Microsoft.Build.Logging.ConfigurableForwardingLogger.ForwardToCentralLogger(Microsoft.Build.Framework.BuildEventArgs)">
      <summary>Forward this event to the central logger.</summary>
      <param name="e">The event to be forwarded.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConfigurableForwardingLogger.Initialize(Microsoft.Build.Framework.IEventSource)">
      <summary>Signs up the console logger to log the given build events.</summary>
      <param name="eventSource">The event source for build events.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConfigurableForwardingLogger.Initialize(Microsoft.Build.Framework.IEventSource,System.Int32)">
      <summary>Signs up the console logger for all build events.</summary>
      <param name="eventSource">The event source for build events.</param>
      <param name="nodeCount">The node count.  Not used.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConfigurableForwardingLogger.Shutdown">
      <summary>Called when the build engine is finished with this logger.</summary>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.#ctor">
      <summary>Creates a default logger.</summary>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.#ctor(Microsoft.Build.Framework.LoggerVerbosity)">
      <summary>Creates a logger instance with the given verbosity that logs to the default console.</summary>
      <param name="verbosity">The verbosity level.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.#ctor(Microsoft.Build.Framework.LoggerVerbosity,Microsoft.Build.Logging.WriteHandler,Microsoft.Build.Logging.ColorSetter,Microsoft.Build.Logging.ColorResetter)">
      <summary>Initializes the logger with alternate output handlers.</summary>
      <param name="verbosity">The verbosity level.</param>
      <param name="write">The write handler.</param>
      <param name="colorSet">Sets the text color.</param>
      <param name="colorReset">Resets the text color.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.ApplyParameter(System.String,System.String)">
      <summary>Applies a parameter to the logger. </summary>
      <param name="parameterName">The name of the parameter.</param>
      <param name="parameterValue">The value of the parameter.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.BuildFinishedHandler(System.Object,Microsoft.Build.Framework.BuildFinishedEventArgs)">
      <summary>Called when the build is finished.</summary>
      <param name="sender">The sender (should be null).</param>
      <param name="e">The event arguments.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.BuildStartedHandler(System.Object,Microsoft.Build.Framework.BuildStartedEventArgs)">
      <summary>Called when the build is started.</summary>
      <param name="sender">The sender (should be null).</param>
      <param name="e">The event arguments.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.CustomEventHandler(System.Object,Microsoft.Build.Framework.CustomBuildEventArgs)">
      <summary>Called to log a custom event.</summary>
      <param name="sender">The sender of the event.</param>
      <param name="e">The event arguments.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.ErrorHandler(System.Object,Microsoft.Build.Framework.BuildErrorEventArgs)">
      <summary>Called to log an error event.</summary>
      <param name="sender">The sender of the event.</param>
      <param name="e">The event arguments.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.Initialize(Microsoft.Build.Framework.IEventSource)">
      <summary>Signs up the console logger for the given build event.</summary>
      <param name="eventSource">The available events.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.Initialize(Microsoft.Build.Framework.IEventSource,System.Int32)">
      <summary>Initializes the logger with the given event source and node count.</summary>
      <param name="eventSource">The event source.</param>
      <param name="nodeCount">The node count.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.MessageHandler(System.Object,Microsoft.Build.Framework.BuildMessageEventArgs)">
      <summary>Called to log a message event.</summary>
      <param name="sender">The sender of the event.</param>
      <param name="e">The event arguments.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.ProjectFinishedHandler(System.Object,Microsoft.Build.Framework.ProjectFinishedEventArgs)">
      <summary>Called to log a project finished event.</summary>
      <param name="sender">The sender (should be null).</param>
      <param name="e">The event arguments.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.ProjectStartedHandler(System.Object,Microsoft.Build.Framework.ProjectStartedEventArgs)">
      <summary>Called to log a project started event.</summary>
      <param name="sender">The sender (should be null).</param>
      <param name="e">The event arguments.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.Shutdown">
      <summary>Called when the build is finished.</summary>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.TargetFinishedHandler(System.Object,Microsoft.Build.Framework.TargetFinishedEventArgs)">
      <summary>Called to log a target finished event.</summary>
      <param name="sender">The sender (should be null).</param>
      <param name="e">The event arguments.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.TargetStartedHandler(System.Object,Microsoft.Build.Framework.TargetStartedEventArgs)">
      <summary>Called to log a target started event.</summary>
      <param name="sender">The sender (should be null).</param>
      <param name="e">The event arguments.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.TaskFinishedHandler(System.Object,Microsoft.Build.Framework.TaskFinishedEventArgs)">
      <summary>Called to log a task finished event.</summary>
      <param name="sender">The sender (should be null).</param>
      <param name="e">The event arguments.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.TaskStartedHandler(System.Object,Microsoft.Build.Framework.TaskStartedEventArgs)">
      <summary>Called to log a task started event.</summary>
      <param name="sender">The sender (should be null).</param>
      <param name="e">The event arguments.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.ConsoleLogger.WarningHandler(System.Object,Microsoft.Build.Framework.BuildWarningEventArgs)">
      <summary>Called to log a warning event.</summary>
      <param name="sender">The sender of the event.</param>
      <param name="e">The event arguments.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.DistributedFileLogger.#ctor">
      <summary>Creates a file logger.</summary>
    </member>
    <member name="M:Microsoft.Build.Logging.DistributedFileLogger.Initialize(Microsoft.Build.Framework.IEventSource)">
      <summary>Initializes the logger with the given event source.</summary>
      <param name="eventSource">The event source.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.DistributedFileLogger.Initialize(Microsoft.Build.Framework.IEventSource,System.Int32)">
      <summary>Initializes the logger with the given event source and node count.</summary>
      <param name="eventSource">The event source.</param>
      <param name="nodeCount">The node count.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.DistributedFileLogger.Shutdown">
      <summary>Called when the build engine is finished with this logger.</summary>
    </member>
    <member name="M:Microsoft.Build.Logging.FileLogger.#ctor">
      <summary>Creates a file logger.</summary>
    </member>
    <member name="M:Microsoft.Build.Logging.FileLogger.Initialize(Microsoft.Build.Framework.IEventSource)">
      <summary>Signs up the console file logger for the given build events. </summary>
      <param name="eventSource">The available events.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.FileLogger.Initialize(Microsoft.Build.Framework.IEventSource,System.Int32)">
      <summary>Initializes a file logger in a multiprocessor environment.</summary>
      <param name="eventSource">The event source.</param>
      <param name="nodeCount">The node count.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.FileLogger.Shutdown">
      <summary>Called when the build is finished.</summary>
    </member>
    <member name="M:Microsoft.Build.Logging.ForwardingLoggerRecord.#ctor(Microsoft.Build.Framework.ILogger,Microsoft.Build.Logging.LoggerDescription)">
      <summary>Creates a forwarding logger.</summary>
      <param name="centralLogger">The central logger.</param>
      <param name="forwardingLoggerDescription">The description for the forwarding logger.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.LoggerDescription.#ctor(System.String,System.String,System.String,System.String,Microsoft.Build.Framework.LoggerVerbosity)">
      <summary>Creates a logger description from the given data.</summary>
      <param name="loggerClassName">The class name of the logger.</param>
      <param name="loggerAssemblyName">The assembly name that implements the logger.</param>
      <param name="loggerAssemblyFile">The assembly file that implements the logger.</param>
      <param name="loggerSwitchParameters">Switch parameters for the logger.</param>
      <param name="verbosity">The verbosity level.</param>
    </member>
    <member name="M:Microsoft.Build.Logging.LoggerDescription.CreateLogger">
      <summary>Creates an ILogger instance from the data in this description. </summary>
      <returns>Returns an ILogger instance from the data in this description. </returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ElementLocation.Column">
      <summary>The column number where this element exists in its file. The first column is numbered 1. Zero indicates "unknown location".</summary>
      <returns>Returns <see cref="T:System.Int32" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ElementLocation.File">
      <summary>The file from which this particular element originated. It may differ from the ProjectFile if, for instance, it was part of an import or originated in a targets file. If not known, returns empty string.</summary>
      <returns>Returns <see cref="T:System.String" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ElementLocation.Line">
      <summary>The line number where this element exists in its file. The first line is numbered 1. Zero indicates "unknown location".</summary>
      <returns>Returns <see cref="T:System.Int32" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ElementLocation.LocationString">
      <summary>The location in a form suitable for replacement into a message. Example: "c:\dir\proj.csproj (12,34)" Calling this creates and formats a new string. Only in rare cases should the location go within the message itself.</summary>
      <returns>Returns <see cref="T:System.String" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectChooseElement.Condition">
      <summary>Gets a nonexistent condition, which is implicitly true.</summary>
      <returns>Returns a null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectChooseElement.ConditionLocation">
      <summary>This does not allow conditions, so it should not be called.</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectChooseElement.OtherwiseElement">
      <summary>Gets any Otherwise Element (MSBuild) child. </summary>
      <returns>Returns any Otherwise child. Returns null if no Otherwise child exists.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectChooseElement.WhenElements">
      <summary>Gets all the When Element (MSBuild) children. </summary>
      <returns>Returns all the When children. There is always at least one When child.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectElement.AllParents">
      <summary>All parent elements of this element, going up to the ProjectRootElement. None if this is a ProjectRootElement. None if this has not been attached to a parent yet.</summary>
      <returns>Returns an enumerator over all parent elements. There are no parents elements if the project element is a ProjectRootElement or if this is not yet attached to a parent element.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectElement.Condition">
      <summary>Gets or sets the Condition value.  It will return empty string IFF a condition attribute is legal but it’s not present or has no value.  It will return null IFF a Condition attribute is illegal on that element. Removes the attribute if the value to set is empty. It is possible for derived classes to throw an <see cref="T:System.InvalidOperationException" /> if setting the condition is not applicable for those elements.</summary>
      <returns>Returns the Condition attribute value. Returns an empty string if the attribute is not present. </returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectElement.ConditionLocation">
      <summary>Location of the "Condition" attribute on this element, if any. If there is no such attribute, returns null.</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectElement.ContainingProject">
      <summary>ProjectRootElement (possibly imported) that contains this Xml. Cannot be null.</summary>
      <returns>Returns the project root container that contains this project. </returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectElement.Label">
      <summary>Gets or sets the Label value.  Returns empty string if it is not present. Removes the attribute if the value to set is empty.</summary>
      <returns>Returns the label. Returns an empty string if no label is present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectElement.LabelLocation">
      <summary>Location of the "Label" attribute on this element, if any. If there is no such attribute, returns null;</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectElement.Location">
      <summary>Location of the corresponding Xml element. May not be correct if file is not saved, or file has been edited since it was last saved. In the case of an unsaved edit, the location only contains the path to the file that the element originates from.</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectElement.NextSibling">
      <summary>Next sibling element. May be null.</summary>
      <returns>Returns the next sibling of this project element. Returns null if no next sibling exists.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectElement.Parent">
      <summary>Null if this is a ProjectRootElement. Null if this has not been attached to a parent yet.</summary>
      <returns>Returns the project element container that contains this project. </returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectElement.PreviousSibling">
      <summary>Previous sibling element. May be null.</summary>
      <returns>Returns the previous sibling of this project element. Returns null if no previous sibling exists.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectElementContainer.AllChildren">
      <summary>Gets a recursive depth-first enumerator over all child elements.</summary>
      <returns>Returns a recursive depth-first enumerator over all child elements.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectElementContainer.Children">
      <summary>Gets all child elements.</summary>
      <returns>Returns all child elements.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectElementContainer.ChildrenReversed">
      <summary>Gets all child elements, starting from the last child.</summary>
      <returns>Returns all child elements, starting from the last child.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectElementContainer.Count">
      <summary>Gets the number of child elements.</summary>
      <returns>Returns the number of child elements.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectElementContainer.FirstChild">
      <summary>Gets the first child element. </summary>
      <returns>Returns the first child element. Returns null if no child element exists.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectElementContainer.LastChild">
      <summary>Gets the last child element.</summary>
      <returns>Returns the last child element. Returns null if no child element exists.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectExtensionsElement.Condition">
      <summary>Gets a nonexistent condition, which is implicitly true.</summary>
      <returns>Returns a null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectExtensionsElement.ConditionLocation">
      <summary>This does not allow conditions, so it should not be called.</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectExtensionsElement.Content">
      <summary>Gets or sets the arbitrary XML content of this project extension.</summary>
      <returns>Returns the arbitrary XML content of this project extension.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectExtensionsElement.Item(System.String)">
      <summary>Gets or sets the content of the first sub-element with the given <paramref name="name" /> parameter.</summary>
      <param name="name">The name of the sub-element.</param>
      <returns>Returns the contents of the element.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectImportElement.Project">
      <summary>Gets or sets the Project attribute.</summary>
      <returns>Returns the value of the Project attribute. </returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectImportElement.ProjectLocation">
      <summary>Location of the project attribute</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectImportGroupElement.Imports">
      <summary>Gets all properties in this project import.</summary>
      <returns>Returns all properties in this project import.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemDefinitionElement.ItemType">
      <summary>Gets the item definition element name. </summary>
      <returns>Returns the item definition element name. </returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemDefinitionElement.Metadata">
      <summary>Gets all child metadata definitions.</summary>
      <returns>Returns all child metadata definitions.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemDefinitionGroupElement.ItemDefinitions">
      <summary>Gets all child item definitions.</summary>
      <returns>Returns all child item definitions.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemElement.Exclude">
      <summary>Gets or sets the Exclude attribute value. </summary>
      <returns>Returns the Exclude attribute value. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemElement.ExcludeLocation">
      <summary>Location of the exclude attribute</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemElement.HasMetadata">
      <summary>Determines if this item has any child metadata elements.</summary>
      <returns>Returns true if this item has child metadata elements; false otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemElement.Include">
      <summary>Gets or sets the Include attribute value. </summary>
      <returns>Returns the Include attribute value. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemElement.IncludeLocation">
      <summary>Location of the include attribute</summary>
      <returns>Returns the include location</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemElement.ItemType">
      <summary>Gets the item element’s type.</summary>
      <returns>Returns the item element type. </returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemElement.KeepDuplicates">
      <summary>Gets or sets the KeepDuplicates value.</summary>
      <returns>Returns the value of KeepDuplicates, or returns empty string if it is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemElement.KeepDuplicatesLocation">
      <summary>Gets or sets the Location of the KeepDuplicates attribute.</summary>
      <returns>Returns the location of the KeepDuplicates attribute.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemElement.KeepMetadata">
      <summary>Gets or sets the KeepMetadata attribute value.</summary>
      <returns>Returns the value of the KeepMetadata attribute or returns an empty string if it is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemElement.KeepMetadataLocation">
      <summary>Gets or sets the location of the KeepMetadata attribute.</summary>
      <returns>Returns the location of KeepMetadata.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemElement.Metadata">
      <summary>Gets all child metadata.</summary>
      <returns>Returns all child metadata.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemElement.Remove">
      <summary>Gets or sets the Remove attribute value. </summary>
      <returns>Returns the Remove attribute value. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemElement.RemoveLocation">
      <summary>Location of the remove attribute</summary>
      <returns>Returns the remove attribute’s location.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemElement.RemoveMetadata">
      <summary>Gets or sets the RemoveMetadata attribute.</summary>
      <returns>Returns the RemoveMetadata value or returns an empty string if it is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemElement.RemoveMetadataLocation">
      <summary>Gets or sets the location of the RemoveMetadata attribute.</summary>
      <returns>Returns the RemoveMetadata attribute’s location.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectItemGroupElement.Items">
      <summary>Gets all child items. </summary>
      <returns>Returns all child items.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectMetadataElement.Name">
      <summary>Gets the metadata name. </summary>
      <returns>Returns the metadata name. </returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectMetadataElement.Value">
      <summary>Gets or sets the unevaluated metadata value.</summary>
      <returns>Returns the unevaluated metadata value. Returns an empty string if the value is uninitialized.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectOnErrorElement.ExecuteTargetsAttribute">
      <summary>Gets or sets the value of the ExecuteTargets attribute.</summary>
      <returns>Returns the value of the ExecuteTargets attribute.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectOnErrorElement.ExecuteTargetsLocation">
      <summary>Location of the "ExecuteTargets" attribute on this element, if any. If there is no such attribute, returns null;</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectOtherwiseElement.ChooseElements">
      <summary>Gets all child Choose elements.</summary>
      <returns>Returns all child Choose elements.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectOtherwiseElement.Condition">
      <summary>Gets a nonexistent condition, which is implicitly true.</summary>
      <returns>Returns a null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectOtherwiseElement.ConditionLocation">
      <summary>This does not allow conditions, so it should not be called.</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectOtherwiseElement.ItemGroups">
      <summary>Gets all child item groups.</summary>
      <returns>Returns all child item groups.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectOtherwiseElement.PropertyGroups">
      <summary>Gets all child property groups.</summary>
      <returns>Returns all child property groups.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectOutputElement.IsOutputItem">
      <summary>Determines whether this output element represents an output item, as opposed to an output property.</summary>
      <returns>Returns true if this output element represents an output item; false otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectOutputElement.IsOutputProperty">
      <summary>Determines whether this output element represents an output property, as opposed to an output item.</summary>
      <returns>Returns true if this output element represents an output property; false otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectOutputElement.ItemType">
      <summary>Gets or sets the ItemType attribute value. </summary>
      <returns>Gets or sets the ItemType attribute value  Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectOutputElement.ItemTypeLocation">
      <summary>Location of the item type attribute, if any</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectOutputElement.PropertyName">
      <summary>Gets or sets the PropertyName attribute value. </summary>
      <returns>Gets or sets the PropertyName attribute value. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectOutputElement.PropertyNameLocation">
      <summary>Location of the property name attribute, if any</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectOutputElement.TaskParameter">
      <summary>Gets or sets the TaskParameter attributevalue. </summary>
      <returns>Gets or sets the TaskParameter attribute value. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectOutputElement.TaskParameterLocation">
      <summary>Location of the task parameter attribute</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectPropertyElement.Name">
      <summary>Gets the property name. </summary>
      <returns>Returns the property name.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectPropertyElement.Value">
      <summary>Gets or sets the unevaluated property value. </summary>
      <returns>Returns the unevaluated property value. Returns an empty string if the value is uninitialized.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectPropertyGroupElement.Properties">
      <summary>Gets all child properties.</summary>
      <returns>Returns all child properties.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectPropertyGroupElement.PropertiesReversed">
      <summary>Gets all child properties, starting with the last child.</summary>
      <returns>Returns all child properties, starting with the last child.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.ChooseElements">
      <summary>Gets all child Choose Element (MSBuild) in this project.</summary>
      <returns>Returns all child Choose elements.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.Condition">
      <summary>Gets null because the Condition attribute is nonexistent for this element and a nonexistent condition is implicitly true.</summary>
      <returns>Returns a null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.ConditionLocation">
      <summary>Do not use. The Condition attribute is nonexistent for <see cref="T:Microsoft.Build.Construction.ProjectRootElement" />. Get throws an internal error.</summary>
      <returns>Throws an internal error and returns null. </returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.DefaultTargets">
      <summary>Gets or sets the value of the DefaultTargets attribute. </summary>
      <returns>Returns the value of the DefaultTargets attribute. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.DefaultTargetsLocation">
      <summary>Location of the DefaultTargets attribute on this element, if any.</summary>
      <returns>Returns  the DefaultTargets attribute location. If there is no such attribute, returns null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.DirectoryPath">
      <summary>Gets the directory path to the project file. </summary>
      <returns>Returns the directory path, which is never null. If the project is not loaded from disk, returns the current-directory at the time the project was loaded.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.Encoding">
      <summary>Specifies the character encoding that the project file is to be saved in.</summary>
      <returns>Returns the character encoding that the project file is to be saved in.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.FullPath">
      <summary>Gets the full path to the project file. </summary>
      <returns>Returns the full path to the project file. If the project is not loaded from disk, returns null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.HasUnsavedChanges">
      <summary>Determines whether the project has been modified since it was last loaded or saved.</summary>
      <returns>Returns true if the project has been modified; false otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.ImportGroups">
      <summary>Gets all the child import groups in this project.</summary>
      <returns>Returns all the child import groups in this project.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.ImportGroupsReversed">
      <summary>Gets all the child import groups in this project, starting with the last group.</summary>
      <returns>Returns all the child import groups in this project, starting with the last group.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.Imports">
      <summary>Gets all the child import elements in this project.</summary>
      <returns>Gets all the child import elements in this project.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.InitialTargets">
      <summary>Gets or sets the value of the InitialTargets attribute. </summary>
      <returns>Returns the InitialTargets attribute value. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.InitialTargetsLocation">
      <summary>Location of the InitialTargets attribute on this element, if any.</summary>
      <returns>Returns InitialTargets attribute location. If there is no such attribute, returns null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.ItemDefinitionGroups">
      <summary>Gets all the child item definition groups in this project.</summary>
      <returns>Returns all the child item definition groups in this project.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.ItemDefinitionGroupsReversed">
      <summary>Gets all the child item definition groups in this project, starting with the last group.</summary>
      <returns>Returns all the child item definition groups in this project, starting with the last group.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.ItemDefinitions">
      <summary>Gets all child item definitions in all item definition groups anywhere in this project.</summary>
      <returns>Gets all child item definitions in all item definition groups anywhere in this project.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.ItemGroups">
      <summary>Gets all the child item groups in this project. </summary>
      <returns>Returns all the child item groups in this project. </returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.ItemGroupsReversed">
      <summary>Gets all the child item groups present in this project, starting with the last group. </summary>
      <returns>Returns all the child item groups present in this project, starting with the last group. </returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.Items">
      <summary>Gets all child items in this project.</summary>
      <returns>Returns all child items in this project, even if they are contained by Choose elements. </returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.LastWriteTimeWhenRead">
      <summary>Gets the last-write-time of the project file.</summary>
      <returns>Gets the last-write-time of the project file.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.ProjectFileLocation">
      <summary>The location of the originating file itself, not any specific content within it. If the file has not been given a name, this is an empty location. This is a legitimate case of having no location.</summary>
      <returns>Returns the originating file location or an empty location.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.Properties">
      <summary>Gets all the child properties in this project.</summary>
      <returns>Returns all child properties in this project, even if they are contained by Choose elements. </returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.PropertyGroups">
      <summary>Gets all the child property groups in this project. </summary>
      <returns>Returns all the child property groups in this project. </returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.PropertyGroupsReversed">
      <summary>Gets all the child property groups present in this project, starting with the last group. </summary>
      <returns>Returns all the child property groups present in this project, starting with the last group. </returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.RawXml">
      <summary>Gets the XML content that represents this project. </summary>
      <returns>Returns the XML content that represents this project as a string.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.Targets">
      <summary>Gets all the child targets in this project.</summary>
      <returns>Returns all the child targets in this project.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.TimeLastChanged">
      <summary>Gets the time that this project was last modified. </summary>
      <returns>Returns the time that this project was last modified. Returns null if the project hasn't been modified since being created or loaded.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.ToolsVersion">
      <summary>Gets or sets the value of the ToolsVersion attribute. </summary>
      <returns>Returns the ToolsVersion attribute value. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.ToolsVersionLocation">
      <summary>The location of the ToolsVersion attribute on this element, if any.</summary>
      <returns>Returns the ToolsVersion attribute location. If there is no such attribute, returns null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.TreatAsLocalProperty">
      <summary>Gets or sets the value of the TreatAsLocalProperty attribute.</summary>
      <returns>Returns the TreatAsLocalProperty attribute value. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.TreatAsLocalPropertyLocation">
      <summary>The location of the TreatAsLocalProperty attribute on this element, if any.</summary>
      <returns>Returns the TreatAsLocalProperty attribute location. If there is no such attribute, returns null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.UsingTasks">
      <summary>Gets all child UsingTask Element (MSBuild) in this project.</summary>
      <returns>Returns all child UsingTask elements in this project.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectRootElement.Version">
      <summary>Gets the version number of this object. </summary>
      <returns>Returns the version number of this object. </returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.AfterTargets">
      <summary>Gets or sets the AfterTargets attribute value. </summary>
      <returns>Returns the AfterTargets attribute value. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.AfterTargetsLocation">
      <summary>Location of the AfterTargets attribute</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.BeforeTargets">
      <summary>Gets or sets the BeforeTargets attribute value. </summary>
      <returns>Returns the BeforeTargets attribute value. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.BeforeTargetsLocation">
      <summary>Location of the BeforeTargets attribute</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.DependsOnTargets">
      <summary>Gets or sets the DependsOnTargets attribute value.  Returns empty string if it is not present. Removes the attribute if the value to set is empty.</summary>
      <returns>Returns the DependsOnTargets attribute value. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.DependsOnTargetsLocation">
      <summary>Location of the DependsOnTargets attribute</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.Inputs">
      <summary>Gets or sets the Inputs attribute value.  Returns empty string if it is not present. Removes the attribute if the value to set is empty.</summary>
      <returns>Returns the Inputs attribute value. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.InputsLocation">
      <summary>Location of the Inputs attribute</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.ItemGroups">
      <summary>Gets all child item groups</summary>
      <returns>Returns all child item groups.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.KeepDuplicateOutputs">
      <summary>Gets or sets the TrimDuplicateOutputs attribute value. </summary>
      <returns>Returns the TrimDuplicateOutputs attribute value. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.KeepDuplicateOutputsLocation">
      <summary>Location of the TrimDuplicateOutputs attribute</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.Name">
      <summary>Gets and sets the name of the this target.</summary>
      <returns>Returns the name of the this target.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.NameLocation">
      <summary>Location of the Name attribute</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.OnErrors">
      <summary>Get all child OnError Element (MSBuild).</summary>
      <returns>Returns all child OnError elements.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.Outputs">
      <summary>Gets or sets the Outputs attribute value.  Returns empty string if it is not present. Removes the attribute if the value to set is empty.</summary>
      <returns>Returns the Outputs attribute value. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.OutputsLocation">
      <summary>Location of the Outputs attribute</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.PropertyGroups">
      <summary>Gets all child property groups.</summary>
      <returns>Returns all child property groups.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.Returns">
      <summary>Gets or sets the Returns attribute value. </summary>
      <returns>Returns the returns attribute value; null if the attribute is not present</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.ReturnsLocation">
      <summary>Location of the Returns attribute</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTargetElement.Tasks">
      <summary>Gets all child tasks.</summary>
      <returns>Returns all child tasks.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTaskElement.ContinueOnError">
      <summary>Gets or sets the ContinueOnError attribute value. </summary>
      <returns>Returns the ContinueOnError attribute value. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTaskElement.ContinueOnErrorLocation">
      <summary>Location of the "ContinueOnError" attribute on this element, if any. If there is no such attribute, returns null;</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTaskElement.MSBuildArchitecture">
      <summary>Gets or sets the architecture value for the task.  Returns empty string if it is not present. Removes the attribute if the value to set is empty.</summary>
      <returns>Returns <see cref="T:System.String" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTaskElement.MSBuildArchitectureLocation">
      <summary>Location of the "MSBuildArchitecture" attribute on this element, if any. If there is no such attribute, returns null;</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTaskElement.MSBuildRuntime">
      <summary>Gets or sets the runtime value for the task.  Returns empty string if it is not present. Removes the attribute if the value to set is empty.</summary>
      <returns>Returns <see cref="T:System.String" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTaskElement.MSBuildRuntimeLocation">
      <summary>Location of the "MSBuildRuntime" attribute on this element, if any. If there is no such attribute, returns null;</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTaskElement.Name">
      <summary>Gets the name of this task.</summary>
      <returns>Returns the name of this task.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTaskElement.Outputs">
      <summary>Gets all Output Element (MSBuild) children.</summary>
      <returns>Returns all Output element children.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTaskElement.ParameterLocations">
      <summary>Enumerable over the locations of parameters on the task. Condition and ContinueOnError, which have their own properties, are not included in this collection. If parameters differ only by case only the last one will be returned.  Hosts can still remove the other parameters by using RemoveAllParameters().</summary>
      <returns>Returns <see cref="T:System.Collections.Generic.IEnumerable`1" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectTaskElement.Parameters">
      <summary>Gets all unevaluated parameters of this task. </summary>
      <returns>Returns all unevaluated parameters of this task. </returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskBodyElement.Condition">
      <summary>Gets null because the Condition attribute is nonexistent for this element and a nonexistent condition is implicitly true.</summary>
      <returns>Returns a null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskBodyElement.ConditionLocation">
      <summary>Do not use. The Condition attribute is nonexistent for <see cref="T:Microsoft.Build.Construction.ProjectUsingTaskBodyElement" />. Get throws an internal error.</summary>
      <returns>Throws an internal error and returns null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskBodyElement.Evaluate">
      <summary>Gets the value of the Evaluate attribute.</summary>
      <returns>Returns the value of the Evaluate attribute, which is either "true" or "false". Returns "true" if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskBodyElement.EvaluateLocation">
      <summary>Location of the Evaluate attribute on this element, if any.</summary>
      <returns>Returns Evaluate attribute location. If there is no such attribute, returns the location of the element, instead of the location of the default attribute.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskBodyElement.TaskBody">
      <summary>Gets or sets the unevaluated value of the contents of the inline task. </summary>
      <returns>Returns the unevaluated inner XML content of the inline task. Returns an empty string if no inline task body is present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskElement.Architecture">
      <summary>Gets or sets the Architecture attribute of this inline task.</summary>
      <returns>Returns the value of the Architecture attribute. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskElement.ArchitectureLocation">
      <summary>Location of the Architecture attribute on this element, if any.</summary>
      <returns>Returns  the Architecture attribute location. If there is no such attribute, returns null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskElement.AssemblyFile">
      <summary>Gets the value of the AssemblyFile attribute, which selects the name of the assembly to load.</summary>
      <returns>Returns the value of the AssemblyFile attribute. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskElement.AssemblyFileLocation">
      <summary>Location of the AssemblyFile attribute on this element, if any.</summary>
      <returns>Returns  the AssemblyFile attribute location. If there is no such attribute, returns null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskElement.AssemblyName">
      <summary>Gets and sets the value of the AssemblyName attribute. </summary>
      <returns>Returns the value of the AssemblyName attribute. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskElement.AssemblyNameLocation">
      <summary>Location of the AssemblyName attribute on this element, if any.</summary>
      <returns>Returns  the AssemblyName attribute location. If there is no such attribute, returns null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskElement.ParameterGroup">
      <summary>Gets any ParameterGroup element for this inline task.</summary>
      <returns>Returns the parameter group. Returns null if no parameter group exists.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskElement.Runtime">
      <summary>Gets or sets the Runtime attribute of this inline task.</summary>
      <returns>Returns the value of the Runtime attribute. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskElement.RuntimeLocation">
      <summary>Location of the Runtime attribute on this element, if any.</summary>
      <returns>Returns  the Runtime attribute location. If there is no such attribute, returns null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskElement.TaskBody">
      <summary>Gets the inner XML content of this inline task.</summary>
      <returns>Returns the inner XML content of the inline task. Returns null if no body exists.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskElement.TaskFactory">
      <summary>Gets and sets the value of the TaskFactory attribute of this inline task.</summary>
      <returns>Returns the value of the TaskFactory attribute. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskElement.TaskFactoryLocation">
      <summary>Location of the TaskFactory attribute on this element, if any.</summary>
      <returns>Returns the value of the TaskFactory attribute. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskElement.TaskName">
      <summary>Gets and sets the value of the TaskName attribute.</summary>
      <returns>Returns the value of the TaskName attribute. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskElement.TaskNameLocation">
      <summary>Location of the TaskName attribute on this element, if any.</summary>
      <returns>Returns the value of the TaskName attribute. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskParameterElement.Condition">
      <summary>Gets a nonexistent condition, which is implicitly true.</summary>
      <returns>Returns a null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskParameterElement.ConditionLocation">
      <summary>Do not use. The Condition attribute is nonexistent for this element. Get throws an internal error.</summary>
      <returns>Throws an internal error and returns null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskParameterElement.Name">
      <summary>Gets and sets the name of the parameter of this inline task.</summary>
      <returns>Returns the name of the parameter.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskParameterElement.Output">
      <summary>Gets or sets the optional Output attribute of this inline task.</summary>
      <returns>Returns the value of the Output attribute. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskParameterElement.OutputLocation">
      <summary>Location of the Output attribute on this element, if any.</summary>
      <returns>Returns Output attribute location. If there is no such attribute, returns the location of the element, instead of the location of the default attribute.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskParameterElement.ParameterType">
      <summary>Gets or sets the Type attribute of this inline task.</summary>
      <returns>Returns the value of the Type attribute. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskParameterElement.ParameterTypeLocation">
      <summary>Location of the ParameterType attribute on this element, if any.</summary>
      <returns>Returns ParameterType attribute location. If there is no such attribute, returns the location of the element, instead of the location of the default attribute.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskParameterElement.Required">
      <summary>Gets or sets the Required attribute</summary>
      <returns>Returns the value of the Required attribute. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectUsingTaskParameterElement.RequiredLocation">
      <summary>Location of the Required attribute on this element, if any.</summary>
      <returns>Returns Required attribute location. If there is no such attribute, returns the location of the element, instead of the location of the default attribute.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectWhenElement.ChooseElements">
      <summary>Gets all child Choose Element (MSBuild).</summary>
      <returns>Returns all child Choose elements.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectWhenElement.ItemGroups">
      <summary>Gets all child item groups.</summary>
      <returns>Returns all child item groups.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.ProjectWhenElement.PropertyGroups">
      <summary>Gets all child property groups.</summary>
      <returns>Returns all child property groups.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.UsingTaskParameterGroupElement.Condition">
      <summary>Gets a nonexistent condition, which is implicitly true.</summary>
      <returns>Returns a null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.UsingTaskParameterGroupElement.ConditionLocation">
      <summary>This does not allow conditions, so it should not be called.</summary>
      <returns>Throws an internal error and returns null.</returns>
    </member>
    <member name="P:Microsoft.Build.Construction.UsingTaskParameterGroupElement.Parameters">
      <summary>Gets all parameters of this parameter group.</summary>
      <returns>Returns all parameters.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.AllEvaluatedItemDefinitionMetadata">
      <summary>Gets all item definition metadata encountered during evaluation. </summary>
      <returns>Returns all item definition metadata encountered during evaluation. This does not include any elements whose conditions did not evaluate to true, nor any item definition metadata added since the last evaluation.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.AllEvaluatedItems">
      <summary>Gets an enumerator over all items encountered during evaluation. These are read during the third evaluation pass.</summary>
      <returns>Returns an enumerator over all items encountered during evaluation. These are read during the third evaluation pass.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.AllEvaluatedProperties">
      <summary>Gets all properties encountered during evaluation. </summary>
      <returns>Returns all properties encountered during evaluation. This does not include any properties whose conditions did not evaluate to true, nor any properties added since the last evaluation.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.ConditionedProperties">
      <summary>Gets a collection of possible property values for properties used to evaluate conditions found on properties, property groups, imports, and whens.</summary>
      <returns>Returns a collection of possible property values for properties used to evaluate conditions found on properties, property groups, imports, and whens. The collection is in canonical form. The name of the entry is the name of the property to be evaluated, and the value is a list of possible property values.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.DirectoryPath">
      <summary>Gets the root directory for this project. </summary>
      <returns>Returns the root directory for this project. The root directory is never null; in-memory projects use the current directory at the time of project load.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.DisableMarkDirty">
      <summary>Gets or sets a flag the determines whether <see cref="M:Microsoft.Build.Evaluation.Project.MarkDirty" /> is temporarily disabled. This allows, for example, a global property to be set without the project getting marked dirty for reevaluation as a consequence.</summary>
      <returns>Returns a flag the determines whether <see langword="MarkDirty" /> is temporarily disabled.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.EvaluationCounter">
      <summary>Gets a number that is incremented every time that project is re-evaluated.</summary>
      <returns>Returns the incremented value. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.FullPath">
      <summary>Gets or sets the full path to the project source file. </summary>
      <returns>Returns the full path to the project source file. Returns an empty string if the project was not loaded from disk. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.GlobalProperties">
      <summary>Gets a dictionary of the global properties used for the evaluation of this project.</summary>
      <returns>Returns a dictionary of the global properties used for the evaluation of this project.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.Imports">
      <summary>Gets a list of all the files that contributed to the evaluation of this project.</summary>
      <returns>Returns a list of all the files that contributed to the evaluation of this project.The name of each item is the Import element that caused the file to be imported. The value of each item is the project root of the imported project. Import elements whose Condition attribute evaluated to false are not included. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.ImportsIncludingDuplicates">
      <summary>Gets a list of duplicate imports if an import was imported multiple times. However, only the first import was used in evaluation.</summary>
      <returns>Returns a list of duplicate imports.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.IsBuildEnabled">
      <summary>Gets or sets a property that selects whether the targets and tasks of this project can be built.</summary>
      <returns>Returns true if the targets and tasks of this project can be built; false otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.IsDirty">
      <summary>Gets a property that indicates whether this project has been modified so that it must be reevaluated. </summary>
      <returns>Returns a property that indicates whether this project has been modified so that it must be reevaluated. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.ItemDefinitions">
      <summary>Gets a dictionary of item definitions in this project, keyed by item type.</summary>
      <returns>Returns a dictionary of item definitions in this project, keyed by item type.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.Items">
      <summary>Gets an enumerator over all items in this project, ordered within groups of item types.</summary>
      <returns>Returns an enumerator over all items in this project, ordered within groups of item types.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.ItemsIgnoringCondition">
      <summary>Gets an enumerator over all items in this project, ordered within groups of item types. </summary>
      <returns>Returns an enumerator over all items in this project., ordered within groups of item types, including items whose conditions evaluate to false, or are contained within item groups whose condition evaluates to false. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.ItemTypes">
      <summary>Gets an enumerator over all item types in this project. </summary>
      <returns>Returns an enumerator over all item types in this project. This is an ordered collection.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.ProjectCollection">
      <summary>Gets the project collection which contains this project. </summary>
      <returns>Returns the project collection which contains this project, which is never null.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.ProjectFileLocation">
      <summary>The location of the originating file itself, not any specific content within it. If the file has not been given a name, this is an empty location. This is a legitimate case of having no location.</summary>
      <returns>Returns the originating file location or an empty location.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.Properties">
      <summary>Gets an enumerator over all properties in this project. This is an unordered collection.</summary>
      <returns>Returns an enumerator over all properties in this project. Since properties are evaluated as they appear, this is an unordered collection.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.SkipEvaluation">
      <summary>Gets or sets a flag the determines whether ReevaluateIfNecessary is temporarily disabled. This is useful when the host expects to make a number of reads and writes to the project, and wants to temporarily sacrifice correctness for performance.</summary>
      <returns>Returns a flag the determines whether ReevaluateIfNecessary is temporarily disabled.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.SubToolsetVersion">
      <summary>Gets the value of the SubToolsetVersion attribute, if any. This value was combined with the value of the ToolsVersion attribute to determine the toolset properties for this project.</summary>
      <returns>Returns the SubToolsetVersion attribute value. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.Targets">
      <summary>Gets a dictionary of all targets in this project, keyed by target name. </summary>
      <returns>Returns a dictionary of all targets in this project, keyed by target name. Overridden targets are not included in this collection. This dictionary is read-only.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.ToolsVersion">
      <summary>Gets the tools version that this project was evaluated with, if any.</summary>
      <returns>Gets the tools version that this project was evaluated with, if any. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Project.Xml">
      <summary>Gets the root project associated with this project. Can never be null</summary>
      <returns>Returns the root project associated with this project, which can never be null.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectChangedEventArgs.Project">
      <summary>Gets the project that was marked dirty.</summary>
      <returns>Never null.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectCollection.Count">
      <summary>Gets the number of projects currently loaded into this collection.</summary>
      <returns>Returns the number of projects currently loaded into this collection.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectCollection.DefaultToolsVersion">
      <summary>Gets the default tools version of this project collection. </summary>
      <returns>Returns the default tools version of this project collection, which is always defined. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectCollection.DisableMarkDirty">
      <summary>Gets or sets a flag that determines whether <see cref="M:Microsoft.Build.Evaluation.Project.MarkDirty" /> is temporarily disabled on projects in this collection. This allows, for example, a global properties to be set without projects getting marked dirty for reevaluation as a consequence.</summary>
      <returns>Returns a flag that determines whether <see langword="MarkDirty" /> is temporarily disabled.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectCollection.GlobalProjectCollection">
      <summary>Gets the global project collection object. </summary>
      <returns>Returns the global project collection object. This is a singleton project collection with no global properties or loggers. Toolset information is obtained from the configuration file and registry.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectCollection.GlobalProperties">
      <summary>Gets the read-only default global properties for all projects in this collection. </summary>
      <returns>Returns the read-only default global properties for all projects in this collection. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectCollection.HostServices">
      <summary>Gets or sets an object that provides host services to tasks during builds of projects contained in the project collection. </summary>
      <returns>Returns the host services object.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectCollection.IsBuildEnabled">
      <summary>Gets or sets a property that selects by default whether the targets and tasks of projects in the project collection can be built.</summary>
      <returns>Gets or sets a property that selects by default whether the targets and tasks of projects in this project collection can be built.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectCollection.LoadedProjects">
      <summary>Gets all the projects currently loaded into this collection.</summary>
      <returns>Returns all the projects currently loaded into this collection. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectCollection.Loggers">
      <summary>Gets all loggers that projects in this collection can use for their builds. </summary>
      <returns>Returns all loggers that projects in this collection can use for their builds. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectCollection.OnlyLogCriticalEvents">
      <summary>Gets or sets a switch that determines whether only critical events such as warnings and errors are logged.</summary>
      <returns>If true, only critical events such as warnings and errors are logged; false otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectCollection.ProjectAddedToProjectCollectionEventArgs.ProjectRootElement">
      <summary>Root element which was added to the project collection.</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ProjectRootElement" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectCollection.SkipEvaluation">
      <summary>Gets or sets a flag the determines whether ReevaluateIfNecessary is temporarily disabled on projects in this collection. This is useful when the host expects to make a number of reads and writes to projects, and wants to temporarily sacrifice correctness for performance.</summary>
      <returns>Returns a flag the determines whether ReevaluateIfNecessary is temporarily disabled.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectCollection.ToolsetLocations">
      <summary>Gets the locations used to find the toolsets.</summary>
      <returns>Returns the locations used to find the toolsets.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectCollection.Toolsets">
      <summary>Gets the toolsets available to this project collection.</summary>
      <returns>Returns the toolsets available to this project collection.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectCollection.Version">
      <summary>Gets the file version of the assembly file that contains the MSBuild engine.</summary>
      <returns>Returns the file version of the assembly file that contains the MSBuild engine.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectCollectionChangedEventArgs.Changed">
      <summary>Gets the type of the change made to the <see cref="T:Microsoft.Build.Evaluation.ProjectCollection" />.</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Evaluation.ProjectCollectionChangedState" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectItem.DirectMetadata">
      <summary>Gets an enumerator over all item metadata. </summary>
      <returns>Returns an enumerator over all item metadata, which can never be null. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectItem.DirectMetadataCount">
      <summary>Gets the count of metadata for this item. </summary>
      <returns>Returns the count of metadata for this item. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectItem.EvaluatedInclude">
      <summary>Gets the evaluated value of the Include attribute.</summary>
      <returns>Returns the evaluated value of the Include attribute.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectItem.IsImported">
      <summary>Determines if this item originates from an imported file.</summary>
      <returns>Return true if this item originates from an imported file; false otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectItem.ItemType">
      <summary>Gets or sets the type of this item.</summary>
      <returns>Returns the item type.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectItem.Metadata">
      <summary>Gets all the metadata for this item, including metadata originating from item definitions. </summary>
      <returns>Returns all the metadata for this item, including metadata originating from item definitions.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectItem.MetadataCount">
      <summary>Gets the count of metadata for this item, including any metadata originating from item definitions, and any built-in metadata.</summary>
      <returns>Returns the count of metadata for this item, including any metadata originating from item definitions, and any built-in metadata.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectItem.Project">
      <summary>Gets the project that contains this project item.</summary>
      <returns>Returns the project that contains this project item.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectItem.UnevaluatedInclude">
      <summary>Gets or sets the unevaluated value of the Include attribute.</summary>
      <returns>Returns the unevaluated value of the Include attribute.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectItem.Xml">
      <summary>Gets the item element that is associated with this item. </summary>
      <returns>Returns the item element that is associated with this item, which can never be null. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectItemDefinition.ItemType">
      <summary>Gets the item type of this item definition.</summary>
      <returns>Returns the item type of this item definition.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectItemDefinition.Metadata">
      <summary>Gets an enumerator over all metadata for the item definition. </summary>
      <returns>Returns an enumerator over all metadata for the item definition. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectItemDefinition.MetadataCount">
      <summary>Gets the count of the metadata on the item definition.</summary>
      <returns>Returns the count of the metadata on the item definition.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectItemDefinition.Project">
      <summary>Gets the project that contains this item definition. </summary>
      <returns>Returns the project that contains this item definition, which is never null.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectMetadata.ConditionLocation">
      <summary>Location of the Condition attribute.</summary>
      <returns>Returns Condition attribute location.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectMetadata.EvaluatedValue">
      <summary>Gets the evaluated metadata value. </summary>
      <returns>Returns the evaluated metadata value, which is never null.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectMetadata.IsImported">
      <summary>Determines if the metadata originated from an imported file.</summary>
      <returns>Returns true if the metadata originated from an imported file; false otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectMetadata.ItemType">
      <summary>Gets the item type of the containing item definition or item.</summary>
      <returns>Returns the item type of the containing item definition or item.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectMetadata.Location">
      <summary>Location of the element.</summary>
      <returns>Returns the element location.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectMetadata.Name">
      <summary>Gets the name of the metadata.</summary>
      <returns>Returns the name of the metadata.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectMetadata.Predecessor">
      <summary>Gets the last metadata (from an item definition or item) that was overridden by this metadata during evaluation. </summary>
      <returns>Returns the last metadata (from an item definition or item) whose value was overridden by this metadata during evaluation. Returns null if the metadata has not been overridden.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectMetadata.Project">
      <summary>Gets the project that contains this metadata.</summary>
      <returns>Returns the project that contains this metadata, which is never null.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectMetadata.UnevaluatedValue">
      <summary>Gets or sets the unevaluated metadata value. </summary>
      <returns>Returns the unevaluated metadata value.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectMetadata.Xml">
      <summary>Gets the associated project metadata element.</summary>
      <returns>Returns the associated project metadata element, which can never be null.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectProperty.EvaluatedValue">
      <summary>Gets the evaluated property value. </summary>
      <returns>Returns the evaluated property value, which is never null. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectProperty.IsEnvironmentProperty">
      <summary>Determines whether the property originated from the environment variables.</summary>
      <returns>True if the property originated from an environment variable; false otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectProperty.IsGlobalProperty">
      <summary>Determines whether the property is a global property.</summary>
      <returns>True if the property is a global property; false otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectProperty.IsImported">
      <summary>Determines whether the property originates from an imported file.</summary>
      <returns>Returns true if the property originates from an imported file and not from an environment variable, a global property, or a reserved property. Returns false otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectProperty.IsReservedProperty">
      <summary>Determines whether the property is a reserved property, for example 'MSBuildProjectFile'.</summary>
      <returns>Returns true if the property is a reserved property; false otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectProperty.Name">
      <summary>Gets the name of the property. </summary>
      <returns>Returns the name of the property. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectProperty.Predecessor">
      <summary>Gets the last property that was overridden by this property during evaluation. </summary>
      <returns>Returns the last property whose value was overridden by this property during evaluation. Returns null if the property has not been overridden.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectProperty.Project">
      <summary>Gets the project that contains this property.</summary>
      <returns>Returns the project that contains this property, which is never null.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectProperty.UnevaluatedValue">
      <summary>Gets or sets the unevaluated property value. </summary>
      <returns>Returns the unevaluated property value. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectProperty.Xml">
      <summary>Gets the associated property element. Backing XML property. Null only if this is a global, environment, or built-in property.</summary>
      <returns>Returns the associated property element. Return null if this is a global or reserved property, or originates from an environment variable.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectXmlChangedEventArgs.ProjectXml">
      <summary>Gets the project root element which was just changed..</summary>
      <returns>Never null.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ProjectXmlChangedEventArgs.Reason">
      <summary>Gets the reason for the change.</summary>
      <returns>May be null.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ResolvedImport.ImportedProject">
      <summary>Gets one of the imported projects.</summary>
      <returns>Returns a <see cref="T:Microsoft.Build.Construction.ProjectRootElement" /> representing the imported project.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ResolvedImport.ImportingElement">
      <summary>Gets the element doing the import.</summary>
      <returns>Returns the <see cref="T:Microsoft.Build.Construction.ProjectImportElement" /> representing the element doing the import.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.ResolvedImport.IsImported">
      <summary>Gets a flag which determines if the importing element is itself imported.</summary>
      <returns>Returns <see langword="true" /> if the element is imported, <see langword="false" /> otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.SubToolset.Properties">
      <summary>Gets the properties that correspond to this particular sub toolset.</summary>
      <returns>Returns the properties that correspond to this particular sub toolset.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.SubToolset.SubToolsetVersion">
      <summary>Gets the Visual Studio version that corresponds to this sub toolset.</summary>
      <returns>Returns the string containing the Visual Studio version for this sub toolset.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Toolset.DefaultSubToolsetVersion">
      <summary>Gets the default sub toolset version for this toolset.</summary>
      <returns>Returns the default sub toolset version.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Toolset.Properties">
      <summary>Gets the optional properties associated with the toolset.</summary>
      <returns>Returns the optional properties associated with the toolset.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Toolset.SubToolsets">
      <summary>Gets the set of sub toolsets associated with this toolset.</summary>
      <returns>Returns the set of sub toolsets.</returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Toolset.ToolsPath">
      <summary>Gets a path to the tasks and targets of this toolset. </summary>
      <returns>Returns a path to the tasks and targets of this toolset. </returns>
    </member>
    <member name="P:Microsoft.Build.Evaluation.Toolset.ToolsVersion">
      <summary>Gets the name of this toolset.</summary>
      <returns>Returns the name of this toolset.</returns>
    </member>
    <member name="P:Microsoft.Build.Exceptions.BuildAbortedException.ErrorCode">
      <summary>Gets the error code (if any) associated with the exception message.</summary>
      <returns>Returns the error code as a string; returns a null string if no error code exists.</returns>
    </member>
    <member name="P:Microsoft.Build.Exceptions.InternalLoggerException.BuildEventArgs">
      <summary>Gets the details of the build event (if any) that was being logged.</summary>
      <returns>The build event args, or null.</returns>
    </member>
    <member name="P:Microsoft.Build.Exceptions.InternalLoggerException.ErrorCode">
      <summary>Gets the error code associated with this exception's message (not the inner exception).</summary>
      <returns>The error code string.</returns>
    </member>
    <member name="P:Microsoft.Build.Exceptions.InternalLoggerException.HelpKeyword">
      <summary>Gets the F1-help keyword associated with this error, for the host IDE.</summary>
      <returns>The keyword string.</returns>
    </member>
    <member name="P:Microsoft.Build.Exceptions.InternalLoggerException.InitializationException">
      <summary>True if the exception occured during logger initialization</summary>
    </member>
    <member name="P:Microsoft.Build.Exceptions.InvalidProjectFileException.BaseMessage">
      <summary>Gets the exception message not including the project file.</summary>
      <returns>The error message string only.</returns>
    </member>
    <member name="P:Microsoft.Build.Exceptions.InvalidProjectFileException.ColumnNumber">
      <summary>Gets the invalid column number (if any) in the project.</summary>
      <returns>The invalid column number, or zero.</returns>
    </member>
    <member name="P:Microsoft.Build.Exceptions.InvalidProjectFileException.EndColumnNumber">
      <summary>Gets the last column number (if any) of a range of invalid columns in the project.</summary>
      <returns>The last invalid column number, or zero.</returns>
    </member>
    <member name="P:Microsoft.Build.Exceptions.InvalidProjectFileException.EndLineNumber">
      <summary>Gets the last line number (if any) of a range of invalid lines in the project.</summary>
      <returns>The last invalid line number, or zero.</returns>
    </member>
    <member name="P:Microsoft.Build.Exceptions.InvalidProjectFileException.ErrorCode">
      <summary>Gets the error code (if any) associated with the exception message.</summary>
      <returns>Error code string, or null.</returns>
    </member>
    <member name="P:Microsoft.Build.Exceptions.InvalidProjectFileException.ErrorSubcategory">
      <summary>Gets the error sub-category (if any) that describes the type of this error.</summary>
      <returns>The sub-category string, or null.</returns>
    </member>
    <member name="P:Microsoft.Build.Exceptions.InvalidProjectFileException.HasBeenLogged">
      <summary>Gets a flag that determines whether the exception has already been logged. Allows the exception to be logged at the most appropriate location, but continue to be propagated.</summary>
      <returns>Returns a flag that determines whether the exception has already been logged.</returns>
    </member>
    <member name="P:Microsoft.Build.Exceptions.InvalidProjectFileException.HelpKeyword">
      <summary>Gets the F1-help keyword (if any) associated with this error, for the host IDE.</summary>
      <returns>The keyword string, or null.</returns>
    </member>
    <member name="P:Microsoft.Build.Exceptions.InvalidProjectFileException.LineNumber">
      <summary>Gets the invalid line number (if any) in the project.</summary>
      <returns>The invalid line number, or zero.</returns>
    </member>
    <member name="P:Microsoft.Build.Exceptions.InvalidProjectFileException.Message">
      <summary>Gets the exception message including the affected project file (if any).</summary>
      <returns>The complete message string.</returns>
    </member>
    <member name="P:Microsoft.Build.Exceptions.InvalidProjectFileException.ProjectFile">
      <summary>Gets the file (if any) associated with this exception. This may be an imported file.</summary>
      <returns>Project filename/path string, or null.</returns>
    </member>
    <member name="P:Microsoft.Build.Exceptions.InvalidToolsetDefinitionException.ErrorCode">
      <summary>The MSBuild error code corresponding with this exception, or null if none was specified.</summary>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildManager.DefaultBuildManager">
      <summary>Gets the singleton instance of the Build Manager.</summary>
      <returns>Returns the singleton instance of the Build Manager.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.BuildProcessEnvironment">
      <summary>Gets the environment variables which were set when this build was created.</summary>
      <returns>Returns environment variables set when build was created.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.BuildThreadPriority">
      <summary>Gets or sets the desired thread priority for building.</summary>
      <returns>Returns the thread priority for building</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.Culture">
      <summary>Gets or sets the name of the culture to use during the build.</summary>
      <returns>Returns the culture.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.DefaultToolsVersion">
      <summary>Gets or sets the default tools version for the build.</summary>
      <returns>Returns the tools version.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.DetailedSummary">
      <summary>Gets or sets a switch that specifies whether the build should emit a detailed summary at the end of the log.</summary>
      <returns>Returns the value of a switch that specifies whether the build should emit a detailed summary at the end of the log</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.DisableInProcNode">
      <summary>Gets or sets the flag determining whether to use the in process node.</summary>
      <returns>Returns the flag.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.EnableNodeReuse">
      <summary>Gets or sets a flag determining whether out-of-process nodes should persist after the build and wait for further builds.</summary>
      <returns>Returns the flag.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.EnvironmentProperties">
      <summary>Gets an immutable collection of environment properties.</summary>
      <returns>Returns an immutable collection of environment properties.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.ForwardingLoggers">
      <summary>Gets or sets the collection of forwarding logger descriptions.</summary>
      <returns>Returns the collection of forwarding logger descriptions.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.GlobalProperties">
      <summary>Gets or sets an immutable collection of global properties.</summary>
      <returns>Returns an immutable collection of global properties.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.HostServices">
      <summary>Gets or sets a service that allows the host to provide additional control over the build process.</summary>
      <returns>Returns the host service.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.LegacyThreadingSemantics">
      <summary>Gets or sets a switch that enables or disables legacy threading semantics.</summary>
      <returns>Returns a switch that enables or disables legacy threading semantics; true if enabled, false otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.Loggers">
      <summary>Gets or sets the collection of loggers to use during the build.</summary>
      <returns>Returns the collection of loggers to use during the build.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.LogInitialPropertiesAndItems">
      <summary>Gets or sets the flag determining whether the build logs the input parameters.</summary>
      <returns>Returns the flag.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.LogTaskInputs">
      <summary>Gets or sets the flag determining whether the build logs the task parameters.</summary>
      <returns>Returns the flag.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.MaxNodeCount">
      <summary>Gets or sets the maximum number of nodes this build may use.</summary>
      <returns>Returns the maximum number of nodes this build may use.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.MemoryUseLimit">
      <summary>Gets or sets the amount of memory the build should limit itself to using, in megabytes.</summary>
      <returns>Returns the amount of memory the build should limit itself to using, in megabytes.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.NodeExeLocation">
      <summary>Gets or sets the location of the build node executable.</summary>
      <returns>Returns the location of the build node executable.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.OnlyLogCriticalEvents">
      <summary>Gets or sets a flag that determines if non-critical logging events should be discarded.</summary>
      <returns>Returns a flag that determines if non-critical logging events should be discarded.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.ResetCaches">
      <summary>Gets or sets a switch that specifies whether the build should reset the configuration and results caches.</summary>
      <returns>Returns a switch that specifies whether the build should reset the configuration and results caches; true if the caches should be reset, false otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.SaveOperatingEnvironment">
      <summary>Gets or sets a switch specifying if the operating environment, such as the current directory and environment, should be saved and restored between project builds and task invocations.</summary>
      <returns>Returns a switch indicating whether the operating environment should be saved and restored between project builds and task invocations; true if the environment should be saved, false otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.ShutdownInProcNodeOnBuildFinish">
      <summary>Gets or sets the flag determining whether to shut down the in process node when the build finishes. The default is <see langword="false" />.</summary>
      <returns>Returns the flag.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.ToolsetDefinitionLocations">
      <summary>Gets or sets locations to search for toolsets.</summary>
      <returns>Returns locations to search for toolsets.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.Toolsets">
      <summary>Gets all of the toolsets.</summary>
      <returns>Returns all of the toolsets.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.UICulture">
      <summary>Gets or sets the name of the UI culture to use during the build.</summary>
      <returns>Returns the name of the UI culture to use during the build.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildParameters.UseSynchronousLogging">
      <summary>Gets or sets a switch that specifies whether synchronous logging is used when there is only a single process.</summary>
      <returns>Returns a switch that specifies whether synchronous logging is used when there is only a single process; if true, use synchronous logging, otherwise use asynchronous logging.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildRequestData.ExplicitlySpecifiedToolsVersion">
      <summary>Gets or sets the tools version to use for the build.</summary>
      <returns>Returns the tools version to use for the build.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildRequestData.Flags">
      <summary>Gets or sets additional flags for this build request.</summary>
      <returns>Returns the build request flags.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildRequestData.GlobalProperties">
      <summary>Gets the global properties to use for this build request.</summary>
      <returns>Returns the global properties to use for this build request.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildRequestData.HostServices">
      <summary>Gets the host service for this build.</summary>
      <returns>Returns the host service for this build.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildRequestData.ProjectFullPath">
      <summary>Gets of sets the path to the project file for this build.</summary>
      <returns>Returns the path to the project file for this build.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildRequestData.ProjectInstance">
      <summary>Gets or sets project instance for this build.</summary>
      <returns>The project instance, which may be null.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildRequestData.PropertiesToTransfer">
      <summary>Gets the list of properties to transfer to an out of process node for the build.</summary>
      <returns>Returns the list of properties.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildRequestData.TargetNames">
      <summary>Gets the names of the targets to build.</summary>
      <returns>Returns the names of the targets to build.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildResult.CircularDependency">
      <summary>Gets a flag indicating whether a circular dependency was detected.</summary>
      <returns>Returns true if a circular dependency was detected; false otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildResult.ConfigurationId">
      <summary>Gets the configuration ID for this build result set.</summary>
      <returns>Returns the configuration ID for this build result set.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildResult.Exception">
      <summary>Gets the exception generated for this build result set. </summary>
      <returns>Returns the exception generated for this build result set. Returns false if no exception occurred.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildResult.GlobalRequestId">
      <summary>Gets the build request id for this build result set.</summary>
      <returns>Returns the build request id for this build result set.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildResult.Item(System.String)">
      <summary>Gets an indexer which can be used to get the build result for the given target.</summary>
      <param name="target">The indexed target.</param>
      <returns>The build result for the indexed target.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildResult.NodeRequestId">
      <summary>Gets the build request ID of the originating node.</summary>
      <returns>Returns the build request ID of the originating node.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildResult.OverallResult">
      <summary>Gets the overall result for this build.</summary>
      <returns>Returns the overall result for this build.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildResult.ParentGlobalRequestId">
      <summary>Gets the global build request ID which issued the request leading to this build result set.</summary>
      <returns>Returns the global build request ID which issued the request leading to this build result set.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildResult.ProjectStateAfterBuild">
      <summary>Gets or sets <see cref="T:Microsoft.Build.Execution.ProjectInstance" /> state after the build.</summary>
      <returns>Returns the <see langword="ProjectInstance" /> object.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildResult.ResultsByTarget">
      <summary>Gets an enumerator over all target results in this build result set.</summary>
      <returns>Returns an enumerator over all target results in this build result set.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildResult.SubmissionId">
      <summary>Gets the build submission which this build result set is associated with.</summary>
      <returns>Returns the build submission which this build result set is associated with.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildSubmission.AsyncContext">
      <summary>Gets or sets the asynchronous context provided to <see cref="M:Microsoft.Build.Execution.BuildSubmission.ExecuteAsync(Microsoft.Build.Execution.BuildSubmissionCompleteCallback,System.Object)" />, if any.</summary>
      <returns>Returns the asynchronous context provided to <see cref="M:Microsoft.Build.Execution.BuildSubmission.ExecuteAsync(Microsoft.Build.Execution.BuildSubmissionCompleteCallback,System.Object)" />. Returns null if no context is provided.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildSubmission.BuildManager">
      <summary>Gets or sets the build manager this build submission is associated with.</summary>
      <returns>Returns the build manager this build submission is associated with.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildSubmission.BuildResult">
      <summary>Gets or sets the result of the build. </summary>
      <returns>Returns the result of the build. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildSubmission.IsCompleted">
      <summary>Determines whether this build submission is complete.</summary>
      <returns>Returns true if this build submission is complete; false otherwise.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildSubmission.SubmissionId">
      <summary>Gets or sets an ID uniquely identifying this build submission.</summary>
      <returns>Returns an ID uniquely identifying this build submission. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.BuildSubmission.WaitHandle">
      <summary>Gets a <see cref="T:System.Threading.WaitHandle" /> object that will be signalled when the build is complete. </summary>
      <returns>Returns null until <see cref="M:Microsoft.Build.Execution.BuildSubmission.Execute" /> or <see cref="M:Microsoft.Build.Execution.BuildSubmission.ExecuteAsync(Microsoft.Build.Execution.BuildSubmissionCompleteCallback,System.Object)" /> returns, then returns the WaitHandle object.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ITargetResult.Exception">
      <summary>Gets the exception generated when the target was built.</summary>
      <returns>Returns the exception generated when the target was built. Return null if no exception occurred.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ITargetResult.Items">
      <summary>Gets the set of build items output by the target. </summary>
      <returns>Returns the set of build items output by the target. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ITargetResult.ResultCode">
      <summary>Gets the result code returned when the target was built.</summary>
      <returns>Returns the result code returned when the target was built.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectInstance.DefaultTargets">
      <summary>Gets or sets the list of default targets for this project. </summary>
      <returns>Returns the list of default targets for this project. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectInstance.Directory">
      <summary>Gets the project root directory. Used for evaluation of relative paths and setting the current directory during build. Is never null: projects not loaded from disk use the current directory from the time the build started.</summary>
      <returns>Returns the project root directory, which is never null. Projects not loaded from disk return the current directory at the time the build was started.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectInstance.FullPath">
      <summary>Gets the full path to the project file. Used for logging. </summary>
      <returns>Returns the full path to the project file. Returns null if the project was never named.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectInstance.GlobalProperties">
      <summary>Gets the dictionary of global properties this project was evaluated with, if any.</summary>
      <returns>Returns the dictionary of global properties this project was evaluated with.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectInstance.InitialTargets">
      <summary>Gets the list of initial targets for the project and all its imports, depth-first. These targets are built before any other targets.</summary>
      <returns>Returns the list of initial targets for the project and all its imports, depth-first. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectInstance.IsImmutable">
      <summary>Gets a flag indicating that the project instance is immutable. This flag is set permanently when the instance is created.</summary>
      <returns>Returns the flag.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectInstance.ItemDefinitions">
      <summary>Gets a read-only dictionary of the item definitions in the project, keyed by item type.</summary>
      <returns>Returns a read-only dictionary of the item definitions in the project, keyed by item type.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectInstance.Items">
      <summary>Gets all items in this project.</summary>
      <returns>Returns all items in this project.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectInstance.ItemTypes">
      <summary>Gets all item types in this project.</summary>
      <returns>Returns all item types in this project.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectInstance.ProjectFileLocation">
      <summary>Gets the location of the originating file itself. Never null.</summary>
      <returns>Returns the location of the originating file. Never returns null.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectInstance.Properties">
      <summary>Gets all properties in this project.</summary>
      <returns>Returns all properties in this project.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectInstance.Targets">
      <summary>Gets an enumerator over all targets in this project. This collection is read-only.</summary>
      <returns>Returns an enumerator over all targets in this project.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectInstance.ToolsVersion">
      <summary>Gets the tools version this project was evaluated with, if any.</summary>
      <returns>Returns the tools version this project was evaluated with, if any.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemDefinitionInstance.ItemType">
      <summary>Gets the item type of this item definition.</summary>
      <returns>Returns the item type of this item definition.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemDefinitionInstance.Metadata">
      <summary>Gets all the metadata for this item definition. This is a read-only collection.</summary>
      <returns>Returns all the metadata for this item definition. If there is no metadata, returns empty collection.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemDefinitionInstance.MetadataCount">
      <summary>Gets the number of pieces of metadata on this item definition.</summary>
      <returns>Returns the number of pieces of metadata on this item definition.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemDefinitionInstance.MetadataNames">
      <summary>Gets an enumerator over the metadata names for this item definition. This is a read-only collection.</summary>
      <returns>Returns an enumerator over the metadata names for this item definition.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskInstance.Condition">
      <summary>Gets or sets the Condition attribute of this project element.</summary>
      <returns>Returns the Condition attribute value. Returns an empty string if the attribute is not present. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskInstance.ConditionLocation">
      <summary>Location of the condition, if any</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskInstance.Items">
      <summary>Gets all child items of this item definition.</summary>
      <returns>Returns all child items of this item definition.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskInstance.Location">
      <summary>Location of the original element</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance.Condition">
      <summary>Gets the unevaluated Condition attribute value.</summary>
      <returns>Returns the unevaluated Condition attribute value.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance.ConditionLocation">
      <summary>Location of the condition attribute if any</summary>
      <returns>Returns the location of the condition attribute.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance.Exclude">
      <summary>Gets the unevaluated Exclude attribute value.</summary>
      <returns>Returns the unevaluated Exclude attribute value.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance.ExcludeLocation">
      <summary>Location of the exclude attribute, if any</summary>
      <returns>Returns the location of the exclude attribute.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance.Include">
      <summary>Gets the unevaluated Include attribute value.</summary>
      <returns>Returns the unevaluated Include attribute value.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance.IncludeLocation">
      <summary>Location of the include attribute, if any</summary>
      <returns>Returns the location of the include attribute.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance.ItemType">
      <summary>Get the item type, for example "Compile".</summary>
      <returns>Returns the item type, for example "Compile".</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance.KeepDuplicates">
      <summary>Gets the unevaluated KeepDuplicates value.</summary>
      <returns>Returns the KeepDuplicates value.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance.KeepDuplicatesLocation">
      <summary>Gets or sets the location of the KeepDuplicates attribute, if any.</summary>
      <returns>Returns the location of the KeepDuplicates attribute.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance.KeepMetadata">
      <summary>Gets the unevaluated KeepMetadata attribute value</summary>
      <returns>Returns the KeepMetadata value.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance.KeepMetadataLocation">
      <summary>Gets the location of the KeepMetadata attribute, if any.</summary>
      <returns>Returns the location of KeepMetadata.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance.Location">
      <summary>Location of the element</summary>
      <returns>Returns the element’s location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance.Metadata">
      <summary>Gets an ordered collection of unevaluated metadata on the item. </summary>
      <returns>Returns an ordered collection of unevaluated metadata on the item. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance.Remove">
      <summary>Gets the unevaluated Remove attribute value.</summary>
      <returns>Returns the unevaluated Remove attribute value.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance.RemoveLocation">
      <summary>Location of the remove attribute, if any</summary>
      <returns>Returns the location of the remove attribute.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance.RemoveMetadata">
      <summary>Gets the unevaluated RemoveMetadata value.</summary>
      <returns>Returns the RemoveMetadata value.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance.RemoveMetadataLocation">
      <summary>Gets the location of the RemoveMetadata attribute, if any.</summary>
      <returns>Returns the RemoveMetadata location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskMetadataInstance.Condition">
      <summary>Gets the unevaluated Condition attribute value.</summary>
      <returns>Returns the unevaluated Condition attribute value.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskMetadataInstance.ConditionLocation">
      <summary>Location of the condition attribute if any</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskMetadataInstance.Location">
      <summary>Location of the element</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskMetadataInstance.Name">
      <summary>Gets the name of this metadata.</summary>
      <returns>Returns the name of this metadata.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemGroupTaskMetadataInstance.Value">
      <summary>Gets the unevaluated value of this metadata.</summary>
      <returns>Returns the unevaluated value of this metadata.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemInstance.DirectMetadataCount">
      <summary>Gets the number of pieces of metadata on this item.</summary>
      <returns>Returns the number of pieces of metadata on this item.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemInstance.EvaluatedInclude">
      <summary>Gets the evaluated Include attribute value. </summary>
      <returns>Returns the evaluated Include attribute value, which may be empty string.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemInstance.ItemType">
      <summary>Gets the item type, for example "Compile".</summary>
      <returns>Returns the item type, for example "Compile".</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemInstance.Metadata">
      <summary>Gets an enumerator over the evaluated metadata of the item. This is a read-only collection. </summary>
      <returns>Returns an enumerator over the evaluated metadata of the item. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemInstance.MetadataCount">
      <summary>Gets the number of metadata entries, including metadata inherited from item definitions. </summary>
      <returns>Returns the number of metadata entries, including metadata inherited from item definitions</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemInstance.MetadataNames">
      <summary>Gets all metadata names of this item, including metadata inherited from item definitions. </summary>
      <returns>Returns all metadata names of this item, including metadata inherited from item definitions. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemInstance.Microsoft#Build#Framework#ITaskItem#ItemSpec">
      <summary>ITaskItem implementation. Gets or sets the item specification.</summary>
      <returns>The item specification.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemInstance.Microsoft#Build#Framework#ITaskItem#MetadataNames">
      <summary>ITaskItem implementation. Gets the names of the metadata entries associated with the item.</summary>
      <returns>The names of the metadata entries associated with the item.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemInstance.Microsoft#Build#Framework#ITaskItem2#EvaluatedIncludeEscaped">
      <summary>ITaskItem2 implementation. Evaluated include value, escaped as necessary. May be empty string. Gets or sets the item include value e.g. for disk-based items this would be the file path.</summary>
      <returns>Returns the item include value.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectItemInstance.Project">
      <summary>Gets the owning project.</summary>
      <returns>Returns the owning project.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectMetadataInstance.EvaluatedValue">
      <summary>Gets or sets the evaluated value of the metadata. </summary>
      <returns>Returns the evaluated value of the metadata, which is never null.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectMetadataInstance.Name">
      <summary>Gets the name of the metadata.</summary>
      <returns>Returns the name of the metadata.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectOnErrorInstance.Condition">
      <summary>Gets the unevaluated Condition attribute value of this OnError element.</summary>
      <returns>Returns the unevaluated Condition attribute value. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectOnErrorInstance.ConditionLocation">
      <summary>Location of the condition, if any</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectOnErrorInstance.ExecuteTargets">
      <summary>Gets the unevaluated ExecuteTargets attribute value of this OnError element. </summary>
      <returns>Returns the unevaluated ExecuteTargets attribute value, which may be an empty string.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectOnErrorInstance.ExecuteTargetsLocation">
      <summary>Location of the execute targets attribute, if any</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectOnErrorInstance.Location">
      <summary>Location of the element</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectPropertyGroupTaskInstance.Condition">
      <summary>Gets or sets the Condition attribute of this property group.</summary>
      <returns>Returns the Condition attribute value. Returns an empty string if the attribute is not present. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectPropertyGroupTaskInstance.ConditionLocation">
      <summary>Gets the location of the Condition attribute.</summary>
      <returns>Returns location of the Condition attribute. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectPropertyGroupTaskInstance.Location">
      <summary>Gets the location of the element itself.</summary>
      <returns>Returns location of the element.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectPropertyGroupTaskInstance.Properties">
      <summary>Gets all child properties in this property group.</summary>
      <returns>Returns all child properties in this property group.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectPropertyGroupTaskPropertyInstance.Condition">
      <summary>Gets or sets the unevaluated Condition attribute of this property.</summary>
      <returns>Returns the Condition attribute value. Returns an empty string if the attribute is not present. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectPropertyGroupTaskPropertyInstance.ConditionLocation">
      <summary>Gets the location of the Condition attribute.</summary>
      <returns>Returns Condition attribute location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectPropertyGroupTaskPropertyInstance.Location">
      <summary>Gets the location of the element itself.</summary>
      <returns>Returns the element location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectPropertyGroupTaskPropertyInstance.Name">
      <summary>Gets the name of this property.</summary>
      <returns>Returns the name of this property.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectPropertyGroupTaskPropertyInstance.Value">
      <summary>Gets the unevaluated value of this property.</summary>
      <returns>Returns the unevaluated value of this property.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectPropertyInstance.EvaluatedValue">
      <summary>Gets or sets the evaluated value of this property. </summary>
      <returns>Returns the evaluated value of this property.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectPropertyInstance.IsImmutable">
      <summary>Returns true if this object is immutable; false otherwise. An immutable object cannot be made mutable.</summary>
      <returns>Returns <see cref="T:System.Boolean" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectPropertyInstance.Name">
      <summary>Gets the name of this property.</summary>
      <returns>Returns the name of this property.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.AfterTargetsLocation">
      <summary>Gets the location of the AfterTargets attribute.</summary>
      <returns>Returns the AfterTargets attribute location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.BeforeTargetsLocation">
      <summary>Gets the location of the BeforeTargets attribute.</summary>
      <returns>Returns the BeforeTargets attribute location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.Children">
      <summary>Gets a list of the children of this target. The build iterates through this to get each task to execute. </summary>
      <returns>Returns a list of the children of this target.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.Condition">
      <summary>Gets the unevaluated Condition attribute of this target element.</summary>
      <returns>Returns the Condition attribute value. Returns an empty string if the attribute is not present. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.ConditionLocation">
      <summary>Gets the location of the Condition attribute.</summary>
      <returns>Returns the Condition attribute location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.DependsOnTargets">
      <summary>Gets an unevaluated semicolon-delimited list of targets that this target depends on. </summary>
      <returns>Returns an unevaluated semicolon-delimited list of targets that this target depends on. Returns an empty string if this target depends on no other targets.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.DependsOnTargetsLocation">
      <summary>Gets the location of the DependsOnTargets attribute.</summary>
      <returns>Returns the DependsOnTargets attribute location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.FullPath">
      <summary>Gets the full path to the file from which this target originated. </summary>
      <returns>Returns the full path to the file from which this target originated. Returns an empty string if this target originated in a project that was not loaded and has never been given a path.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.Inputs">
      <summary>Gets the unevaluated inputs on this target element. </summary>
      <returns>Returns the unevaluated inputs on this target element. Returns an empty string if this target has no inputs.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.InputsLocation">
      <summary>Gets the location of the Inputs attribute.</summary>
      <returns>Returns the Inputs attribute location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.KeepDuplicateOutputs">
      <summary>Gets an unevaluated condition which is used to delete duplicate outputs from this target.</summary>
      <returns>Returns an unevaluated condition which is used to delete duplicate outputs from this target. Returns an empty string if there is no condition.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.KeepDuplicateOutputsLocation">
      <summary>Gets the location of the KeepDuplicateOutputs attribute.</summary>
      <returns>Returns the KeepDuplicateOutputs attribute location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.Location">
      <summary>Gets the location of the element itself.</summary>
      <returns>Returns the element location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.Name">
      <summary>Gets the name of the target.</summary>
      <returns>Returns the name of the target.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.OnErrorChildren">
      <summary>Gets a list of the children of this target that refer to OnError targets. </summary>
      <returns>Gets a list of the children of this target that refer to OnError targets. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.Outputs">
      <summary>Gets the unevaluated outputs on this target element May be empty string.</summary>
      <returns>Returns the unevaluated outputs on this target element Returns an empty string if there are no outputs.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.OutputsLocation">
      <summary>Gets the location of the Outputs attribute.</summary>
      <returns>Returns the Outputs attribute location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.Returns">
      <summary>Gets the unevaluated return values on the target element as a string.</summary>
      <returns>Returns the unevaluated return values on the target element as a string. Returns an empty string or null, if no return value is specified.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.ReturnsLocation">
      <summary>Gets the location of the Returns attribute.</summary>
      <returns>Returns the Returns attribute location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstance.Tasks">
      <summary>Gets all the tasks that are immediate children of this target.</summary>
      <returns>Returns all the tasks that are immediate children of this target.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstanceChild.Condition">
      <summary>Gets or sets the Condition attribute of this target.</summary>
      <returns>Returns the Condition attribute value. Returns an empty string if the attribute is not present. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstanceChild.ConditionLocation">
      <summary>Gets the location of the Condition attribute.</summary>
      <returns>Returns the Condition attribute location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstanceChild.FullPath">
      <summary>Gets the full path to the file from which this task originated. </summary>
      <returns>Returns the full path to the file from which this task originated. Returns an empty string if the task originated in a project that was not loaded and has never been given a path.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTargetInstanceChild.Location">
      <summary>Gets the location of the element itself.</summary>
      <returns>Returns the element location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskInstance.Condition">
      <summary>Gets the unevaluated Condition attribute of this task.</summary>
      <returns>Returns the Condition attribute value. Returns an empty string if the attribute is not present. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskInstance.ConditionLocation">
      <summary>Location of the condition, if any</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskInstance.ContinueOnError">
      <summary>Gets the unevaluated ContinueOnError attribute of the task. </summary>
      <returns>Returns the unevaluated ContinueOnError attribute of the task. Returns an empty string if the attribute is not present.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskInstance.ContinueOnErrorLocation">
      <summary>Location of the ContinueOnError attribute, if any</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskInstance.Location">
      <summary>Location of the original element</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskInstance.MSBuildArchitecture">
      <summary>Unevaluated MSBuildArchitecture on the task. May be empty string.</summary>
      <returns>Returns <see cref="T:System.String" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskInstance.MSBuildArchitectureLocation">
      <summary>Location of the MSBuildArchitecture attribute, if any</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskInstance.MSBuildRuntime">
      <summary>Unevaluated MSBuildRuntime on the task. May be empty string.</summary>
      <returns>Returns <see cref="T:System.String" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskInstance.MSBuildRuntimeLocation">
      <summary>Location of the MSBuildRuntime attribute, if any</summary>
      <returns>Returns <see cref="T:Microsoft.Build.Construction.ElementLocation" />.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskInstance.Name">
      <summary>Gets the name of the task, possibly qualified, as it appears in the project.</summary>
      <returns>Returns the name of the task, possibly qualified, as it appears in the project.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskInstance.Outputs">
      <summary>Gets an ordered set of the output property and item objects of this task. </summary>
      <returns>Returns an ordered set of the output property and item objects of the task. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskInstance.Parameters">
      <summary>Gets an unordered set of the task parameter names and unevaluated values of this task. </summary>
      <returns>Returns an unordered set of the task parameter names and unevaluated values of this task. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskInstanceChild.Condition">
      <summary>Gets the Condition attribute of this task.</summary>
      <returns>Returns the Condition attribute value. Returns an empty string if the attribute is not present. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskInstanceChild.ConditionLocation">
      <summary>The location of the original Condition attribute, if any.</summary>
      <returns>Returns location of the condition, or null.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskInstanceChild.Location">
      <summary>Gets the location of the original element.</summary>
      <returns>Returns the location of the original element.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskInstanceChild.TaskParameterLocation">
      <summary>Gets the location of the TaskParameter attribute.</summary>
      <returns>Returns the TaskParameter location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskOutputItemInstance.Condition">
      <summary>Gets the Condition attribute of this project element.</summary>
      <returns>Returns the Condition attribute value. Returns an empty string if the attribute is not present. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskOutputItemInstance.ConditionLocation">
      <summary>Gets the location of the Condition attribute.</summary>
      <returns>Returns the Condition attribute location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskOutputItemInstance.ItemType">
      <summary>Gets the item type that the outputs go into.</summary>
      <returns>Returns the item type that the outputs go into.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskOutputItemInstance.ItemTypeLocation">
      <summary>Gets the location of the ItemType attribute.</summary>
      <returns>Returns the ItemType attribute location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskOutputItemInstance.Location">
      <summary>Gets the location of the element itself.</summary>
      <returns>Returns the element location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskOutputItemInstance.TaskParameter">
      <summary>Gets the property of this class to retrieve the outputs from.</summary>
      <returns>Returns the property of this class to retrieve the outputs from.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskOutputItemInstance.TaskParameterLocation">
      <summary>Gets the location of the TaskParameter attribute.</summary>
      <returns>Returns the TaskParameter attribute location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskOutputPropertyInstance.Condition">
      <summary>Gets the Condition attribute of the output element.</summary>
      <returns>Returns the Condition attribute of the output element.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskOutputPropertyInstance.ConditionLocation">
      <summary>Gets the location of the Condition attribute.</summary>
      <returns>Returns the Condition attribute location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskOutputPropertyInstance.Location">
      <summary>Gets the location of the element itself.</summary>
      <returns>Returns the element location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskOutputPropertyInstance.PropertyName">
      <summary>Gets the name of the property that receives the output.</summary>
      <returns>Returns the name of the property that receives the output.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskOutputPropertyInstance.PropertyNameLocation">
      <summary>Gets the location of the PropertyName attribute.</summary>
      <returns>Returns the PropertyName attribute location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskOutputPropertyInstance.TaskParameter">
      <summary>Gets the property of the task class to retrieve the output from.</summary>
      <returns>Returns the property of the task class to retrieve the output from.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.ProjectTaskOutputPropertyInstance.TaskParameterLocation">
      <summary>Gets the location of the TaskParameter attribute.</summary>
      <returns>Returns the TaskParameter attribute location.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.TargetResult.Exception">
      <summary>Gets the exception which aborted this target, if any.</summary>
      <returns>Returns the exception which aborted this target, if any.</returns>
    </member>
    <member name="P:Microsoft.Build.Execution.TargetResult.Items">
      <summary>Gets the items produced by this target. </summary>
      <returns>Returns the items produced by this target. </returns>
    </member>
    <member name="P:Microsoft.Build.Execution.TargetResult.ResultCode">
      <summary>Gets the result code for building this target.</summary>
      <returns>Returns the result code for building this target.</returns>
    </member>
    <member name="P:Microsoft.Build.Logging.ConfigurableForwardingLogger.BuildEventRedirector">
      <summary>Gets or sets a property that determines how a node logger to forwards messages to the central logger.</summary>
      <returns>Returns a property that determines how a node logger to forwards messages to the central logger.</returns>
    </member>
    <member name="P:Microsoft.Build.Logging.ConfigurableForwardingLogger.NodeId">
      <summary>Gets or sets the ID of the node.</summary>
      <returns>Returns the ID of the node.</returns>
    </member>
    <member name="P:Microsoft.Build.Logging.ConfigurableForwardingLogger.Parameters">
      <summary>Gets or sets a switch that determines whether to suppress the output of the errors and warnings summary at the end of a build.</summary>
      <returns>Returns a switch that determines whether to suppress the output of the errors and warnings summary at the end of a build.</returns>
    </member>
    <member name="P:Microsoft.Build.Logging.ConfigurableForwardingLogger.Verbosity">
      <summary>Gets or sets the level of detail to show in the event log.</summary>
      <returns>Returns the level of detail to show in the event log.</returns>
    </member>
    <member name="P:Microsoft.Build.Logging.ConsoleLogger.Parameters">
      <summary>Gets or sets a semicolon-delimited list of parameter key-value pairs.</summary>
      <returns>Returns a semicolon-delimited list of parameter key-value pairs.</returns>
    </member>
    <member name="P:Microsoft.Build.Logging.ConsoleLogger.ShowSummary">
      <summary>Gets or sets a switch that determines whether to suppress the display of errors and the warnings summary.</summary>
      <returns>Returns a switch that determines whether to suppress the display of errors and the warnings summary.</returns>
    </member>
    <member name="P:Microsoft.Build.Logging.ConsoleLogger.SkipProjectStartedText">
      <summary>Gets or sets a switch that determines whether to suppress the display of project headers. </summary>
      <returns>Returns a switch that determines whether to suppress the display of project headers. </returns>
    </member>
    <member name="P:Microsoft.Build.Logging.ConsoleLogger.Verbosity">
      <summary>Gets or sets the level of detail to show in the event log.</summary>
      <returns>Returns the level of detail to show in the event log.</returns>
    </member>
    <member name="P:Microsoft.Build.Logging.ConsoleLogger.WriteHandler">
      <summary>Provides access to the write handler delegate so that it can be redirected if necessary (e.g. to a file).</summary>
      <returns>Returns the write handler delegate.</returns>
    </member>
    <member name="P:Microsoft.Build.Logging.DistributedFileLogger.BuildEventRedirector">
      <summary>Gets or sets a property that determines how a node logger to forwards messages to the central logger.</summary>
      <returns>Returns a property that determines how a node logger to forwards messages to the central logger.</returns>
    </member>
    <member name="P:Microsoft.Build.Logging.DistributedFileLogger.NodeId">
      <summary>Gets or sets the ID of the node.</summary>
      <returns>Returns the ID of the node.</returns>
    </member>
    <member name="P:Microsoft.Build.Logging.DistributedFileLogger.Parameters">
      <summary>Gets or sets a switch that determines whether to suppress the output of the errors and warnings summary at the end of a build.</summary>
      <returns>Returns a switch that determines whether to suppress the output of the errors and warnings summary at the end of a build.</returns>
    </member>
    <member name="P:Microsoft.Build.Logging.DistributedFileLogger.Verbosity">
      <summary>Gets or sets the level of detail to show in the event log.</summary>
      <returns>Returns the level of detail to show in the event log.</returns>
    </member>
    <member name="P:Microsoft.Build.Logging.ForwardingLoggerRecord.CentralLogger">
      <summary>Gets the central logger.</summary>
      <returns>Returns the central logger.</returns>
    </member>
    <member name="P:Microsoft.Build.Logging.ForwardingLoggerRecord.ForwardingLoggerDescription">
      <summary>Gets the forwarding logger description.</summary>
      <returns>Returns the forwarding logger description.</returns>
    </member>
    <member name="P:Microsoft.Build.Logging.LoggerDescription.LoggerSwitchParameters">
      <summary>Gets the string of logger parameters.</summary>
      <returns>Returns the string of logger parameters.  Returns null if there are no parameters.</returns>
    </member>
    <member name="P:Microsoft.Build.Logging.LoggerDescription.Verbosity">
      <summary>Returns the verbosity level for this logger. </summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ElementLocation">
      <summary>The location of an XML node in a file. Any editing of the project XML through the MSBuild API's will invalidate locations in that XML until the XML is reloaded.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectChooseElement">
      <summary>Represents the Choose Element (MSBuild) in an MSBuild project. </summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectElement">
      <summary>Abstract base class for MSBuild construction object model elements.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectElementContainer">
      <summary>Provides an abstract container class for project elements. </summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectExtensionsElement">
      <summary>Represents the ProjectExtensions Element (MSBuild) in an MSBuild project. Project extensions can contain arbitrary XML content. </summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectImportElement">
      <summary>Represents an Import Element (MSBuild) in an MSBuild project.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectImportGroupElement">
      <summary>Represents the ImportGroup element in an MSBuild project.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectItemDefinitionElement">
      <summary>Represents an ItemDefinition element in an MSBuild project.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectItemDefinitionGroupElement">
      <summary>Represents an ItemDefinitionGroup Element (MSBuild) in an MSBuild project.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectItemElement">
      <summary>Represents an Item Element (MSBuild) in an MSBuild project.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectItemGroupElement">
      <summary>Represents an ItemGroup Element (MSBuild) in an MSBuild project.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectMetadataElement">
      <summary>Represents a Metadata element in an MSBuild project.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectOnErrorElement">
      <summary>Represents an OnError Element (MSBuild) in an MSBuild project.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectOtherwiseElement">
      <summary>Represents an Otherwise Element (MSBuild) in an MSBuild project.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectOutputElement">
      <summary>Represents an Output Element (MSBuild) in an MSBuild project.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectPropertyElement">
      <summary>Represents a Property element in an MSBuild project.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectPropertyGroupElement">
      <summary>Represents a PropertyGroup element in an MSBuild project.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectRootElement">
      <summary>Represents an MSBuild project, a targets file, or any other file that conforms to MSBuild project file schema. This class and its related classes allow a complete MSBuild project or targets file to be read and written. </summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectTargetElement">
      <summary>Represents a Target Element (MSBuild) in an MSBuild project.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectTaskElement">
      <summary>Represents a Task Element (MSBuild) in an MSBuild project.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectUsingTaskBodyElement">
      <summary>Represents the body of an inline task.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectUsingTaskElement">
      <summary>Represents a UsingTask Element (MSBuild) in an MSBuild project. The UsingTask element is used both for inline tasks and precompiled tasks.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectUsingTaskParameterElement">
      <summary>Represents a parameter of an inline task.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.ProjectWhenElement">
      <summary>Represents a When Element (MSBuild) in an MSBuild project.</summary>
    </member>
    <member name="T:Microsoft.Build.Construction.UsingTaskParameterGroupElement">
      <summary>Represents the ParameterGroup of an inline task.</summary>
    </member>
    <member name="T:Microsoft.Build.Debugging.DebuggerManager">
      <summary>Manager for supporting debugging a state machine.</summary>
    </member>
    <member name="T:Microsoft.Build.Debugging.DebuggerManager.IslandThread">
      <summary>Executes the islands on a dedicated worker thread. The worker thread's physical callstack then maps to the interpreter's virtual callstack.</summary>
    </member>
    <member name="T:Microsoft.Build.Evaluation.Project">
      <summary>Represents a project with design time semantics. This class can load project files, edit items and properties and build projects.</summary>
    </member>
    <member name="T:Microsoft.Build.Evaluation.ProjectChangedEventArgs">
      <summary>Event arguments for the <see cref="E:Microsoft.Build.Evaluation.ProjectCollection.ProjectCollectionChanged" /> event.</summary>
    </member>
    <member name="T:Microsoft.Build.Evaluation.ProjectCollection">
      <summary>Encapsulates a set of related projects, their toolsets, a default set of global properties, and the loggers that should be used to build them. A global version of this class acts as the default project collection. </summary>
    </member>
    <member name="T:Microsoft.Build.Evaluation.ProjectCollection.ProjectAddedEventHandler">
      <summary>Handler to receive which project got added to the project collection.</summary>
      <param name="sender">The source of the event.</param>
      <param name="e">The event data.</param>
    </member>
    <member name="T:Microsoft.Build.Evaluation.ProjectCollection.ProjectAddedToProjectCollectionEventArgs">
      <summary> Provides information about what project just got added to the <see cref="T:Microsoft.Build.Evaluation.ProjectCollection" /> project collection.</summary>
    </member>
    <member name="T:Microsoft.Build.Evaluation.ProjectCollectionChangedEventArgs">
      <summary>Event arguments for the <see cref="E:Microsoft.Build.Evaluation.ProjectCollection.ProjectCollectionChanged" /> event.</summary>
    </member>
    <member name="T:Microsoft.Build.Evaluation.ProjectCollectionChangedState">
      <summary>Properties or other mutable state associated with a <see cref="T:Microsoft.Build.Evaluation.ProjectCollection" /> project collection.</summary>
    </member>
    <member name="F:Microsoft.Build.Evaluation.ProjectCollectionChangedState.DefaultToolsVersion">
      <summary>The <see cref="P:Microsoft.Build.Evaluation.ProjectCollection.DefaultToolsVersion" /> property changed.</summary>
    </member>
    <member name="F:Microsoft.Build.Evaluation.ProjectCollectionChangedState.Toolsets">
      <summary>The toolsets changed.</summary>
    </member>
    <member name="F:Microsoft.Build.Evaluation.ProjectCollectionChangedState.Loggers">
      <summary>The loggers changed.</summary>
    </member>
    <member name="F:Microsoft.Build.Evaluation.ProjectCollectionChangedState.GlobalProperties">
      <summary>The global properties changed.</summary>
    </member>
    <member name="F:Microsoft.Build.Evaluation.ProjectCollectionChangedState.IsBuildEnabled">
      <summary>The <see cref="P:Microsoft.Build.Evaluation.ProjectCollection.IsBuildEnabled" /> property changed.</summary>
    </member>
    <member name="F:Microsoft.Build.Evaluation.ProjectCollectionChangedState.OnlyLogCriticalEvents">
      <summary>The <see cref="P:Microsoft.Build.Evaluation.ProjectCollection.OnlyLogCriticalEvents" /> property changed.</summary>
    </member>
    <member name="F:Microsoft.Build.Evaluation.ProjectCollectionChangedState.HostServices">
      <summary>The <see cref="P:Microsoft.Build.Evaluation.ProjectCollection.HostServices" /> property changed.</summary>
    </member>
    <member name="F:Microsoft.Build.Evaluation.ProjectCollectionChangedState.DisableMarkDirty">
      <summary>The <see cref="P:Microsoft.Build.Evaluation.ProjectCollection.DisableMarkDirty" /> property changed.</summary>
    </member>
    <member name="F:Microsoft.Build.Evaluation.ProjectCollectionChangedState.SkipEvaluation">
      <summary>The <see cref="P:Microsoft.Build.Evaluation.ProjectCollection.SkipEvaluation" /> property changed.</summary>
    </member>
    <member name="T:Microsoft.Build.Evaluation.ProjectItem">
      <summary>Represents an evaluated design-time project item.</summary>
    </member>
    <member name="T:Microsoft.Build.Evaluation.ProjectItemDefinition">
      <summary>Represents an evaluated item definition for a particular item-type.</summary>
    </member>
    <member name="T:Microsoft.Build.Evaluation.ProjectLoadSettings">
      <summary>Flags for controlling the project load.</summary>
    </member>
    <member name="F:Microsoft.Build.Evaluation.ProjectLoadSettings.Default">
      <summary>Normal load. This is the default.</summary>
    </member>
    <member name="F:Microsoft.Build.Evaluation.ProjectLoadSettings.IgnoreMissingImports">
      <summary>Ignore nonexistent targets files when evaluating the project.</summary>
    </member>
    <member name="F:Microsoft.Build.Evaluation.ProjectLoadSettings.RecordDuplicateButNotCircularImports">
      <summary>Indicates that imports including duplicate, but not circular, imports on the ImportsIncludingDuplicates property should be recorded</summary>
    </member>
    <member name="F:Microsoft.Build.Evaluation.ProjectLoadSettings.RejectCircularImports">
      <summary>Indicates that an exception will be thrown if any circular imports are detected</summary>
    </member>
    <member name="T:Microsoft.Build.Evaluation.ProjectMetadata">
      <summary>Represents evaluated design-time metadata. </summary>
    </member>
    <member name="T:Microsoft.Build.Evaluation.ProjectProperty">
      <summary>Represents an evaluated design-time property.</summary>
    </member>
    <member name="T:Microsoft.Build.Evaluation.ProjectXmlChangedEventArgs">
      <summary>Event arguments for the <see cref="E:Microsoft.Build.Evaluation.ProjectCollection.ProjectCollectionChanged" /> event.</summary>
    </member>
    <member name="T:Microsoft.Build.Evaluation.ResolvedImport">
      <summary>Encapsulates an import relationship in an evaluated project between a ProjectImportElement and the ProjectRootElement of the imported project.</summary>
    </member>
    <member name="T:Microsoft.Build.Evaluation.SubToolset">
      <summary>Represents an aggregation of a set of properties that correspond to a particular sub toolset.</summary>
    </member>
    <member name="T:Microsoft.Build.Evaluation.Toolset">
      <summary>Represent an aggregation of a tools version (eg. "2.0"), tools path, and optional set of associated properties. </summary>
    </member>
    <member name="T:Microsoft.Build.Evaluation.ToolsetDefinitionLocations">
      <summary>Flags for controlling the toolset initialization. </summary>
    </member>
    <member name="F:Microsoft.Build.Evaluation.ToolsetDefinitionLocations.None">
      <summary>Do not read toolset information from any external location.</summary>
    </member>
    <member name="F:Microsoft.Build.Evaluation.ToolsetDefinitionLocations.ConfigurationFile">
      <summary>Read toolset information from the exe configuration file.</summary>
    </member>
    <member name="F:Microsoft.Build.Evaluation.ToolsetDefinitionLocations.Registry">
      <summary>Read toolset information from the registry (HKLM\Software\Microsoft\MSBuild\ToolsVersions).</summary>
    </member>
    <member name="T:Microsoft.Build.Exceptions.BuildAbortedException">
      <summary>An exception representing the case where the build was aborted by request, as opposed to being unceremoniously shut down due to another kind of error exception. </summary>
    </member>
    <member name="T:Microsoft.Build.Exceptions.InternalLoggerException">
      <summary>This exception is used to wrap an unhandled exception from a logger. This exception aborts the build, and it can only be thrown by the MSBuild engine.</summary>
    </member>
    <member name="T:Microsoft.Build.Exceptions.InvalidProjectFileException">
      <summary>This exception is thrown whenever there is a problem with the user's XML project file. The problem might be semantic or syntactical. The latter would be of a type typically caught by XSD validation (if it was performed by the project writer). </summary>
    </member>
    <member name="T:Microsoft.Build.Exceptions.InvalidToolsetDefinitionException">
      <summary>Exception subclass that ToolsetReaders should throw.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.BuildManager">
      <summary>This class is the public entry point for executing builds.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.BuildParameters">
      <summary>This class represents all of the settings which must be specified to start a build.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.BuildRequestData">
      <summary>Encapsulates all of the data needed to submit a build request.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.BuildRequestDataFlags">
      <summary>Flags providing additional control over the build request. </summary>
    </member>
    <member name="F:Microsoft.Build.Execution.BuildRequestDataFlags.None">
      <summary>No flags.</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.BuildRequestDataFlags.ReplaceExistingProjectInstance">
      <summary>When this flag is present, the existing ProjectInstance in the build will be replaced by this one.</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.BuildRequestDataFlags.ProvideProjectStateAfterBuild">
      <summary>When this flag is present, <see cref="T:Microsoft.Build.Execution.BuildResult" /> issued in response to this request will include <see cref="P:Microsoft.Build.Execution.BuildResult.ProjectStateAfterBuild" />.</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.BuildRequestDataFlags.IgnoreExistingProjectState">
      <summary>When this flag is present and the project has previously been built on a node whose affinity is incompatible with the affinity this request requires, this build request ignores the project state (but not the target results) that was previously generated. </summary>
    </member>
    <member name="T:Microsoft.Build.Execution.BuildResult">
      <summary>Represents the current result set for all of the targets that have produced results for a particular configuration.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.BuildResultCode">
      <summary>Enumerated data indicating the build result of a target or a  build request.</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.BuildResultCode.Success">
      <summary>The target or request was a complete success.</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.BuildResultCode.Failure">
      <summary>The target or request failed in some way.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.BuildSubmission">
      <summary>Represents a build request that has been submitted to the build manager for processing. The methods of this class may be used to execute synchronous or asynchronous build requests and to provide access to the results upon completion.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.BuildSubmissionCompleteCallback">
      <summary>A callback function that receives notification when a build completes.</summary>
      <param name="submission">The submission that initiates the build.</param>
    </member>
    <member name="T:Microsoft.Build.Execution.HostServices">
      <summary>Implementation of a host service that mediates access from the build to the host.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ITargetResult">
      <summary>An interface representing the results for a specific target</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.NodeAffinity">
      <summary>An enumerated data type that determines where projects are built.</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.NodeAffinity.InProc">
      <summary>The project may only be scheduled on the in-proc node. This happens automatically if there is a host object or if a ProjectInstance was specified. A host may wish to specify it if they know a task depends explicitly on shared static data or other host-provided objects.</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.NodeAffinity.OutOfProc">
      <summary>The project may only be scheduled on an out-of-proc node. A host may wish to specify this if it is known the project being built could contaminate the host environment (or the host contaminates the environment while a build is proceeding.)</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.NodeAffinity.Any">
      <summary>The project may be scheduled anywhere.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.NodeEngineShutdownReason">
      <summary>Reasons for a node to shutdown.</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.NodeEngineShutdownReason.BuildComplete">
      <summary>The BuildManager sent a command instructing the node to terminate.</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.NodeEngineShutdownReason.BuildCompleteReuse">
      <summary>The BuildManager sent a command instructing the node to terminate, but to restart for reuse.</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.NodeEngineShutdownReason.ConnectionFailed">
      <summary>The communication link failed.</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.NodeEngineShutdownReason.Error">
      <summary>The NodeEngine caught an exception which requires the Node to shut down.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.OutOfProcNode">
      <summary>This class represents an implementation of an out-of-proc build node.  This class is deprecated and has no alternative.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectInstance">
      <summary>Represents a project instance. </summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectInstanceSettings">
      <summary>Contains settings for controlling project instance creation.</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.ProjectInstanceSettings.None">
      <summary>Create project instance with no options.</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.ProjectInstanceSettings.Immutable">
      <summary>Create immutable instance of project.</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.ProjectInstanceSettings.ImmutableWithFastItemLookup">
      <summary>Create immutable instance of project with look up table that improves performance.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectItemDefinitionInstance">
      <summary>Represents an evaluated item definition for a particular item type, divested of all references to project source code.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectItemGroupTaskInstance">
      <summary>Wraps an unevaluated itemgroup under a target. Immutable.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectItemGroupTaskItemInstance">
      <summary>Wraps an unevaluated item under an itemgroup in a target. Immutable.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectItemGroupTaskMetadataInstance">
      <summary>Wraps an unevaluated metadata under an item in an item group in a target. Immutable.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectItemInstance">
      <summary>Wraps an evaluated item for build purposes.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectMetadataInstance">
      <summary>Wraps an evaluated metadata for build purposes.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectOnErrorInstance">
      <summary>Wraps an OnError Element (MSBuild).</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectPropertyGroupTaskInstance">
      <summary>Wraps an unevaluated propertygroup under a target. Immutable.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectPropertyGroupTaskPropertyInstance">
      <summary>Wraps an unevaluated property of a property group in a target. Immutable.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectPropertyInstance">
      <summary>Wraps an evaluated property for build purposes. Instances of these properties are added and removed via methods on the ProjectInstance object.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectTargetInstance">
      <summary>Wraps a Target Element (MSBuild).</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectTargetInstanceChild">
      <summary>Abstracts the <see cref="T:Microsoft.Build.Execution.ProjectTaskInstance" />, <see cref="T:Microsoft.Build.Execution.ProjectPropertyGroupTaskInstance" /> and <see cref="T:Microsoft.Build.Execution.ProjectItemGroupTaskInstance" /> classes. This allows these types to be used in a single collection of target children</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectTaskInstance">
      <summary>Wraps a Task Element (MSBuild).</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectTaskInstanceChild">
      <summary>Abstracts the base class for the TaskOutputItem and TaskOutputProperty classes. This allows them to be used in a single collection.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectTaskOutputItemInstance">
      <summary>Wraps an output item element of a Task Element (MSBuild).</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.ProjectTaskOutputPropertyInstance">
      <summary>Represents an output property element of a Task Element (MSBuild).</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.TargetResult">
      <summary>Represents both the result code for building a single target and the overall build result.</summary>
    </member>
    <member name="T:Microsoft.Build.Execution.TargetResultCode">
      <summary>The result code for a given target.</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.TargetResultCode.Skipped">
      <summary>The target was skipped because its condition was not met.</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.TargetResultCode.Success">
      <summary>The target successfully built.</summary>
    </member>
    <member name="F:Microsoft.Build.Execution.TargetResultCode.Failure">
      <summary>The target failed to build.</summary>
    </member>
    <member name="T:Microsoft.Build.Logging.ColorResetter">
      <summary>Type of delegate used to reset console color.</summary>
    </member>
    <member name="T:Microsoft.Build.Logging.ColorSetter">
      <summary>Type of delegate used to set console color.</summary>
      <param name="color">Text color.</param>
    </member>
    <member name="T:Microsoft.Build.Logging.ConfigurableForwardingLogger">
      <summary>Represents a logger that forwards events to a central logger (e.g ConsoleLogger) residing on the parent node.</summary>
    </member>
    <member name="T:Microsoft.Build.Logging.ConsoleLogger">
      <summary>Represents the default logger that outputs event data to the console (stdout).</summary>
    </member>
    <member name="T:Microsoft.Build.Logging.DistributedFileLogger">
      <summary>This class creates a text file which will contain the build log for a node.</summary>
    </member>
    <member name="T:Microsoft.Build.Logging.FileLogger">
      <summary>A specialization of the ConsoleLogger that logs to a file instead of the console. </summary>
    </member>
    <member name="T:Microsoft.Build.Logging.ForwardingLoggerRecord">
      <summary>Represents a central/forwarding logger pair used in multiprocessor logging.</summary>
    </member>
    <member name="T:Microsoft.Build.Logging.LoggerDescription">
      <summary>Contains information about a logger as a collection of values that can be used to instantiate the logger and can be serialized to be passed between different processes.</summary>
    </member>
    <member name="T:Microsoft.Build.Logging.WriteHandler">
      <summary>Delegate used for writing a string to some location like the console window or the IDE build window.</summary>
      <param name="message">The message to write.</param>
    </member>
  </members>
</doc>