Skip to content

Commit 93fdbd9

Browse files
organize usings and add headers
1 parent e395476 commit 93fdbd9

File tree

16 files changed

+113
-45
lines changed

16 files changed

+113
-45
lines changed

src/Azure.Functions.PowerShell.Worker.Messaging/FunctionMessagingClient.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1+
//
2+
// Copyright (c) Microsoft. All rights reserved.
3+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4+
//
5+
16
using System;
27
using System.Threading;
38
using System.Threading.Tasks;
9+
410
using Grpc.Core;
511
using Microsoft.Azure.WebJobs.Script.Grpc.Messages;
612

src/Azure.Functions.PowerShell.Worker/Function/FunctionInfo.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
//
2+
// Copyright (c) Microsoft. All rights reserved.
3+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4+
//
5+
16
using Google.Protobuf.Collections;
27
using Microsoft.Azure.WebJobs.Script.Grpc.Messages;
3-
using Microsoft.Azure.Functions.PowerShellWorker.Utility;
48

59
namespace Microsoft.Azure.Functions.PowerShellWorker
610
{

src/Azure.Functions.PowerShell.Worker/Function/FunctionLoader.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
//
2+
// Copyright (c) Microsoft. All rights reserved.
3+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4+
//
5+
16
using Google.Protobuf.Collections;
27
using Microsoft.Azure.WebJobs.Script.Grpc.Messages;
38

src/Azure.Functions.PowerShell.Worker/Http/HttpRequestContext.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
//
2+
// Copyright (c) Microsoft. All rights reserved.
3+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4+
//
5+
16
using Google.Protobuf.Collections;
2-
using Microsoft.Azure.WebJobs.Script.Grpc.Messages;
37

48
namespace Microsoft.Azure.Functions.PowerShellWorker
59
{

src/Azure.Functions.PowerShell.Worker/Http/HttpResponseContext.cs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1+
//
2+
// Copyright (c) Microsoft. All rights reserved.
3+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4+
//
5+
16
using System.Collections;
2-
using Google.Protobuf.Collections;
3-
using Microsoft.Azure.WebJobs.Script.Grpc.Messages;
47

58
namespace Microsoft.Azure.Functions.PowerShellWorker
69
{

src/Azure.Functions.PowerShell.Worker/PowerShell/Host/AzureFunctionsHost.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1+
//
2+
// Copyright (c) Microsoft. All rights reserved.
3+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4+
//
5+
16
using System;
27
using System.Globalization;
38
using System.Management.Automation.Host;
9+
410
using Microsoft.Azure.Functions.PowerShellWorker.Utility;
511

612
namespace Microsoft.Azure.Functions.PowerShellWorker.PowerShell.Host

src/Azure.Functions.PowerShell.Worker/PowerShell/Host/HostUserInterface.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
//
2+
// Copyright (c) Microsoft. All rights reserved.
3+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4+
//
5+
16
using System;
27
using System.Collections.Generic;
38
using System.Globalization;
49
using System.Management.Automation;
510
using System.Management.Automation.Host;
11+
612
using Microsoft.Azure.Functions.PowerShellWorker.Utility;
713
using Microsoft.Extensions.Logging;
814

src/Azure.Functions.PowerShell.Worker/PowerShell/Host/RawUserInterface.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
//
2+
// Copyright (c) Microsoft. All rights reserved.
3+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4+
//
5+
16
using System;
27
using System.Management.Automation.Host;
38

src/Azure.Functions.PowerShell.Worker/PowerShell/PowerShellWorkerExtensions.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1+
//
2+
// Copyright (c) Microsoft. All rights reserved.
3+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4+
//
5+
16
using System;
27
using System.Collections;
38
using System.Collections.Generic;
49
using System.Text;
10+
511
using Microsoft.Azure.Functions.PowerShellWorker.Utility;
612
using Microsoft.Azure.WebJobs.Script.Grpc.Messages;
713

src/Azure.Functions.PowerShell.Worker/Requests/HandleFunctionLoadRequest.cs

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1+
//
2+
// Copyright (c) Microsoft. All rights reserved.
3+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4+
//
5+
6+
using System;
7+
8+
using Microsoft.Azure.Functions.PowerShellWorker.Utility;
19
using Microsoft.Azure.WebJobs.Script.Grpc.Messages;
2-
using Microsoft.Extensions.Logging;
310

411
namespace Microsoft.Azure.Functions.PowerShellWorker.Requests
512
{
6-
using System;
713
using System.Management.Automation;
8-
using Microsoft.Azure.Functions.PowerShellWorker.Utility;
914

1015
public class HandleFunctionLoadRequest
1116
{

0 commit comments

Comments
 (0)