Skip to content

Commit 229d8be

Browse files
committed
Adding missing file headers
1 parent f19954b commit 229d8be

31 files changed

+124
-31
lines changed

src/WebJobs.Script.WebHost/Controllers/AdminController.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System.Collections.Generic;
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.Collections.Generic;
25
using System.Linq;
36
using System.Net;
47
using System.Net.Http;

src/WebJobs.Script.WebHost/Controllers/FunctionsController.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System;
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;
25
using System.Linq;
36
using System.Net;
47
using System.Net.Http;

src/WebJobs.Script.WebHost/Filters/AuthorizationLevelAttribute.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System;
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;
25
using System.Collections.Generic;
36
using System.Linq;
47
using System.Net;

src/WebJobs.Script.WebHost/FunctionSecrets.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
namespace WebJobs.Script.WebHost
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+
namespace WebJobs.Script.WebHost
25
{
36
public class FunctionSecrets
47
{

src/WebJobs.Script.WebHost/Global.asax.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System;
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;
25
using System.Web.Http;
36

47
namespace WebJobs.Script.WebHost

src/WebJobs.Script.WebHost/Handlers/EnsureHostRunningHandler.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System;
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;
25
using System.Net;
36
using System.Net.Http;
47
using System.Threading;

src/WebJobs.Script.WebHost/HostSecrets.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
namespace WebJobs.Script.WebHost
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+
namespace WebJobs.Script.WebHost
25
{
36
public class HostSecrets
47
{

src/WebJobs.Script.WebHost/Models/FunctionInvocation.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
namespace WebJobs.Script.WebHost.Models
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+
namespace WebJobs.Script.WebHost.Models
25
{
36
public class FunctionInvocation
47
{

src/WebJobs.Script.WebHost/SecretManager.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System.Collections.Concurrent;
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.Collections.Concurrent;
25
using System.IO;
36
using Newtonsoft.Json;
47

src/WebJobs.Script.WebHost/WebHooks/DynamicWebHookReceiverConfig.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
using System.Threading.Tasks;
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.Threading.Tasks;
25
using Microsoft.AspNet.WebHooks;
36

47
namespace WebJobs.Script.WebHost.WebHooks

0 commit comments

Comments
 (0)