forked from dotnet/sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTaskBase.cs
46 lines (38 loc) · 1.14 KB
/
TaskBase.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
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
namespace Microsoft.NET.Build.Tasks
{
public abstract class TaskBase : Task
{
private readonly DiagnosticsHelper _diagnostics;
public DiagnosticsHelper Diagnostics
{
get { return _diagnostics; }
}
[Output]
public ITaskItem[] DiagnosticMessages
{
get { return _diagnostics.GetDiagnosticMessages(); }
}
// no reason for outside classes to derive from this class.
internal TaskBase()
{
_diagnostics = new DiagnosticsHelper(Log);
}
public override bool Execute()
{
try
{
ExecuteCore();
}
catch (BuildErrorException e)
{
Log.LogErrorFromException(e);
}
return !Log.HasLoggedErrors;
}
protected abstract void ExecuteCore();
}
}