Standardize license header for all C# files (#361)
authorAndrew Au <andrewau@microsoft.com>
Mon, 24 Jun 2019 19:14:41 +0000 (12:14 -0700)
committerGitHub <noreply@github.com>
Mon, 24 Jun 2019 19:14:41 +0000 (12:14 -0700)
46 files changed:
src/Microsoft.Diagnostics.Repl/Command/Attributes.cs
src/Microsoft.Diagnostics.Repl/Command/CommandBase.cs
src/Microsoft.Diagnostics.Repl/Command/CommandProcessor.cs
src/Microsoft.Diagnostics.Repl/Console/CharToLineConverter.cs
src/Microsoft.Diagnostics.Repl/Console/ConsoleProvider.cs
src/Microsoft.Diagnostics.Repl/Console/OutputType.cs
src/Microsoft.Diagnostics.Tools.RuntimeClient/DiagnosticsIpc/IpcClient.cs
src/Microsoft.Diagnostics.Tools.RuntimeClient/DiagnosticsIpc/IpcCommands.cs
src/Microsoft.Diagnostics.Tools.RuntimeClient/DiagnosticsIpc/IpcHeader.cs
src/Microsoft.Diagnostics.Tools.RuntimeClient/DiagnosticsIpc/IpcMessage.cs
src/Tools/Common/CommandLineException.cs
src/Tools/Common/ConsoleCancellation.cs
src/Tools/Common/DebugUtil.cs
src/Tools/dotnet-analyze/AnalysisSession.cs
src/Tools/dotnet-analyze/AsyncHangAnalyzer.cs
src/Tools/dotnet-analyze/ClrMdExtensions.cs
src/Tools/dotnet-analyze/CommandProcessor.cs
src/Tools/dotnet-analyze/Commands/DumpCommandBase.cs
src/Tools/dotnet-analyze/Commands/DumpHeapCommand.cs
src/Tools/dotnet-analyze/Commands/DumpStackCommand.cs
src/Tools/dotnet-analyze/Commands/EventStackCommand.cs
src/Tools/dotnet-analyze/Commands/IAnalysisCommand.cs
src/Tools/dotnet-analyze/Commands/InfoCommand.cs
src/Tools/dotnet-analyze/Commands/LogsCommand.cs
src/Tools/dotnet-analyze/Commands/RequestsCommand.cs
src/Tools/dotnet-analyze/Commands/ThreadsCommand.cs
src/Tools/dotnet-analyze/Commands/TraceCommandBase.cs
src/Tools/dotnet-analyze/LogMessage.cs
src/Tools/dotnet-analyze/MemoryDump.cs
src/Tools/dotnet-analyze/Program.cs
src/Tools/dotnet-dump/AnalyzeContext.cs
src/Tools/dotnet-dump/Analyzer.cs
src/Tools/dotnet-dump/Commands/ClrModulesCommand.cs
src/Tools/dotnet-dump/Commands/ExitCommand.cs
src/Tools/dotnet-dump/Commands/HelpCommand.cs
src/Tools/dotnet-dump/Commands/ModulesCommand.cs
src/Tools/dotnet-dump/Commands/SOSCommand.cs
src/Tools/dotnet-dump/Commands/SOSCommandForWindows.cs
src/Tools/dotnet-dump/Commands/SetThreadCommand.cs
src/Tools/dotnet-dump/Dumper.Linux.cs
src/Tools/dotnet-dump/Dumper.Windows.cs
src/Tools/dotnet-dump/Dumper.cs
src/Tools/dotnet-dump/Program.cs
src/Tools/dotnet-sos/Program.cs
src/Tools/dotnet-trace/CommandLine/Commands/ErrorCode.cs
src/Tools/dotnet-trace/Profile.cs

index b902cd3ce901bc7d7db56aefb0e167f7b1f3cab3..2264e6241d3551447b19d1c9e1c602241f196a7b 100644 (file)
@@ -1,8 +1,7 @@
-// --------------------------------------------------------------------
-// 
-// Copyright (c) Microsoft Corporation.  All rights reserved.
-// 
-// --------------------------------------------------------------------
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System;
 
 namespace Microsoft.Diagnostics.Repl
index 73d458067ef5ac273baaa67848b82e67e3ab9141..cf6238cec3a87cf215b36aa9318a648b69ca0c3d 100644 (file)
@@ -1,8 +1,7 @@
-// --------------------------------------------------------------------
-// 
-// Copyright (c) Microsoft Corporation.  All rights reserved.
-// 
-// --------------------------------------------------------------------
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System;
 using System.CommandLine;
 using System.CommandLine.Invocation;
index c36655c1130617db65c5f2e849f08db61496eb5b..4efec289e27cc90f58b1e5c0e608165314b099e0 100644 (file)
@@ -1,8 +1,6 @@
-// --------------------------------------------------------------------
-//
-// Copyright (c) Microsoft Corporation.  All rights reserved.
-//
-// --------------------------------------------------------------------
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
 
 using System;
 using System.Collections;
index ea3f3898e03fefa34fe59de0eca91b88e4d00229..323b27bbd35827821e1d54006baac8c512943df8 100644 (file)
@@ -1,8 +1,6 @@
-// --------------------------------------------------------------------
-// 
-// Copyright (c) Microsoft Corporation.  All rights reserved.
-// 
-// --------------------------------------------------------------------
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
 
 using System;
 using System.Text;
index 5cabdfe2cb03aedfeb0bb9ae840d1603781f9afc..71958b91736b0ed406f0beb6ea3c40d63d4dad34 100644 (file)
@@ -1,8 +1,7 @@
-// --------------------------------------------------------------------
-// 
-// Copyright (c) Microsoft Corporation.  All rights reserved.
-// 
-// --------------------------------------------------------------------
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System;
 using System.Collections.Generic;
 using System.CommandLine;
index 26b65aad2f2f1ed74da361ab8423a874291aebd6..53fb714f86f7ac717376533445eb8978a40eb347 100644 (file)
@@ -1,8 +1,6 @@
-// --------------------------------------------------------------------
-//
-// Copyright (c) Microsoft Corporation.  All rights reserved.
-//
-// --------------------------------------------------------------------
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
 
 namespace Microsoft.Diagnostics.Repl
 {
index 7139d1b3747f240e89ff70eb39af7b11faea403a..7897f0539a334ebd959acf16932d41f208ebf313 100644 (file)
@@ -1,4 +1,8 @@
-using System;
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+using System;
 using System.Collections.Generic;
 using System.IO;
 using System.IO.Pipes;
index 5aff4eda0a6f6265d6213f0b5e4e550848e7977e..eea08e478406906dfc6bb9bbc05ac2ee071e3fae 100644 (file)
@@ -1,4 +1,8 @@
-using System;
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+using System;
 using System.Collections.Generic;
 using System.Text;
 
index 14269febe623a0f48bdbd748be0acb1f7c4fefdb..641c0e95dfe7a4376f0a3af0013ee1652c6e921b 100644 (file)
@@ -1,4 +1,8 @@
-using System;
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+using System;
 using System.Collections.Generic;
 using System.Diagnostics;
 using System.IO;
index ad299929ae9a3897e702fa562600901376d7a642..dc73a5a228331934e7551e6faf121627f8da3267 100644 (file)
@@ -1,4 +1,8 @@
-using System;
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+using System;
 using System.Collections.Generic;
 using System.IO;
 using System.Text;
index 51bd2a10be35499932a9e2af3e17bb763fc0fdd1..03b07766e903b33c38ab4d3ab0ca9b8013d872ca 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System;
 using System.Runtime.Serialization;
 
index 34e9c2bdfba53a0514b7d140c12b8a463c954107..28fecac7e98ba43f73142b4db302c8c66c8c4c0e 100644 (file)
@@ -1,5 +1,6 @@
-// Copyright (c) .NET Foundation. All rights reserved.
-// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
 
 using System.Threading;
 using System.Threading.Tasks;
index 41ef4b321b2949f221084bae44b1bd260e64861b..d3dcc6dfab79d0558908b777543946b6ef05fcd9 100644 (file)
@@ -1,5 +1,6 @@
-// Copyright (c) .NET Foundation. All rights reserved.
-// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
 
 using System;
 using System.Diagnostics;
index 174a032b27b72030c01495d76f2fdcdbd0881b6f..243e2870905d016e518174930591cbe2968b3b24 100644 (file)
@@ -1,5 +1,6 @@
-// Copyright (c) .NET Foundation. All rights reserved.
-// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
 
 using Microsoft.Diagnostics.Tracing.Etlx;
 
index 22f973c05e9a7d4b11e190d45cc536f9881b0b61..381dd7ba2abc86277c37d3e241b204083ec9fbca 100644 (file)
@@ -1,5 +1,6 @@
-// Copyright (c) .NET Foundation. All rights reserved.
-// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
 
 using System.Threading.Tasks;
 using McMaster.Extensions.CommandLineUtils;
index 9ae63920eb44bf13ee52293f56a076653d822be1..3458e289f13d843e2242a0595b839462aef58c06 100644 (file)
@@ -1,5 +1,6 @@
-// Copyright (c) .NET Foundation. All rights reserved.
-// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
 
 using Microsoft.Diagnostics.Runtime;
 
index 69fb222b2c07580e28dfc57233660e7361632f3b..d4324f87b258d9b3b97cd227fe3c774269a4f2b4 100644 (file)
@@ -1,5 +1,6 @@
-// Copyright (c) .NET Foundation. All rights reserved.
-// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
 
 using System;
 using System.Collections.Generic;
index 73e950878a2f2507d6bbdcacb4402e49846a22db..7f03d8274f3514d076d917fef73f03c1b9facfe7 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System.Collections.Generic;
 using System.Threading.Tasks;
 using McMaster.Extensions.CommandLineUtils;
index 774485264ae7839fabf79897461e39b521a59c59..31ae92df74513c2237fea769f97bff966a827ccb 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System.Collections.Generic;
 using System.Linq;
 using System.Threading.Tasks;
index 4fc5163d59f50a9e6c7f532510906ed6190ed82c..fad0b3dc39ecf1d272394812ec872e0153fc5945 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System;
 using System.Collections.Generic;
 using System.Threading.Tasks;
index 1f4e0ee86f3b15777285cda8cb70ffa8ee421a42..ff097f9709db65903c12785fdfab48e3257030b2 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System.Collections.Generic;
 using System.Globalization;
 using System.Linq;
index edd056169854c6159385c07f340b3e2e131f4447..8aec791f3d11332cbb177621ed8bbe6c09e6d32d 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System.Collections.Generic;
 using System.Threading.Tasks;
 using McMaster.Extensions.CommandLineUtils;
index 144a82e44f2c4bb456a815796c18e846d7d8dd7c..00a162645ea1c09bbf16ddb3ab554cef4f23bd2c 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System.Collections.Generic;
 using System.Threading.Tasks;
 using McMaster.Extensions.CommandLineUtils;
index de265187533002fde8f9f8d1e199f713ec55ef0b..38ec88cfcd6d905446d7f7e5d0589454631fb434 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System.Collections.Generic;
 using System.Linq;
 using System.Threading.Tasks;
index ed0a1a135215290940445ce05be76fbc88671d07..36af2a003583e508de00f72cf5c39dafb8bbfec0 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System.Collections.Generic;
 using System.Linq;
 using System.Threading.Tasks;
index d05ae0dd767ce17d74e738ac7c9b3df58e7bb20c..5aa642865e82d53487e6ac6b5afb610a32781dba 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System.Collections.Generic;
 using System.Threading.Tasks;
 using McMaster.Extensions.CommandLineUtils;
index 6b62cf06687e57273c78849b3e4a11c84a903af5..9729550c2d1c85aca7600946c0b6eb0f2983ddab 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System.Collections.Generic;
 using System.Threading.Tasks;
 using McMaster.Extensions.CommandLineUtils;
index c0c0bf5f0e8290e6081454f9d11340d682fd6be6..09050666f350078ada191b34954ba147c46c75ec 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System;
 using System.Collections.Generic;
 using Microsoft.Diagnostics.Tracing;
index e94b023b5cdccadd74f68a0a96aaaf5b8b617d2f..17dccd6693e4095ac30613a717501d849ce757ba 100644 (file)
@@ -1,5 +1,6 @@
-// Copyright (c) .NET Foundation. All rights reserved.
-// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
 
 using System;
 using System.Collections.Generic;
index f851b74f2db1efa8d947de26a4861877f99ac0df..8415fa200c63283bb45be8642adbb3b4831c572b 100644 (file)
@@ -1,5 +1,6 @@
-// Copyright (c) .NET Foundation. All rights reserved.
-// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
 
 using System;
 using System.Collections.Generic;
index 3f75566d2ae16dde9c2ea8a81e2c284a5a97e2bd..fae01c05b61654c08a03eef24aa5b50fcb2ad3af 100644 (file)
@@ -1,8 +1,7 @@
-// --------------------------------------------------------------------
-// 
-// Copyright (c) Microsoft Corporation.  All rights reserved.
-// 
-// --------------------------------------------------------------------
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using Microsoft.Diagnostics.Runtime;
 using Microsoft.SymbolStore;
 using Microsoft.SymbolStore.KeyGenerators;
index 7682840f1acd4e47db8603b3be6573684b86b43b..f92d79eddcd12f6f7c1eae0df3d1ec48c6250f65 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using Microsoft.Diagnostics.Repl;
 using Microsoft.Diagnostics.Runtime;
 using SOS;
index c46df3cec63c8ba32b4cbe2764ca8e22a5c502da..9c2a3228702bd49225cfcdf44f5f55e1e455d117 100644 (file)
@@ -1,3 +1,6 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
 
 using Microsoft.Diagnostics.Repl;
 using Microsoft.Diagnostics.Runtime;
index a35e6b130370f2b6d6bae56b3da9382a8eb36210..a7dcaa592de0f11eb7bbadd9ed596a6e6dd065da 100644 (file)
@@ -1,3 +1,6 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
 
 using Microsoft.Diagnostics.Repl;
 using System.CommandLine;
index 7aa371c5207261159e34aebff84daec04f83333a..2a12890905138c2df808d641e0a9b80e94e55094 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using Microsoft.Diagnostics.Repl;
 using System.CommandLine;
 
index 6b04175584dc9cf4cbc27dbf04dd22b961a447bf..2bbb4f2fdc8d1a0572818809e9e65109e81dd0cc 100644 (file)
@@ -1,3 +1,6 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
 
 using Microsoft.Diagnostics.Repl;
 using Microsoft.Diagnostics.Runtime;
index aff87be7891a574cebd7b5e6192542432e6dc856..40cf8b45c8e249aa717d5786550d7cb387972819 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using Microsoft.Diagnostics.Repl;
 using System;
 using System.CommandLine;
index af38b15cb8549b4e1ece524fde0e93e99f6e1874..560693d3c1478e18c1d1e854b1fc9a811273afad 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using Microsoft.Diagnostics.Repl;
 using System.CommandLine;
 
index e3c4604f1d8cce0108c6a244434d6c0b60cec181..c08dd307c34ba5ef8927d3231d52ea87b35b59c8 100644 (file)
@@ -1,3 +1,6 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
 
 using Microsoft.Diagnostics.Repl;
 using System;
index 2a3e3d189c1d157e496862643d989065c48d8c23..beb521f88a938c9c2205bd01ace9580da766db6b 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System;
 using System.Linq;
 using System.Diagnostics;
index 62e22f41691aa2a6f98d37c3b06cbb1ffa95dfe2..53e39d959100e75fd6958a9976560a79b7d21884 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System;
 using System.Diagnostics;
 using System.IO;
index 5a0f09de98912b319add19299a4596547de66b5f..db3fa3943bd410820117bc4bd985419ec52b5ed3 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using Microsoft.Diagnostics.Tools.RuntimeClient;
 using System;
 using System.CommandLine;
index 9a6b6bdb89a5cc9d6c05bb82aaeb511f93f0c12e..957c987bcaadea69a9f0c3599bfb3a0a7de4cd5f 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 using System.CommandLine;
 using System.CommandLine.Builder;
 using System.CommandLine.Invocation;
index 27dbd50c5bbd600367f5f9bb9602d4022a8f40fd..5baac43670513ff69304d4d8643e2af952e81cca 100644 (file)
@@ -1,5 +1,6 @@
-// Copyright (c) .NET Foundation. All rights reserved.
-// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
 
 using SOS;
 using System;
index 9987ca884d87ee493eb098112e2e33cea5aeb406..de806c69533e5adb21f30e33eba4d2c16d745c84 100644 (file)
@@ -1,3 +1,7 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
 namespace Microsoft.Diagnostics.Tools.Trace
 {
     internal static class ErrorCodes
index fcafa27b687415b8450a82508dc7ce40dad59606..4f8e2c088768347be8ed166bc31384c99ab5c965 100644 (file)
@@ -1,4 +1,8 @@
-using Microsoft.Diagnostics.Tools.RuntimeClient;
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+using Microsoft.Diagnostics.Tools.RuntimeClient;
 using System.Collections.Generic;
 using System.Linq;