Skip to content

Commit 3044b62

Browse files
committed
Add missing copyright headers
1 parent a67e557 commit 3044b62

File tree

7 files changed

+51
-9
lines changed

7 files changed

+51
-9
lines changed

src/PowerShellEditorServices.Channel.WebSocket/Properties/AssemblyInfo.cs

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
using System.Reflection;
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.Reflection;
27
using System.Runtime.CompilerServices;
38
using System.Runtime.InteropServices;
49

@@ -10,7 +15,7 @@
1015
[assembly: AssemblyConfiguration("")]
1116
[assembly: AssemblyCompany("")]
1217
[assembly: AssemblyProduct("PowerShellEditorServices.Channel.WebSocket")]
13-
[assembly: AssemblyCopyright("Copyright © 2015")]
18+
[assembly: AssemblyCopyright("Copyright © 2015")]
1419
[assembly: AssemblyTrademark("")]
1520
[assembly: AssemblyCulture("")]
1621

@@ -34,3 +39,4 @@
3439
// [assembly: AssemblyVersion("1.0.*")]
3540
[assembly: AssemblyVersion("1.0.0.0")]
3641
[assembly: AssemblyFileVersion("1.0.0.0")]
42+

src/PowerShellEditorServices.Channel.WebSocket/WebsocketClientChannel.cs

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
using System;
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;
27
using System.IO;
38
using System.Linq;
49
using System.Net.WebSockets;
@@ -150,3 +155,4 @@ public override async Task FlushAsync(CancellationToken cancellationToken)
150155
}
151156
}
152157
}
158+

src/PowerShellEditorServices.Channel.WebSocket/WebsocketServerChannel.cs

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
using System;
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;
27
using System.IO;
38
using System.Linq;
49
using System.Net.WebSockets;
@@ -170,3 +175,4 @@ public async Task DispatchMessage()
170175
}
171176
}
172177
}
178+

src/PowerShellEditorServices/Language/FindSymbolsVisitor2.cs

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
using System.Collections.Generic;
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.Collections.Generic;
27
using System.Management.Automation.Language;
38

49
namespace Microsoft.PowerShell.EditorServices
@@ -70,3 +75,4 @@ public override AstVisitAction VisitConfigurationDefinition(ConfigurationDefinit
7075
}
7176
#endif
7277
}
78+

test/PowerShellEditorServices.Test.Channel.WebSocket/Properties/AssemblyInfo.cs

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
using System.Reflection;
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.Reflection;
27
using System.Runtime.CompilerServices;
38
using System.Runtime.InteropServices;
49

@@ -10,7 +15,7 @@
1015
[assembly: AssemblyConfiguration("")]
1116
[assembly: AssemblyCompany("")]
1217
[assembly: AssemblyProduct("PowerShellEditorServices.Channel.WebSocket.Test")]
13-
[assembly: AssemblyCopyright("Copyright © 2015")]
18+
[assembly: AssemblyCopyright("Copyright © 2015")]
1419
[assembly: AssemblyTrademark("")]
1520
[assembly: AssemblyCulture("")]
1621

@@ -34,3 +39,4 @@
3439
// [assembly: AssemblyVersion("1.0.*")]
3540
[assembly: AssemblyVersion("1.0.0.0")]
3641
[assembly: AssemblyFileVersion("1.0.0.0")]
42+

test/PowerShellEditorServices.Test.Channel.WebSocket/WebSocketChannelTest.cs

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
using System;
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;
27
using System.Threading.Tasks;
38
using Microsoft.Owin.Hosting;
49
using Microsoft.PowerShell.EditorServices.Protocol.Client;
@@ -63,3 +68,4 @@ public void Configuration(IAppBuilder app)
6368
}
6469
}
6570
}
71+

test/PowerShellEditorServices.Test/Language/PowerShellVersionTests.cs

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
using Microsoft.Win32;
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 Microsoft.Win32;
27
using System;
38
using System.Diagnostics;
49
using System.IO;
@@ -76,3 +81,4 @@ private void Compile(string project, string version)
7681
}
7782
}
7883
}
84+

0 commit comments

Comments
 (0)