-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
InvalidProjectFileException.cs
625 lines (590 loc) · 27.6 KB
/
InvalidProjectFileException.cs
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// THE ASSEMBLY BUILT FROM THIS SOURCE FILE HAS BEEN DEPRECATED FOR YEARS. IT IS BUILT ONLY TO PROVIDE
// BACKWARD COMPATIBILITY FOR API USERS WHO HAVE NOT YET MOVED TO UPDATED APIS. PLEASE DO NOT SEND PULL
// REQUESTS THAT CHANGE THIS FILE WITHOUT FIRST CHECKING WITH THE MAINTAINERS THAT THE FIX IS REQUIRED.
using System;
using System.Xml;
using System.Runtime.Serialization;
using System.Security.Permissions;
using Microsoft.Build.BuildEngine.Shared;
namespace Microsoft.Build.BuildEngine
{
/// <summary>
/// This class (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
/// <see href="/dotnet/api/microsoft.build.evaluation">Microsoft.Build.Evaluation</see>
/// <see href="/dotnet/api/microsoft.build.execution">Microsoft.Build.Execution</see>
///
/// 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>
/// <remarks>
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!WARNING]
/// > This class (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// > <xref:Microsoft.Build.Construction>
/// > <xref:Microsoft.Build.Evaluation>
/// > <xref:Microsoft.Build.Execution>
/// ]]></format>
/// </remarks>
/// <owner>RGoel</owner>
// 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
[Serializable]
public sealed class InvalidProjectFileException : Exception
{
#region Basic constructors
/// <summary>
/// This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
/// <see href="/dotnet/api/microsoft.build.evaluation">Microsoft.Build.Evaluation</see>
/// <see href="/dotnet/api/microsoft.build.execution">Microsoft.Build.Execution</see>
///
/// Default constructor.
/// </summary>
/// <remarks>
/// This constructor only exists to satisfy .NET coding guidelines. Use a rich constructor whenever possible.
/// </remarks>
/// <owner>RGoel</owner>
/// <remarks>
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!WARNING]
/// > This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// > <xref:Microsoft.Build.Construction>
/// > <xref:Microsoft.Build.Evaluation>
/// > <xref:Microsoft.Build.Execution>
/// ]]></format>
/// </remarks>
public InvalidProjectFileException()
: base()
{
// do nothing
}
/// <summary>
/// This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
/// <see href="/dotnet/api/microsoft.build.evaluation">Microsoft.Build.Evaluation</see>
///
/// <see href="/dotnet/api/microsoft.build.execution">Microsoft.Build.Execution</see>
/// Creates an instance of this exception using the specified error message.
/// </summary>
/// <remarks>
/// This constructor only exists to satisfy .NET coding guidelines. Use a rich constructor whenever possible.
/// </remarks>
/// <owner>SumedhK</owner>
/// <param name="message"></param>
/// <remarks>
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!WARNING]
/// > This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// > <xref:Microsoft.Build.Construction>
/// > <xref:Microsoft.Build.Evaluation>
/// > <xref:Microsoft.Build.Execution>
/// ]]></format>
/// </remarks>
public InvalidProjectFileException(string message)
: base(message)
{
// do nothing
}
/// <summary>
/// This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
/// <see href="/dotnet/api/microsoft.build.evaluation">Microsoft.Build.Evaluation</see>
///
/// <see href="/dotnet/api/microsoft.build.execution">Microsoft.Build.Execution</see>
/// Creates an instance of this exception using the specified error message and inner exception.
/// </summary>
/// <owner>SumedhK</owner>
/// <remarks>
/// This constructor only exists to satisfy .NET coding guidelines. Use a rich constructor whenever possible.
/// </remarks>
/// <param name="message"></param>
/// <param name="innerException"></param>
/// <remarks>
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!WARNING]
/// > This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// > <xref:Microsoft.Build.Construction>
/// > <xref:Microsoft.Build.Evaluation>
/// > <xref:Microsoft.Build.Execution>
/// ]]></format>
/// </remarks>
public InvalidProjectFileException(string message, Exception innerException)
: base(message, innerException)
{
// do nothing
}
#endregion
#region Serialization (update when adding new class members)
/// <summary>
/// Protected constructor used for (de)serialization.
/// If we ever add new members to this class, we'll need to update this.
/// </summary>
/// <param name="info"></param>
/// <param name="context"></param>
private InvalidProjectFileException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
this.projectFile = info.GetString("projectFile");
this.lineNumber = info.GetInt32("lineNumber");
this.columnNumber = info.GetInt32("columnNumber");
this.endLineNumber = info.GetInt32("endLineNumber");
this.endColumnNumber = info.GetInt32("endColumnNumber");
this.errorSubcategory = info.GetString("errorSubcategory");
this.errorCode = info.GetString("errorCode");
this.helpKeyword = info.GetString("helpKeyword");
this.hasBeenLogged = info.GetBoolean("hasBeenLogged");
}
/// <summary>
/// This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
/// <see href="/dotnet/api/microsoft.build.evaluation">Microsoft.Build.Evaluation</see>
/// <see href="/dotnet/api/microsoft.build.execution">Microsoft.Build.Execution</see>
///
/// 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"></param>
/// <param name="context"></param>
/// <remarks>
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!WARNING]
/// > This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// > <xref:Microsoft.Build.Construction>
/// > <xref:Microsoft.Build.Evaluation>
/// > <xref:Microsoft.Build.Execution>
/// ]]></format>
/// </remarks>
[SecurityPermissionAttribute(SecurityAction.Demand, SerializationFormatter = true)]
public override void GetObjectData(SerializationInfo info, StreamingContext context)
{
base.GetObjectData(info, context);
info.AddValue("projectFile", projectFile);
info.AddValue("lineNumber", lineNumber);
info.AddValue("columnNumber", columnNumber);
info.AddValue("endLineNumber", endLineNumber);
info.AddValue("endColumnNumber", endColumnNumber);
info.AddValue("errorSubcategory", errorSubcategory);
info.AddValue("errorCode", errorCode);
info.AddValue("helpKeyword", helpKeyword);
info.AddValue("hasBeenLogged", hasBeenLogged);
}
#endregion
#region Rich constructors
/// <summary>
/// This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
/// <see href="/dotnet/api/microsoft.build.evaluation">Microsoft.Build.Evaluation</see>
/// <see href="/dotnet/api/microsoft.build.execution">Microsoft.Build.Execution</see>
///
/// Creates an instance of this exception using rich error information.
/// </summary>
/// <remarks>This constructor is preferred over the basic constructors.</remarks>
/// <owner>RGoel, SumedhK</owner>
/// <param name="xmlNode">The XML node where the error is (can be null).</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>
/// <remarks>
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!WARNING]
/// > This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// > <xref:Microsoft.Build.Construction>
/// > <xref:Microsoft.Build.Evaluation>
/// > <xref:Microsoft.Build.Execution>
/// ]]></format>
/// </remarks>
public InvalidProjectFileException
(
XmlNode xmlNode,
string message,
string errorSubcategory,
string errorCode,
string helpKeyword
) :
base(message)
{
ErrorUtilities.VerifyThrowArgumentLength(message, nameof(message));
if (xmlNode != null)
{
this.projectFile = XmlUtilities.GetXmlNodeFile(xmlNode, String.Empty /* no project file if XML is purely in-memory */);
XmlSearcher.GetLineColumnByNode(xmlNode, out this.lineNumber, out this.columnNumber);
}
this.errorSubcategory = errorSubcategory;
this.errorCode = errorCode;
this.helpKeyword = helpKeyword;
}
/// <summary>
/// This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
/// <see href="/dotnet/api/microsoft.build.evaluation">Microsoft.Build.Evaluation</see>
/// <see href="/dotnet/api/microsoft.build.execution">Microsoft.Build.Execution</see>
///
/// Creates an instance of this exception using rich error information.
/// </summary>
/// <remarks>This constructor is preferred over the basic constructors.</remarks>
/// <owner>SumedhK</owner>
/// <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>
/// <remarks>
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!WARNING]
/// > This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// > <xref:Microsoft.Build.Construction>
/// > <xref:Microsoft.Build.Evaluation>
/// > <xref:Microsoft.Build.Execution>
/// ]]></format>
/// </remarks>
public InvalidProjectFileException
(
string projectFile,
int lineNumber,
int columnNumber,
int endLineNumber,
int endColumnNumber,
string message,
string errorSubcategory,
string errorCode,
string helpKeyword
) :
base(message)
{
ErrorUtilities.VerifyThrowArgumentNull(projectFile, nameof(projectFile));
ErrorUtilities.VerifyThrowArgumentLength(message, nameof(message));
this.projectFile = projectFile;
this.lineNumber = lineNumber;
this.columnNumber = columnNumber;
this.endLineNumber = endLineNumber;
this.endColumnNumber = endColumnNumber;
this.errorSubcategory = errorSubcategory;
this.errorCode = errorCode;
this.helpKeyword = helpKeyword;
}
#endregion
#region Properties
/// <summary>
/// This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
/// <see href="/dotnet/api/microsoft.build.evaluation">Microsoft.Build.Evaluation</see>
/// <see href="/dotnet/api/microsoft.build.execution">Microsoft.Build.Execution</see>
///
/// Gets the exception message including the affected project file (if any).
/// </summary>
/// <owner>SumedhK</owner>
/// <value>The complete message string.</value>
/// <remarks>
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!WARNING]
/// > This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// > <xref:Microsoft.Build.Construction>
/// > <xref:Microsoft.Build.Evaluation>
/// > <xref:Microsoft.Build.Execution>
/// ]]></format>
/// </remarks>
public override string Message
{
get
{
return base.Message + ((ProjectFile != null)
? (" " + ProjectFile)
: null);
}
}
/// <summary>
/// This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
/// <see href="/dotnet/api/microsoft.build.evaluation">Microsoft.Build.Evaluation</see>
/// <see href="/dotnet/api/microsoft.build.execution">Microsoft.Build.Execution</see>
///
/// Gets the exception message not including the project file.
/// </summary>
/// <owner>SumedhK</owner>
/// <value>The error message string only.</value>
/// <remarks>
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!WARNING]
/// > This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// > <xref:Microsoft.Build.Construction>
/// > <xref:Microsoft.Build.Evaluation>
/// > <xref:Microsoft.Build.Execution>
/// ]]></format>
/// </remarks>
public string BaseMessage
{
get
{
return base.Message;
}
}
/// <summary>
/// This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
/// <see href="/dotnet/api/microsoft.build.evaluation">Microsoft.Build.Evaluation</see>
/// <see href="/dotnet/api/microsoft.build.execution">Microsoft.Build.Execution</see>
///
/// Gets the project file (if any) associated with this exception.
/// </summary>
/// <owner>SumedhK</owner>
/// <value>Project filename/path string, or null.</value>
/// <remarks>
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!WARNING]
/// > This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// > <xref:Microsoft.Build.Construction>
/// > <xref:Microsoft.Build.Evaluation>
/// > <xref:Microsoft.Build.Execution>
/// ]]></format>
/// </remarks>
public string ProjectFile
{
get
{
return projectFile;
}
}
/// <summary>
/// This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
/// <see href="/dotnet/api/microsoft.build.evaluation">Microsoft.Build.Evaluation</see>
///
/// <see href="/dotnet/api/microsoft.build.execution">Microsoft.Build.Execution</see>
/// Gets the invalid line number (if any) in the project.
/// </summary>
/// <owner>SumedhK</owner>
/// <value>The invalid line number, or zero.</value>
/// <remarks>
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!WARNING]
/// > This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// > <xref:Microsoft.Build.Construction>
/// > <xref:Microsoft.Build.Evaluation>
/// > <xref:Microsoft.Build.Execution>
/// ]]></format>
/// </remarks>
public int LineNumber
{
get
{
return lineNumber;
}
}
/// <summary>
/// This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
/// <see href="/dotnet/api/microsoft.build.evaluation">Microsoft.Build.Evaluation</see>
/// <see href="/dotnet/api/microsoft.build.execution">Microsoft.Build.Execution</see>
///
/// Gets the invalid column number (if any) in the project.
/// </summary>
/// <owner>SumedhK</owner>
/// <value>The invalid column number, or zero.</value>
/// <remarks>
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!WARNING]
/// > This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// > <xref:Microsoft.Build.Construction>
/// > <xref:Microsoft.Build.Evaluation>
/// > <xref:Microsoft.Build.Execution>
/// ]]></format>
/// </remarks>
public int ColumnNumber
{
get
{
return columnNumber;
}
}
/// <summary>
/// This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
/// <see href="/dotnet/api/microsoft.build.evaluation">Microsoft.Build.Evaluation</see>
/// <see href="/dotnet/api/microsoft.build.execution">Microsoft.Build.Execution</see>
///
/// Gets the last line number (if any) of a range of invalid lines in the project.
/// </summary>
/// <owner>SumedhK</owner>
/// <value>The last invalid line number, or zero.</value>
/// <remarks>
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!WARNING]
/// > This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// > <xref:Microsoft.Build.Construction>
/// > <xref:Microsoft.Build.Evaluation>
/// > <xref:Microsoft.Build.Execution>
/// ]]></format>
/// </remarks>
public int EndLineNumber
{
get
{
return endLineNumber;
}
}
/// <summary>
/// This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
/// <see href="/dotnet/api/microsoft.build.evaluation">Microsoft.Build.Evaluation</see>
///
/// <see href="/dotnet/api/microsoft.build.execution">Microsoft.Build.Execution</see>
/// Gets the last column number (if any) of a range of invalid columns in the project.
/// </summary>
/// <owner>SumedhK</owner>
/// <value>The last invalid column number, or zero.</value>
/// <remarks>
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!WARNING]
/// > This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// > <xref:Microsoft.Build.Construction>
/// > <xref:Microsoft.Build.Evaluation>
/// > <xref:Microsoft.Build.Execution>
/// ]]></format>
/// </remarks>
public int EndColumnNumber
{
get
{
return endColumnNumber;
}
}
/// <summary>
/// This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
/// <see href="/dotnet/api/microsoft.build.evaluation">Microsoft.Build.Evaluation</see>
/// <see href="/dotnet/api/microsoft.build.execution">Microsoft.Build.Execution</see>
///
/// Gets the error sub-category (if any) that describes the type of this error.
/// </summary>
/// <owner>SumedhK</owner>
/// <value>The sub-category string, or null.</value>
/// <remarks>
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!WARNING]
/// > This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// > <xref:Microsoft.Build.Construction>
/// > <xref:Microsoft.Build.Evaluation>
/// > <xref:Microsoft.Build.Execution>
/// ]]></format>
/// </remarks>
public string ErrorSubcategory
{
get
{
return errorSubcategory;
}
}
/// <summary>
/// This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
/// <see href="/dotnet/api/microsoft.build.evaluation">Microsoft.Build.Evaluation</see>
///
/// <see href="/dotnet/api/microsoft.build.execution">Microsoft.Build.Execution</see>
/// Gets the error code (if any) associated with the exception message.
/// </summary>
/// <owner>SumedhK</owner>
/// <value>Error code string, or null.</value>
/// <remarks>
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!WARNING]
/// > This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// > <xref:Microsoft.Build.Construction>
/// > <xref:Microsoft.Build.Evaluation>
/// > <xref:Microsoft.Build.Execution>
/// ]]></format>
/// </remarks>
public string ErrorCode
{
get
{
return errorCode;
}
}
/// <summary>
/// This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// <see href="/dotnet/api/microsoft.build.construction">Microsoft.Build.Construction</see>
/// <see href="/dotnet/api/microsoft.build.evaluation">Microsoft.Build.Evaluation</see>
///
/// <see href="/dotnet/api/microsoft.build.execution">Microsoft.Build.Execution</see>
/// Gets the F1-help keyword (if any) associated with this error, for the host IDE.
/// </summary>
/// <owner>SumedhK</owner>
/// <value>The keyword string, or null.</value>
/// <remarks>
/// <format type="text/markdown"><![CDATA[
/// ## Remarks
/// > [!WARNING]
/// > This method (and the whole namespace) is deprecated. Please use the classes in these namespaces instead:
/// > <xref:Microsoft.Build.Construction>
/// > <xref:Microsoft.Build.Evaluation>
/// > <xref:Microsoft.Build.Execution>
/// ]]></format>
/// </remarks>
public string HelpKeyword
{
get
{
return helpKeyword;
}
}
/// <summary>
/// Whether the exception has already been logged. Allows the exception to be logged at the
/// most appropriate location, but continue to be propagated.
/// </summary>
internal bool HasBeenLogged
{
get
{
return this.hasBeenLogged;
}
set
{
this.hasBeenLogged = value;
}
}
#endregion
// the project file that caused this exception
private string projectFile;
// the invalid line number in the project
private int lineNumber;
// the invalid column number in the project
private int columnNumber;
// the end of a range of invalid lines in the project
private int endLineNumber;
// the end of a range of invalid columns in the project
private int endColumnNumber;
// the error sub-category that describes the type of this error
private string errorSubcategory;
// the error code for the exception message
private string errorCode;
// the F1-help keyword for the host IDE
private string helpKeyword;
// Has this errors been sent to the loggers?
private bool hasBeenLogged = false;
}
}