-
-
Notifications
You must be signed in to change notification settings - Fork 771
Expand file tree
/
Copy pathBeforeTaskSetupEventArgs.cs
More file actions
28 lines (25 loc) · 934 Bytes
/
BeforeTaskSetupEventArgs.cs
File metadata and controls
28 lines (25 loc) · 934 Bytes
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
namespace Cake.Core
{
/// <summary>
/// Event data for the <see cref="ICakeEngine.BeforeTaskSetup"/> event.
/// </summary>
public sealed class BeforeTaskSetupEventArgs : EventArgs
{
/// <summary>
/// Gets the task setup context.
/// </summary>
public ITaskSetupContext TaskSetupContext { get; }
/// <summary>
/// Initializes a new instance of the <see cref="BeforeTaskSetupEventArgs"/> class.
/// </summary>
/// <param name="taskSetupContext">The task setup context.</param>
public BeforeTaskSetupEventArgs(ITaskSetupContext taskSetupContext)
{
TaskSetupContext = taskSetupContext;
}
}
}