Skip to content

Commit 6408a4c

Browse files
committed
Add copyright header
1 parent 3c6ea48 commit 6408a4c

20 files changed

+100
-20
lines changed

PSReadLine/AssemblyInfo.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using System.Reflection;
1+
/********************************************************************++
2+
Copyright (c) Microsoft Corporation. All rights reserved.
3+
--********************************************************************/
4+
5+
using System.Reflection;
26
using System.Runtime.InteropServices;
37

48
// General Information about an assembly is controlled through the following

PSReadLine/BasicEditing.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using System;
1+
/********************************************************************++
2+
Copyright (c) Microsoft Corporation. All rights reserved.
3+
--********************************************************************/
4+
5+
using System;
26
using System.Linq;
37
using System.Management.Automation;
48
using System.Management.Automation.Language;

PSReadLine/Cmdlets.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using System;
1+
/********************************************************************++
2+
Copyright (c) Microsoft Corporation. All rights reserved.
3+
--********************************************************************/
4+
5+
using System;
26
using System.Collections.Generic;
37
using System.Collections.ObjectModel;
48
using System.Diagnostics.CodeAnalysis;

PSReadLine/Completion.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using System;
1+
/********************************************************************++
2+
Copyright (c) Microsoft Corporation. All rights reserved.
3+
--********************************************************************/
4+
5+
using System;
26
using System.Collections;
37
using System.Collections.Generic;
48
using System.Diagnostics;

PSReadLine/ConsoleBufferBuilder.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
/********************************************************************++
2+
Copyright (c) Microsoft Corporation. All rights reserved.
3+
--********************************************************************/
4+
15
using System;
26
using System.Collections.Generic;
37

PSReadLine/ConsoleKeyChordConverter.cs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using System;
1+
/********************************************************************++
2+
Copyright (c) Microsoft Corporation. All rights reserved.
3+
--********************************************************************/
4+
5+
using System;
26
using System.Collections.Generic;
37
using System.Linq;
48
using System.Runtime.InteropServices;
@@ -233,4 +237,4 @@ internal static char GetCharFromConsoleKey(ConsoleKey key, ConsoleModifiers modi
233237
return keyChar;
234238
}
235239
}
236-
}
240+
}

PSReadLine/ConsoleLib.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using System;
1+
/********************************************************************++
2+
Copyright (c) Microsoft Corporation. All rights reserved.
3+
--********************************************************************/
4+
5+
using System;
26
using System.Diagnostics.CodeAnalysis;
37
using System.Globalization;
48
using System.Runtime.InteropServices;

PSReadLine/History.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using System;
1+
/********************************************************************++
2+
Copyright (c) Microsoft Corporation. All rights reserved.
3+
--********************************************************************/
4+
5+
using System;
26
using System.Collections.Generic;
37
using System.Diagnostics;
48
using System.IO;

PSReadLine/HistoryQueue.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using System;
1+
/********************************************************************++
2+
Copyright (c) Microsoft Corporation. All rights reserved.
3+
--********************************************************************/
4+
5+
using System;
26
using System.Collections.Generic;
37
using System.Diagnostics;
48
using System.Diagnostics.CodeAnalysis;

PSReadLine/KeyBindings.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
using System;
1+
/********************************************************************++
2+
Copyright (c) Microsoft Corporation. All rights reserved.
3+
--********************************************************************/
4+
5+
using System;
26
using System.Collections.Generic;
37
using System.Management.Automation;
48
using System.Text;

0 commit comments

Comments
 (0)