summaryrefslogtreecommitdiff
path: root/src/binder
diff options
context:
space:
mode:
authordotnet-bot <dotnet-bot@microsoft.com>2016-01-27 11:41:24 -0800
committerstephentoub <stoub@microsoft.com>2016-01-27 13:22:16 -0800
commit21f8416ad4204afc18ce315d99baa5f4ada28d9a (patch)
tree6767624f3ab0c185ad7ceec5d6e07c2784058ecf /src/binder
parent98ab26be675b96668ecf2dfe8c38f58f57454f02 (diff)
downloadcoreclr-21f8416ad4204afc18ce315d99baa5f4ada28d9a.tar.gz
coreclr-21f8416ad4204afc18ce315d99baa5f4ada28d9a.tar.bz2
coreclr-21f8416ad4204afc18ce315d99baa5f4ada28d9a.zip
Update license headers
Diffstat (limited to 'src/binder')
-rw-r--r--src/binder/applicationcontext.cpp7
-rw-r--r--src/binder/assembly.cpp7
-rw-r--r--src/binder/assemblybinder.cpp7
-rw-r--r--src/binder/assemblyidentitycache.cpp7
-rw-r--r--src/binder/assemblyname.cpp7
-rw-r--r--src/binder/binderinterface.cpp7
-rw-r--r--src/binder/bindinglog.cpp7
-rw-r--r--src/binder/cdebuglog.cpp7
-rw-r--r--src/binder/clrprivbinderassemblyloadcontext.cpp7
-rw-r--r--src/binder/clrprivbindercoreclr.cpp7
-rw-r--r--src/binder/compatibility.cpp7
-rw-r--r--src/binder/coreclrbindercommon.cpp7
-rw-r--r--src/binder/debuglog.cpp7
-rw-r--r--src/binder/failurecache.cpp7
-rw-r--r--src/binder/fusionassemblyname.cpp7
-rw-r--r--src/binder/fusionhelpers.cpp7
-rw-r--r--src/binder/inc/applicationcontext.hpp7
-rw-r--r--src/binder/inc/applicationcontext.inl7
-rw-r--r--src/binder/inc/assembly.hpp7
-rw-r--r--src/binder/inc/assembly.inl7
-rw-r--r--src/binder/inc/assemblybinder.hpp7
-rw-r--r--src/binder/inc/assemblyentry.hpp7
-rw-r--r--src/binder/inc/assemblyhashtraits.hpp7
-rw-r--r--src/binder/inc/assemblyidentity.hpp7
-rw-r--r--src/binder/inc/assemblyidentitycache.hpp7
-rw-r--r--src/binder/inc/assemblyname.hpp7
-rw-r--r--src/binder/inc/assemblyname.inl7
-rw-r--r--src/binder/inc/assemblyversion.hpp7
-rw-r--r--src/binder/inc/assemblyversion.inl7
-rw-r--r--src/binder/inc/binderinterface.hpp7
-rw-r--r--src/binder/inc/bindertypes.hpp7
-rw-r--r--src/binder/inc/bindinglog.hpp7
-rw-r--r--src/binder/inc/bindinglog.inl7
-rw-r--r--src/binder/inc/bindresult.hpp7
-rw-r--r--src/binder/inc/bindresult.inl7
-rw-r--r--src/binder/inc/cdebuglog.hpp7
-rw-r--r--src/binder/inc/clrprivbinderassemblyloadcontext.h7
-rw-r--r--src/binder/inc/clrprivbindercoreclr.h7
-rw-r--r--src/binder/inc/compatibility.hpp7
-rw-r--r--src/binder/inc/contextentry.hpp7
-rw-r--r--src/binder/inc/coreclrbindercommon.h7
-rw-r--r--src/binder/inc/debuglog.hpp7
-rw-r--r--src/binder/inc/failurecache.hpp7
-rw-r--r--src/binder/inc/failurecachehashtraits.hpp7
-rw-r--r--src/binder/inc/fusionassemblyname.hpp7
-rw-r--r--src/binder/inc/fusionhelpers.hpp7
-rw-r--r--src/binder/inc/list.hpp7
-rw-r--r--src/binder/inc/loadcontext.hpp7
-rw-r--r--src/binder/inc/loadcontext.inl7
-rw-r--r--src/binder/inc/propertyhashtraits.hpp7
-rw-r--r--src/binder/inc/propertymap.hpp7
-rw-r--r--src/binder/inc/stringlexer.hpp7
-rw-r--r--src/binder/inc/stringlexer.inl7
-rw-r--r--src/binder/inc/textualidentityparser.hpp7
-rw-r--r--src/binder/inc/utils.hpp7
-rw-r--r--src/binder/inc/variables.hpp7
-rw-r--r--src/binder/propertymap.cpp7
-rw-r--r--src/binder/stringlexer.cpp7
-rw-r--r--src/binder/textualidentityparser.cpp7
-rw-r--r--src/binder/utils.cpp7
-rw-r--r--src/binder/variables.cpp7
61 files changed, 183 insertions, 244 deletions
diff --git a/src/binder/applicationcontext.cpp b/src/binder/applicationcontext.cpp
index d560a1d3d1..d62091048f 100644
--- a/src/binder/applicationcontext.cpp
+++ b/src/binder/applicationcontext.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// ApplicationContext.cpp
diff --git a/src/binder/assembly.cpp b/src/binder/assembly.cpp
index ed04368fc2..28827b6c26 100644
--- a/src/binder/assembly.cpp
+++ b/src/binder/assembly.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// Assembly.cpp
diff --git a/src/binder/assemblybinder.cpp b/src/binder/assemblybinder.cpp
index 139a66cbe8..1e68e55002 100644
--- a/src/binder/assemblybinder.cpp
+++ b/src/binder/assemblybinder.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// AssemblyBinder.cpp
diff --git a/src/binder/assemblyidentitycache.cpp b/src/binder/assemblyidentitycache.cpp
index 798b60b0f0..dc2c7205b8 100644
--- a/src/binder/assemblyidentitycache.cpp
+++ b/src/binder/assemblyidentitycache.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// AssemblyIdentityCache.cpp
diff --git a/src/binder/assemblyname.cpp b/src/binder/assemblyname.cpp
index a1897e409d..616869b3f9 100644
--- a/src/binder/assemblyname.cpp
+++ b/src/binder/assemblyname.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// AssemblyName.cpp
diff --git a/src/binder/binderinterface.cpp b/src/binder/binderinterface.cpp
index 6135eee97c..4e5f9b42b3 100644
--- a/src/binder/binderinterface.cpp
+++ b/src/binder/binderinterface.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// BinderInterface.cpp
diff --git a/src/binder/bindinglog.cpp b/src/binder/bindinglog.cpp
index a5a9cd352b..4466fcea28 100644
--- a/src/binder/bindinglog.cpp
+++ b/src/binder/bindinglog.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// BindingLog.cpp
diff --git a/src/binder/cdebuglog.cpp b/src/binder/cdebuglog.cpp
index 329d54fcae..98b9589240 100644
--- a/src/binder/cdebuglog.cpp
+++ b/src/binder/cdebuglog.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// CDebugLog.cpp
diff --git a/src/binder/clrprivbinderassemblyloadcontext.cpp b/src/binder/clrprivbinderassemblyloadcontext.cpp
index 344801a081..237ec1a19c 100644
--- a/src/binder/clrprivbinderassemblyloadcontext.cpp
+++ b/src/binder/clrprivbinderassemblyloadcontext.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
#include "common.h"
#include "assemblybinder.hpp"
diff --git a/src/binder/clrprivbindercoreclr.cpp b/src/binder/clrprivbindercoreclr.cpp
index 4958875bf5..9ea6eba04f 100644
--- a/src/binder/clrprivbindercoreclr.cpp
+++ b/src/binder/clrprivbindercoreclr.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
#include "common.h"
#include "assemblybinder.hpp"
diff --git a/src/binder/compatibility.cpp b/src/binder/compatibility.cpp
index 5b64fb7565..ca376b63c8 100644
--- a/src/binder/compatibility.cpp
+++ b/src/binder/compatibility.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// Compatibility.cpp
diff --git a/src/binder/coreclrbindercommon.cpp b/src/binder/coreclrbindercommon.cpp
index 6e3f52e153..86540fcfd5 100644
--- a/src/binder/coreclrbindercommon.cpp
+++ b/src/binder/coreclrbindercommon.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
#include "common.h"
diff --git a/src/binder/debuglog.cpp b/src/binder/debuglog.cpp
index 2c4fd41bfd..1170c0eb8c 100644
--- a/src/binder/debuglog.cpp
+++ b/src/binder/debuglog.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// DebugLog.cpp
diff --git a/src/binder/failurecache.cpp b/src/binder/failurecache.cpp
index 8cf1cbdac8..c7f17a69f6 100644
--- a/src/binder/failurecache.cpp
+++ b/src/binder/failurecache.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// FailureCache.cpp
diff --git a/src/binder/fusionassemblyname.cpp b/src/binder/fusionassemblyname.cpp
index 0605116fa5..f370337051 100644
--- a/src/binder/fusionassemblyname.cpp
+++ b/src/binder/fusionassemblyname.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// FusionAssemblyName.cpp
diff --git a/src/binder/fusionhelpers.cpp b/src/binder/fusionhelpers.cpp
index 40ef745743..bb32856a52 100644
--- a/src/binder/fusionhelpers.cpp
+++ b/src/binder/fusionhelpers.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// FusionHelpers.cpp
diff --git a/src/binder/inc/applicationcontext.hpp b/src/binder/inc/applicationcontext.hpp
index f92cc8da16..4c256771eb 100644
--- a/src/binder/inc/applicationcontext.hpp
+++ b/src/binder/inc/applicationcontext.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// ApplicationContext.hpp
diff --git a/src/binder/inc/applicationcontext.inl b/src/binder/inc/applicationcontext.inl
index 5b756860f5..b57562f4d5 100644
--- a/src/binder/inc/applicationcontext.inl
+++ b/src/binder/inc/applicationcontext.inl
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// ApplicationContext.inl
diff --git a/src/binder/inc/assembly.hpp b/src/binder/inc/assembly.hpp
index 81ff1e465c..0df53ad833 100644
--- a/src/binder/inc/assembly.hpp
+++ b/src/binder/inc/assembly.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// Assembly.hpp
diff --git a/src/binder/inc/assembly.inl b/src/binder/inc/assembly.inl
index 606b7a2c35..92f9c72e6d 100644
--- a/src/binder/inc/assembly.inl
+++ b/src/binder/inc/assembly.inl
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// Assembly.inl
diff --git a/src/binder/inc/assemblybinder.hpp b/src/binder/inc/assemblybinder.hpp
index bfe851d8e9..d5f3277180 100644
--- a/src/binder/inc/assemblybinder.hpp
+++ b/src/binder/inc/assemblybinder.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// AssemblyBinder.hpp
diff --git a/src/binder/inc/assemblyentry.hpp b/src/binder/inc/assemblyentry.hpp
index 9e51ac55cc..d0bf27b2d5 100644
--- a/src/binder/inc/assemblyentry.hpp
+++ b/src/binder/inc/assemblyentry.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// AssemblyEntry.hpp
diff --git a/src/binder/inc/assemblyhashtraits.hpp b/src/binder/inc/assemblyhashtraits.hpp
index 605e868d9c..285368f687 100644
--- a/src/binder/inc/assemblyhashtraits.hpp
+++ b/src/binder/inc/assemblyhashtraits.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// AssemblyHashTraits.hpp
diff --git a/src/binder/inc/assemblyidentity.hpp b/src/binder/inc/assemblyidentity.hpp
index 1fedf3642b..4d7c7f1bac 100644
--- a/src/binder/inc/assemblyidentity.hpp
+++ b/src/binder/inc/assemblyidentity.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// AssemblyIdentity.hpp
diff --git a/src/binder/inc/assemblyidentitycache.hpp b/src/binder/inc/assemblyidentitycache.hpp
index 644414cff6..39ad283175 100644
--- a/src/binder/inc/assemblyidentitycache.hpp
+++ b/src/binder/inc/assemblyidentitycache.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// AssemblyIdentityCache.hpp
diff --git a/src/binder/inc/assemblyname.hpp b/src/binder/inc/assemblyname.hpp
index 474500bc75..1ce84d1902 100644
--- a/src/binder/inc/assemblyname.hpp
+++ b/src/binder/inc/assemblyname.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// AssemblyName.hpp
diff --git a/src/binder/inc/assemblyname.inl b/src/binder/inc/assemblyname.inl
index 5744592c00..3acd39ce0a 100644
--- a/src/binder/inc/assemblyname.inl
+++ b/src/binder/inc/assemblyname.inl
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// AssemblyName.inl
diff --git a/src/binder/inc/assemblyversion.hpp b/src/binder/inc/assemblyversion.hpp
index 1d5a6bb34c..20ef4ee48c 100644
--- a/src/binder/inc/assemblyversion.hpp
+++ b/src/binder/inc/assemblyversion.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// AssemblyVersion.hpp
diff --git a/src/binder/inc/assemblyversion.inl b/src/binder/inc/assemblyversion.inl
index a42990934d..795f8c1765 100644
--- a/src/binder/inc/assemblyversion.inl
+++ b/src/binder/inc/assemblyversion.inl
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// AssemblyVersion.inl
diff --git a/src/binder/inc/binderinterface.hpp b/src/binder/inc/binderinterface.hpp
index 381dc740af..a9f0c210ff 100644
--- a/src/binder/inc/binderinterface.hpp
+++ b/src/binder/inc/binderinterface.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// BinderInterface.hpp
diff --git a/src/binder/inc/bindertypes.hpp b/src/binder/inc/bindertypes.hpp
index 6fc4574e0f..7d7e822871 100644
--- a/src/binder/inc/bindertypes.hpp
+++ b/src/binder/inc/bindertypes.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// BinderTypes.hpp
diff --git a/src/binder/inc/bindinglog.hpp b/src/binder/inc/bindinglog.hpp
index b2917f80dd..d1467ed5c4 100644
--- a/src/binder/inc/bindinglog.hpp
+++ b/src/binder/inc/bindinglog.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// BindingLog.hpp
diff --git a/src/binder/inc/bindinglog.inl b/src/binder/inc/bindinglog.inl
index 822f0e3b53..f342f618ea 100644
--- a/src/binder/inc/bindinglog.inl
+++ b/src/binder/inc/bindinglog.inl
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// BindingLog.inl
diff --git a/src/binder/inc/bindresult.hpp b/src/binder/inc/bindresult.hpp
index 83a9b8cf26..54d154a009 100644
--- a/src/binder/inc/bindresult.hpp
+++ b/src/binder/inc/bindresult.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// BindResult.hpp
diff --git a/src/binder/inc/bindresult.inl b/src/binder/inc/bindresult.inl
index a9bee03360..8e94e85c4f 100644
--- a/src/binder/inc/bindresult.inl
+++ b/src/binder/inc/bindresult.inl
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// BindResult.inl
diff --git a/src/binder/inc/cdebuglog.hpp b/src/binder/inc/cdebuglog.hpp
index ff3092e418..37e1bc65b9 100644
--- a/src/binder/inc/cdebuglog.hpp
+++ b/src/binder/inc/cdebuglog.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// CDebugLog.hpp
diff --git a/src/binder/inc/clrprivbinderassemblyloadcontext.h b/src/binder/inc/clrprivbinderassemblyloadcontext.h
index c6f8a6ecfe..91a4b6e0b7 100644
--- a/src/binder/inc/clrprivbinderassemblyloadcontext.h
+++ b/src/binder/inc/clrprivbinderassemblyloadcontext.h
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
#ifndef __CLRPRIVBINDERASSEMBLYLOADCONTEXT_H__
diff --git a/src/binder/inc/clrprivbindercoreclr.h b/src/binder/inc/clrprivbindercoreclr.h
index a9904e35c0..250c3f8589 100644
--- a/src/binder/inc/clrprivbindercoreclr.h
+++ b/src/binder/inc/clrprivbindercoreclr.h
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
#ifndef __CLR_PRIV_BINDER_CORECLR_H__
diff --git a/src/binder/inc/compatibility.hpp b/src/binder/inc/compatibility.hpp
index 7e7000ebf1..80ee20657b 100644
--- a/src/binder/inc/compatibility.hpp
+++ b/src/binder/inc/compatibility.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// Compatibility.hpp
diff --git a/src/binder/inc/contextentry.hpp b/src/binder/inc/contextentry.hpp
index 4a9c9277c5..d35f57b0ca 100644
--- a/src/binder/inc/contextentry.hpp
+++ b/src/binder/inc/contextentry.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// ContextEntry.hpp
diff --git a/src/binder/inc/coreclrbindercommon.h b/src/binder/inc/coreclrbindercommon.h
index 3049d7fc9b..66166d6fd2 100644
--- a/src/binder/inc/coreclrbindercommon.h
+++ b/src/binder/inc/coreclrbindercommon.h
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
#ifndef __CORECLR_BINDER_COMMON_H__
diff --git a/src/binder/inc/debuglog.hpp b/src/binder/inc/debuglog.hpp
index 710b528f16..28de7f3267 100644
--- a/src/binder/inc/debuglog.hpp
+++ b/src/binder/inc/debuglog.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// DebugLog.hpp
diff --git a/src/binder/inc/failurecache.hpp b/src/binder/inc/failurecache.hpp
index da695ca0d3..3dbc3f611e 100644
--- a/src/binder/inc/failurecache.hpp
+++ b/src/binder/inc/failurecache.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// FailureCache.hpp
diff --git a/src/binder/inc/failurecachehashtraits.hpp b/src/binder/inc/failurecachehashtraits.hpp
index 5298280e79..7d65544ecc 100644
--- a/src/binder/inc/failurecachehashtraits.hpp
+++ b/src/binder/inc/failurecachehashtraits.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// FailureCache.hpp
diff --git a/src/binder/inc/fusionassemblyname.hpp b/src/binder/inc/fusionassemblyname.hpp
index c4a97f92c6..f0f69d3274 100644
--- a/src/binder/inc/fusionassemblyname.hpp
+++ b/src/binder/inc/fusionassemblyname.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// FusionAssemblyName.hpp
diff --git a/src/binder/inc/fusionhelpers.hpp b/src/binder/inc/fusionhelpers.hpp
index cb749559e6..229ebe6c4e 100644
--- a/src/binder/inc/fusionhelpers.hpp
+++ b/src/binder/inc/fusionhelpers.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// FusionHelpers.hpp
diff --git a/src/binder/inc/list.hpp b/src/binder/inc/list.hpp
index e436484670..91ecd1752b 100644
--- a/src/binder/inc/list.hpp
+++ b/src/binder/inc/list.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// List.hpp
diff --git a/src/binder/inc/loadcontext.hpp b/src/binder/inc/loadcontext.hpp
index c4e0fc6361..5a403a7542 100644
--- a/src/binder/inc/loadcontext.hpp
+++ b/src/binder/inc/loadcontext.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// LoadContext.hpp
diff --git a/src/binder/inc/loadcontext.inl b/src/binder/inc/loadcontext.inl
index b8002e03cc..c584f8d6ef 100644
--- a/src/binder/inc/loadcontext.inl
+++ b/src/binder/inc/loadcontext.inl
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// LoadContext.inl
diff --git a/src/binder/inc/propertyhashtraits.hpp b/src/binder/inc/propertyhashtraits.hpp
index 0616db3f89..c35d5f0dfe 100644
--- a/src/binder/inc/propertyhashtraits.hpp
+++ b/src/binder/inc/propertyhashtraits.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// PropertyMap.hpp
diff --git a/src/binder/inc/propertymap.hpp b/src/binder/inc/propertymap.hpp
index d2ac2e6575..38a8890dcc 100644
--- a/src/binder/inc/propertymap.hpp
+++ b/src/binder/inc/propertymap.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// PropertyMap.hpp
diff --git a/src/binder/inc/stringlexer.hpp b/src/binder/inc/stringlexer.hpp
index 4dca5a6593..257b883c51 100644
--- a/src/binder/inc/stringlexer.hpp
+++ b/src/binder/inc/stringlexer.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// StringLexer.hpp
diff --git a/src/binder/inc/stringlexer.inl b/src/binder/inc/stringlexer.inl
index 134345d874..f8bc3816a4 100644
--- a/src/binder/inc/stringlexer.inl
+++ b/src/binder/inc/stringlexer.inl
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// StringLexer.inl
diff --git a/src/binder/inc/textualidentityparser.hpp b/src/binder/inc/textualidentityparser.hpp
index fb9ff4d81a..02af033cfb 100644
--- a/src/binder/inc/textualidentityparser.hpp
+++ b/src/binder/inc/textualidentityparser.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// TextualIdentityParser.hpp
diff --git a/src/binder/inc/utils.hpp b/src/binder/inc/utils.hpp
index 7bd0bf2f4f..8b65fd8c12 100644
--- a/src/binder/inc/utils.hpp
+++ b/src/binder/inc/utils.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// Utils.hpp
diff --git a/src/binder/inc/variables.hpp b/src/binder/inc/variables.hpp
index 3a681edc97..d2cf742a23 100644
--- a/src/binder/inc/variables.hpp
+++ b/src/binder/inc/variables.hpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// Variables.hpp
diff --git a/src/binder/propertymap.cpp b/src/binder/propertymap.cpp
index 36c47ac7a8..b942b4b765 100644
--- a/src/binder/propertymap.cpp
+++ b/src/binder/propertymap.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// PropertyMap.cpp
diff --git a/src/binder/stringlexer.cpp b/src/binder/stringlexer.cpp
index 78c26dfee2..ebecd70058 100644
--- a/src/binder/stringlexer.cpp
+++ b/src/binder/stringlexer.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// StringLexer.cpp
diff --git a/src/binder/textualidentityparser.cpp b/src/binder/textualidentityparser.cpp
index 2162629d93..eb6e371afe 100644
--- a/src/binder/textualidentityparser.cpp
+++ b/src/binder/textualidentityparser.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// TextualIdentityParser.cpp
diff --git a/src/binder/utils.cpp b/src/binder/utils.cpp
index a6a506d937..a6853c86e1 100644
--- a/src/binder/utils.cpp
+++ b/src/binder/utils.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// Utils.cpp
diff --git a/src/binder/variables.cpp b/src/binder/variables.cpp
index b2c56550e1..5d31d85a55 100644
--- a/src/binder/variables.cpp
+++ b/src/binder/variables.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full 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.
// ============================================================
//
// Variables.cpp