Skip to content

Commit 54e8730

Browse files
committed
Adding FunctionExecutionContext to extensibility
1 parent a6fd637 commit 54e8730

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Copyright (c) .NET Foundation. All rights reserved.
2+
// Licensed under the MIT License. See License.txt in the project root for license information.
3+
4+
using System;
5+
6+
namespace Microsoft.Azure.WebJobs.Script
7+
{
8+
public class FunctionExecutionContext
9+
{
10+
public string FunctionName { get; set; }
11+
12+
public string FunctionDirectory { get; set; }
13+
14+
public Guid InvocationId { get; set; }
15+
}
16+
}

src/WebJobs.Script.Extensibility/WebJobs.Script.Extensibility.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@
9191
<Reference Include="System.Xml" />
9292
</ItemGroup>
9393
<ItemGroup>
94+
<Compile Include="FunctionExecutionContext.cs" />
9495
<Compile Include="GlobalSuppressions.cs" />
9596
<Compile Include="Properties\AssemblyInfo.cs" />
9697
<Compile Include="..\Common\CommonAssemblyInfo.cs">

0 commit comments

Comments
 (0)