File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed
src/WebJobs.Script.Extensibility Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change 91
91
<Reference Include =" System.Xml" />
92
92
</ItemGroup >
93
93
<ItemGroup >
94
+ <Compile Include =" FunctionExecutionContext.cs" />
94
95
<Compile Include =" GlobalSuppressions.cs" />
95
96
<Compile Include =" Properties\AssemblyInfo.cs" />
96
97
<Compile Include =" ..\Common\CommonAssemblyInfo.cs" >
You can’t perform that action at this time.
0 commit comments