forked from dotnet/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjectStartedEventArgs.xml
392 lines (379 loc) · 24.7 KB
/
ProjectStartedEventArgs.xml
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
<Type Name="ProjectStartedEventArgs" FullName="Microsoft.Build.Framework.ProjectStartedEventArgs">
<TypeSignature Language="C#" Value="public class ProjectStartedEventArgs : Microsoft.Build.Framework.BuildStatusEventArgs" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi serializable beforefieldinit ProjectStartedEventArgs extends Microsoft.Build.Framework.BuildStatusEventArgs" />
<TypeSignature Language="DocId" Value="T:Microsoft.Build.Framework.ProjectStartedEventArgs" />
<AssemblyInfo>
<AssemblyName>Microsoft.Build.Framework</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>Microsoft.Build.Framework.BuildStatusEventArgs</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>Provides data for the <see cref="E:Microsoft.Build.Framework.IEventSource.ProjectStarted" /> event.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
WARNING: marking a type [Serializable] without implementing ISerializable imposes a serialization contract -- it is a promise to never change the type's fields i.e. the type is immutable; adding new fields in the next version of the type without following certain special FX guidelines, can break both forward and backward compatibility
## Examples
The following example shows how to write a basic logger that responds to build events.
[!code-csharp[msbuild_BasicLogger#1](~/samples/snippets/csharp/VS_Snippets_Misc/msbuild_BasicLogger/CS/msbuild_BasicLogger.cs#1)]
]]></format>
</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected ProjectStartedEventArgs ();" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Build.Framework.ProjectStartedEventArgs.#ctor" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Build.Framework</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.Build.Framework.ProjectStartedEventArgs" /> class.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public ProjectStartedEventArgs (string message, string helpKeyword, string projectFile, string targetNames, System.Collections.IEnumerable properties, System.Collections.IEnumerable items);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string message, string helpKeyword, string projectFile, string targetNames, class System.Collections.IEnumerable properties, class System.Collections.IEnumerable items) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Build.Framework.ProjectStartedEventArgs.#ctor(System.String,System.String,System.String,System.String,System.Collections.IEnumerable,System.Collections.IEnumerable)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Build.Framework</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="message" Type="System.String" />
<Parameter Name="helpKeyword" Type="System.String" />
<Parameter Name="projectFile" Type="System.String" />
<Parameter Name="targetNames" Type="System.String" />
<Parameter Name="properties" Type="System.Collections.IEnumerable" />
<Parameter Name="items" Type="System.Collections.IEnumerable" />
</Parameters>
<Docs>
<param name="message">The text of the event.</param>
<param name="helpKeyword">The Help keyword associated with the event.</param>
<param name="projectFile">The project file name.</param>
<param name="targetNames">The targets to be built.</param>
<param name="properties">A list of properties</param>
<param name="items">A list of items.</param>
<summary>Initializes a new instance of the <see cref="T:Microsoft.Build.Framework.ProjectStartedEventArgs" /> class with the specified values.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public ProjectStartedEventArgs (string message, string helpKeyword, string projectFile, string targetNames, System.Collections.IEnumerable properties, System.Collections.IEnumerable items, DateTime eventTimestamp);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string message, string helpKeyword, string projectFile, string targetNames, class System.Collections.IEnumerable properties, class System.Collections.IEnumerable items, valuetype System.DateTime eventTimestamp) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Build.Framework.ProjectStartedEventArgs.#ctor(System.String,System.String,System.String,System.String,System.Collections.IEnumerable,System.Collections.IEnumerable,System.DateTime)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Build.Framework</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="message" Type="System.String" />
<Parameter Name="helpKeyword" Type="System.String" />
<Parameter Name="projectFile" Type="System.String" />
<Parameter Name="targetNames" Type="System.String" />
<Parameter Name="properties" Type="System.Collections.IEnumerable" />
<Parameter Name="items" Type="System.Collections.IEnumerable" />
<Parameter Name="eventTimestamp" Type="System.DateTime" />
</Parameters>
<Docs>
<param name="message">text message</param>
<param name="helpKeyword">help keyword</param>
<param name="projectFile">project name</param>
<param name="targetNames">targets we are going to build (empty indicates default targets)</param>
<param name="properties">list of properties</param>
<param name="items">list of items</param>
<param name="eventTimestamp">time the event occurred</param>
<summary>This constructor allows event data to be initialized. Also the timestamp can be set Sender is assumed to be "MSBuild".</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public ProjectStartedEventArgs (int projectId, string message, string helpKeyword, string projectFile, string targetNames, System.Collections.IEnumerable properties, System.Collections.IEnumerable items, Microsoft.Build.Framework.BuildEventContext parentBuildEventContext);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(int32 projectId, string message, string helpKeyword, string projectFile, string targetNames, class System.Collections.IEnumerable properties, class System.Collections.IEnumerable items, class Microsoft.Build.Framework.BuildEventContext parentBuildEventContext) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Build.Framework.ProjectStartedEventArgs.#ctor(System.Int32,System.String,System.String,System.String,System.String,System.Collections.IEnumerable,System.Collections.IEnumerable,Microsoft.Build.Framework.BuildEventContext)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Build.Framework</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="projectId" Type="System.Int32" />
<Parameter Name="message" Type="System.String" />
<Parameter Name="helpKeyword" Type="System.String" />
<Parameter Name="projectFile" Type="System.String" />
<Parameter Name="targetNames" Type="System.String" />
<Parameter Name="properties" Type="System.Collections.IEnumerable" />
<Parameter Name="items" Type="System.Collections.IEnumerable" />
<Parameter Name="parentBuildEventContext" Type="Microsoft.Build.Framework.BuildEventContext" />
</Parameters>
<Docs>
<param name="projectId">The unique <see cref="P:Microsoft.Build.Framework.ProjectStartedEventArgs.ProjectId" /> identifier for the project.</param>
<param name="message">The text of the event.</param>
<param name="helpKeyword">The Help keyword associated with the event.</param>
<param name="projectFile">The project file name.</param>
<param name="targetNames">The targets to be built.</param>
<param name="properties">A list of properties.</param>
<param name="items">A list of items.</param>
<param name="parentBuildEventContext">A <see cref="T:Microsoft.Build.Framework.BuildEventContext" /> value that defines location contextual information. This is attached to logging events to define where they are located in relation to the process, engine, project, target, or task that is executing.</param>
<summary>Initializes a new instance of the <see cref="T:Microsoft.Build.Framework.ProjectStartedEventArgs" /> class with the specified values.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public ProjectStartedEventArgs (int projectId, string message, string helpKeyword, string projectFile, string targetNames, System.Collections.IEnumerable properties, System.Collections.IEnumerable items, Microsoft.Build.Framework.BuildEventContext parentBuildEventContext, DateTime eventTimestamp);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(int32 projectId, string message, string helpKeyword, string projectFile, string targetNames, class System.Collections.IEnumerable properties, class System.Collections.IEnumerable items, class Microsoft.Build.Framework.BuildEventContext parentBuildEventContext, valuetype System.DateTime eventTimestamp) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Build.Framework.ProjectStartedEventArgs.#ctor(System.Int32,System.String,System.String,System.String,System.String,System.Collections.IEnumerable,System.Collections.IEnumerable,Microsoft.Build.Framework.BuildEventContext,System.DateTime)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Build.Framework</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="projectId" Type="System.Int32" />
<Parameter Name="message" Type="System.String" />
<Parameter Name="helpKeyword" Type="System.String" />
<Parameter Name="projectFile" Type="System.String" />
<Parameter Name="targetNames" Type="System.String" />
<Parameter Name="properties" Type="System.Collections.IEnumerable" />
<Parameter Name="items" Type="System.Collections.IEnumerable" />
<Parameter Name="parentBuildEventContext" Type="Microsoft.Build.Framework.BuildEventContext" />
<Parameter Name="eventTimestamp" Type="System.DateTime" />
</Parameters>
<Docs>
<param name="projectId">project id</param>
<param name="message">text message</param>
<param name="helpKeyword">help keyword</param>
<param name="projectFile">project name</param>
<param name="targetNames">targets we are going to build (empty indicates default targets)</param>
<param name="properties">list of properties</param>
<param name="items">list of items</param>
<param name="parentBuildEventContext">event context info for the parent project</param>
<param name="eventTimestamp">time the event occurred</param>
<summary>This constructor allows event data to be initialized. Sender is assumed to be "MSBuild".</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public ProjectStartedEventArgs (int projectId, string message, string helpKeyword, string projectFile, string targetNames, System.Collections.IEnumerable properties, System.Collections.IEnumerable items, Microsoft.Build.Framework.BuildEventContext parentBuildEventContext, System.Collections.Generic.IDictionary<string,string> globalProperties, string toolsVersion);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(int32 projectId, string message, string helpKeyword, string projectFile, string targetNames, class System.Collections.IEnumerable properties, class System.Collections.IEnumerable items, class Microsoft.Build.Framework.BuildEventContext parentBuildEventContext, class System.Collections.Generic.IDictionary`2<string, string> globalProperties, string toolsVersion) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Build.Framework.ProjectStartedEventArgs.#ctor(System.Int32,System.String,System.String,System.String,System.String,System.Collections.IEnumerable,System.Collections.IEnumerable,Microsoft.Build.Framework.BuildEventContext,System.Collections.Generic.IDictionary{System.String,System.String},System.String)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Build.Framework</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="projectId" Type="System.Int32" />
<Parameter Name="message" Type="System.String" />
<Parameter Name="helpKeyword" Type="System.String" />
<Parameter Name="projectFile" Type="System.String" />
<Parameter Name="targetNames" Type="System.String" />
<Parameter Name="properties" Type="System.Collections.IEnumerable" />
<Parameter Name="items" Type="System.Collections.IEnumerable" />
<Parameter Name="parentBuildEventContext" Type="Microsoft.Build.Framework.BuildEventContext" />
<Parameter Name="globalProperties" Type="System.Collections.Generic.IDictionary<System.String,System.String>" />
<Parameter Name="toolsVersion" Type="System.String" />
</Parameters>
<Docs>
<param name="projectId">project id</param>
<param name="message">text message</param>
<param name="helpKeyword">help keyword</param>
<param name="projectFile">project name</param>
<param name="targetNames">targets we are going to build (empty indicates default targets)</param>
<param name="properties">list of properties</param>
<param name="items">list of items</param>
<param name="parentBuildEventContext">event context info for the parent project</param>
<param name="globalProperties">A list of global properties</param>
<param name="toolsVersion">The tools version</param>
<summary>This constructor allows event data to be initialized.
Sender is assumed to be "MSBuild".</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GlobalProperties">
<MemberSignature Language="C#" Value="public System.Collections.Generic.IDictionary<string,string> GlobalProperties { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.Generic.IDictionary`2<string, string> GlobalProperties" />
<MemberSignature Language="DocId" Value="P:Microsoft.Build.Framework.ProjectStartedEventArgs.GlobalProperties" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Build.Framework</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.Generic.IDictionary<System.String,System.String></ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the set of global properties used to evaluate this project.</summary>
<value>Returns <see cref="T:System.Collections.Generic.IDictionary`2" />.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="InvalidProjectId">
<MemberSignature Language="C#" Value="public const int InvalidProjectId = -1;" />
<MemberSignature Language="ILAsm" Value=".field public static literal int32 InvalidProjectId = (-1)" />
<MemberSignature Language="DocId" Value="F:Microsoft.Build.Framework.ProjectStartedEventArgs.InvalidProjectId" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Build.Framework</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<MemberValue>-1</MemberValue>
<Docs>
<summary>A value representing an invalid project ID.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Items">
<MemberSignature Language="C#" Value="public System.Collections.IEnumerable Items { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.IEnumerable Items" />
<MemberSignature Language="DocId" Value="P:Microsoft.Build.Framework.ProjectStartedEventArgs.Items" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Build.Framework</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.IEnumerable</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the list of items for the event.</summary>
<value>The list of items for the event.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The items and metadata accessed through <xref:Microsoft.Build.Framework.ProjectStartedEventArgs.Items%2A> are kept up-to-date and can be enumerated throughout the build of the project. However, changing an item in this list will not affect the build process.
> [!NOTE]
> This property does not work with multi-proc builds. To get proper results, you can turn off multi-proc building by specifying `/m:1` (which is the default).
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="ParentProjectBuildEventContext">
<MemberSignature Language="C#" Value="public Microsoft.Build.Framework.BuildEventContext ParentProjectBuildEventContext { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Build.Framework.BuildEventContext ParentProjectBuildEventContext" />
<MemberSignature Language="DocId" Value="P:Microsoft.Build.Framework.ProjectStartedEventArgs.ParentProjectBuildEventContext" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Build.Framework</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Build.Framework.BuildEventContext</ReturnType>
</ReturnValue>
<Docs>
<summary>Provides contextual location information, including the project if any that invoked the build of this project.</summary>
<value>A <see cref="T:Microsoft.Build.Framework.BuildEventContext" /> object representing the list of items for the event.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ProjectFile">
<MemberSignature Language="C#" Value="public string ProjectFile { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance string ProjectFile" />
<MemberSignature Language="DocId" Value="P:Microsoft.Build.Framework.ProjectStartedEventArgs.ProjectFile" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Build.Framework</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the project file associated with the event.</summary>
<value>The project file associated with the event.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ProjectId">
<MemberSignature Language="C#" Value="public int ProjectId { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 ProjectId" />
<MemberSignature Language="DocId" Value="P:Microsoft.Build.Framework.ProjectStartedEventArgs.ProjectId" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Build.Framework</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the project file associated with the event.</summary>
<value>An integer representing the ID of the project file associated with the event.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Properties">
<MemberSignature Language="C#" Value="public System.Collections.IEnumerable Properties { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.IEnumerable Properties" />
<MemberSignature Language="DocId" Value="P:Microsoft.Build.Framework.ProjectStartedEventArgs.Properties" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Build.Framework</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.IEnumerable</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the list of properties for the event.</summary>
<value>The list of properties for the event.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The property names and values accessed through <xref:Microsoft.Build.Framework.ProjectStartedEventArgs.Properties%2A> are kept up-to-date and can be enumerated throughout the build of the project. However, changing a property in this list will not affect the build process.
> [!NOTE]
> This property does not work with multi-proc builds. To get proper results, you can either turn off multi-proc building by specifying `/m:1` (which is the default), or you can work around the limitation by setting an environment variable. For example, setting `MSBuildForwardPropertiesFromChild=configuration;platform` forwards the "configuration" and "platform" properties from the child nodes. Unless this environment variable is defined, nothing will be forwarded. For more information, see [How to: Use Environment Variables in a Build](http://msdn.microsoft.com/library/7f9e4469-8865-4b59-aab3-3ff26bd36e77).
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="TargetNames">
<MemberSignature Language="C#" Value="public string TargetNames { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance string TargetNames" />
<MemberSignature Language="DocId" Value="P:Microsoft.Build.Framework.ProjectStartedEventArgs.TargetNames" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Build.Framework</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the list of targets to be built in the project.</summary>
<value>The list of targets to be built in the project.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ToolsVersion">
<MemberSignature Language="C#" Value="public string ToolsVersion { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance string ToolsVersion" />
<MemberSignature Language="DocId" Value="P:Microsoft.Build.Framework.ProjectStartedEventArgs.ToolsVersion" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Build.Framework</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the tools version used to evaluate this project.</summary>
<value>Returns <see cref="T:System.String" />.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
</Members>
</Type>