summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2015-04-17 00:00:58 +0200
committerJan Vorlicek <janvorli@microsoft.com>2015-04-17 00:00:58 +0200
commitb5ce2e632028bece2cd56412eed12b1f6c5b0e2d (patch)
treef4431d9f85b106313beae3ce201ede8a870186d0
parentbaa57a0bd737d2cb43bd947274a552d3f0b7c202 (diff)
downloadcoreclr-b5ce2e632028bece2cd56412eed12b1f6c5b0e2d.tar.gz
coreclr-b5ce2e632028bece2cd56412eed12b1f6c5b0e2d.tar.bz2
coreclr-b5ce2e632028bece2cd56412eed12b1f6c5b0e2d.zip
Add missing MIT license headers
.rc and .def files were missing the MIT license headers, so this change adds them.
-rw-r--r--src/ToolBox/SOS/Strike/ApolloNative.rc9
-rw-r--r--src/ToolBox/SOS/Strike/Native.rc9
-rw-r--r--src/ToolBox/SOS/Strike/sos.def9
-rw-r--r--src/coreclr/hosts/coreconsole/native.rc5
-rw-r--r--src/coreclr/hosts/corerun/native.rc5
-rw-r--r--src/dlls/clretwrc/clretwrc.rc5
-rw-r--r--src/dlls/dbgshim/dbgshim.rc9
-rw-r--r--src/dlls/mscordac/Native.rc9
-rw-r--r--src/dlls/mscordbi/Native.rc9
-rw-r--r--src/dlls/mscoree/Native.rc9
-rw-r--r--src/dlls/mscorrc/fuslog.rc9
-rw-r--r--src/dlls/mscorrc/include.rc9
-rw-r--r--src/dlls/mscorrc/mscorrc.common.rc5
-rw-r--r--src/dlls/mscorrc/mscorrc.rc10
-rw-r--r--src/dlls/mscorrc/mscorrc.small.rc10
-rw-r--r--src/dlls/mscorrc/nativelog.rc9
-rw-r--r--src/inc/CrstTypes.def5
-rw-r--r--src/inc/cordebug_mktlb.rc9
-rw-r--r--src/inc/metahost_mktlb.rc9
-rw-r--r--src/inc/mscoree_mktlb.rc9
-rw-r--r--src/inc/opcode.def10
-rw-r--r--src/jit/Native.rc5
-rw-r--r--src/jit/smopcode.def6
-rw-r--r--src/jit/smopcodemap.def10
-rw-r--r--src/mscorlib/Tools/Versioning/NativeVersion.rc5
-rw-r--r--src/pal/prebuilt/corerror/mscorurt.rc5
-rw-r--r--src/tools/crossgen/Native.rc5
27 files changed, 117 insertions, 91 deletions
diff --git a/src/ToolBox/SOS/Strike/ApolloNative.rc b/src/ToolBox/SOS/Strike/ApolloNative.rc
index 3c8817facc..b950a3b2bb 100644
--- a/src/ToolBox/SOS/Strike/ApolloNative.rc
+++ b/src/ToolBox/SOS/Strike/ApolloNative.rc
@@ -1,8 +1,7 @@
-// ==++==
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-//
-// ==--==
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
#define FX_VER_FILEDESCRIPTION_STR "Microsoft NTSD extension for .NET Runtime\0"
diff --git a/src/ToolBox/SOS/Strike/Native.rc b/src/ToolBox/SOS/Strike/Native.rc
index a9493133b3..53eda42688 100644
--- a/src/ToolBox/SOS/Strike/Native.rc
+++ b/src/ToolBox/SOS/Strike/Native.rc
@@ -1,8 +1,7 @@
-// ==++==
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-//
-// ==--==
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
#define FX_VER_FILEDESCRIPTION_STR "Microsoft NTSD extension for .NET Runtime\0"
diff --git a/src/ToolBox/SOS/Strike/sos.def b/src/ToolBox/SOS/Strike/sos.def
index dee2f630b0..e7a7ff9c7a 100644
--- a/src/ToolBox/SOS/Strike/sos.def
+++ b/src/ToolBox/SOS/Strike/sos.def
@@ -1,8 +1,7 @@
-; ==++==
-;
-; Copyright (c) Microsoft Corporation. All rights reserved.
-;
-; ==--==
+;
+; Copyright (c) Microsoft. All rights reserved.
+; Licensed under the MIT license. See LICENSE file in the project root for full license information.
+;
LIBRARY STRIKE
EXPORTS
AnalyzeOOM
diff --git a/src/coreclr/hosts/coreconsole/native.rc b/src/coreclr/hosts/coreconsole/native.rc
index dff3be684a..b5188b2aab 100644
--- a/src/coreclr/hosts/coreconsole/native.rc
+++ b/src/coreclr/hosts/coreconsole/native.rc
@@ -1,3 +1,8 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
#define FX_VER_FILEDESCRIPTION_STR "Microsoft CoreCLR Program launcher\0"
#include <fxver.h>
diff --git a/src/coreclr/hosts/corerun/native.rc b/src/coreclr/hosts/corerun/native.rc
index 540c000069..fab623a61b 100644
--- a/src/coreclr/hosts/corerun/native.rc
+++ b/src/coreclr/hosts/corerun/native.rc
@@ -1,3 +1,8 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
#define FX_VER_FILEDESCRIPTION_STR "Microsoft CoreCLR EXE launcher\0"
#include <fxver.h>
diff --git a/src/dlls/clretwrc/clretwrc.rc b/src/dlls/clretwrc/clretwrc.rc
index 13eb36969c..c6eb0068c9 100644
--- a/src/dlls/clretwrc/clretwrc.rc
+++ b/src/dlls/clretwrc/clretwrc.rc
@@ -1,3 +1,8 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
#define FX_VER_FILEDESCRIPTION_STR "Microsoft .NET Runtime resources\0"
#include <fxver.h>
diff --git a/src/dlls/dbgshim/dbgshim.rc b/src/dlls/dbgshim/dbgshim.rc
index e37f67eb0d..277c831aac 100644
--- a/src/dlls/dbgshim/dbgshim.rc
+++ b/src/dlls/dbgshim/dbgshim.rc
@@ -1,8 +1,7 @@
-// ==++==
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-//
-// ==--==
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
#include "resource.h"
diff --git a/src/dlls/mscordac/Native.rc b/src/dlls/mscordac/Native.rc
index d06d367b8a..57108f08ce 100644
--- a/src/dlls/mscordac/Native.rc
+++ b/src/dlls/mscordac/Native.rc
@@ -1,8 +1,7 @@
-// ==++==
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-//
-// ==--==
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
#define FX_VER_FILEDESCRIPTION_STR "Microsoft .NET External Data Access Support\0"
diff --git a/src/dlls/mscordbi/Native.rc b/src/dlls/mscordbi/Native.rc
index 41990245e6..d839d459a7 100644
--- a/src/dlls/mscordbi/Native.rc
+++ b/src/dlls/mscordbi/Native.rc
@@ -1,8 +1,7 @@
-// ==++==
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-//
-// ==--==
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
#define FX_VER_FILEDESCRIPTION_STR "Microsoft .NET Runtime Debugging Services\0"
diff --git a/src/dlls/mscoree/Native.rc b/src/dlls/mscoree/Native.rc
index 431f7c2012..ea9ff4c382 100644
--- a/src/dlls/mscoree/Native.rc
+++ b/src/dlls/mscoree/Native.rc
@@ -1,8 +1,7 @@
-// ==++==
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-//
-// ==--==
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
#define FX_VER_FILEDESCRIPTION_STR "Microsoft .NET Runtime Common Language Runtime - WorkStation\0"
diff --git a/src/dlls/mscorrc/fuslog.rc b/src/dlls/mscorrc/fuslog.rc
index bf68d58fb0..5934122773 100644
--- a/src/dlls/mscorrc/fuslog.rc
+++ b/src/dlls/mscorrc/fuslog.rc
@@ -1,8 +1,7 @@
-// ==++==
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-//
-// ==--==
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
#include "fusres.h"
#ifdef FEATURE_FUSION
diff --git a/src/dlls/mscorrc/include.rc b/src/dlls/mscorrc/include.rc
index c7e35bbae2..dc36074e86 100644
--- a/src/dlls/mscorrc/include.rc
+++ b/src/dlls/mscorrc/include.rc
@@ -1,8 +1,7 @@
-// ==++==
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-//
-// ==--==
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
#include "mscorrc.rc"
#include "fuslog.rc"
diff --git a/src/dlls/mscorrc/mscorrc.common.rc b/src/dlls/mscorrc/mscorrc.common.rc
index e8659c5897..47443a6b8a 100644
--- a/src/dlls/mscorrc/mscorrc.common.rc
+++ b/src/dlls/mscorrc/mscorrc.common.rc
@@ -1,3 +1,8 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
STRINGTABLE DISCARDABLE
BEGIN
IDS_EE_NAME_UNKNOWN_UNQ "<Unknown %1>"
diff --git a/src/dlls/mscorrc/mscorrc.rc b/src/dlls/mscorrc/mscorrc.rc
index 4650b5f19b..3bd4a7d38b 100644
--- a/src/dlls/mscorrc/mscorrc.rc
+++ b/src/dlls/mscorrc/mscorrc.rc
@@ -1,8 +1,8 @@
-// ==++==
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-//
-// ==--==
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
//Microsoft Developer Studio generated resource script.
//
#include "resource.h"
diff --git a/src/dlls/mscorrc/mscorrc.small.rc b/src/dlls/mscorrc/mscorrc.small.rc
index 21140c453c..e6f5709189 100644
--- a/src/dlls/mscorrc/mscorrc.small.rc
+++ b/src/dlls/mscorrc/mscorrc.small.rc
@@ -1,8 +1,8 @@
-// ==++==
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-//
-// ==--==
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
//Microsoft Developer Studio generated resource script.
//
#include "resource.h"
diff --git a/src/dlls/mscorrc/nativelog.rc b/src/dlls/mscorrc/nativelog.rc
index 31606ef497..a99a08eb8b 100644
--- a/src/dlls/mscorrc/nativelog.rc
+++ b/src/dlls/mscorrc/nativelog.rc
@@ -1,8 +1,7 @@
-// ==++==
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-//
-// ==--==
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
#include "nativeres.h"
#ifdef FEATURE_FUSION
diff --git a/src/inc/CrstTypes.def b/src/inc/CrstTypes.def
index 277095b00b..fe1da3eb4d 100644
--- a/src/inc/CrstTypes.def
+++ b/src/inc/CrstTypes.def
@@ -1,8 +1,7 @@
-// ==++==
//
-// Copyright (c) Microsoft Corporation. All rights reserved.
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
-// ==--==
//
// This file is used to describe the different types of Crst and their dependencies on other Crst types (in
diff --git a/src/inc/cordebug_mktlb.rc b/src/inc/cordebug_mktlb.rc
index a06877c781..adf90ff91b 100644
--- a/src/inc/cordebug_mktlb.rc
+++ b/src/inc/cordebug_mktlb.rc
@@ -1,8 +1,7 @@
-// ==++==
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-//
-// ==--==
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
#define FX_VER_FILEDESCRIPTION_STR "Microsoft .NET Runtime Debugging Interfaces\0"
#define FX_VER_INTERNALNAME_STR CORDEBUG.IDL
diff --git a/src/inc/metahost_mktlb.rc b/src/inc/metahost_mktlb.rc
index 2b20a1c551..ae868f1605 100644
--- a/src/inc/metahost_mktlb.rc
+++ b/src/inc/metahost_mktlb.rc
@@ -1,8 +1,7 @@
-// ==++==
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-//
-// ==--==
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
#define FX_VER_FILEDESCRIPTION_STR "Microsoft .NET Runtime Metahosting Interfaces\0"
#define FX_VER_INTERNALNAME_STR METAHOST.IDL
diff --git a/src/inc/mscoree_mktlb.rc b/src/inc/mscoree_mktlb.rc
index 00404dd31f..555dd5b3f9 100644
--- a/src/inc/mscoree_mktlb.rc
+++ b/src/inc/mscoree_mktlb.rc
@@ -1,8 +1,7 @@
-// ==++==
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-//
-// ==--==
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
#define FX_VER_FILEDESCRIPTION_STR "Microsoft .NET Runtime CLR Loading and Configuration Interfaces\0"
#define FX_VER_INTERNALNAME_STR MSCOREE.DLL
diff --git a/src/inc/opcode.def b/src/inc/opcode.def
index da51689089..151f6338c1 100644
--- a/src/inc/opcode.def
+++ b/src/inc/opcode.def
@@ -1,8 +1,8 @@
-// ==++==
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-//
-// ==--==
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
/*****************************************************************************
** **
** Opcode.def - COM+ Intrinsic Opcodes and Macros. **
diff --git a/src/jit/Native.rc b/src/jit/Native.rc
index 23e532af84..d6fb539cff 100644
--- a/src/jit/Native.rc
+++ b/src/jit/Native.rc
@@ -1,3 +1,8 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
#define FX_VER_FILEDESCRIPTION_STR "Microsoft .NET Runtime Just-In-Time Compiler\0"
#include <fxver.h>
diff --git a/src/jit/smopcode.def b/src/jit/smopcode.def
index fcd945f882..db9a6d7cb6 100644
--- a/src/jit/smopcode.def
+++ b/src/jit/smopcode.def
@@ -1,8 +1,8 @@
-// ==++==
//
-// Copyright (c) Microsoft Corporation. All rights reserved.
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
-// ==--==
+
/*******************************************************************************************
** **
** Auto-generated file. Do NOT modify! **
diff --git a/src/jit/smopcodemap.def b/src/jit/smopcodemap.def
index 5321d7a3b3..e3133f6095 100644
--- a/src/jit/smopcodemap.def
+++ b/src/jit/smopcodemap.def
@@ -1,8 +1,8 @@
-// ==++==
-//
-// Copyright (c) Microsoft Corporation. All rights reserved.
-//
-// ==--==
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
/*******************************************************************************************
** **
** OpcodeMap.def - Mapping between opcodes in EE to opcodes in the state machine in JIT. **
diff --git a/src/mscorlib/Tools/Versioning/NativeVersion.rc b/src/mscorlib/Tools/Versioning/NativeVersion.rc
index 35ae2043c2..98943f83bb 100644
--- a/src/mscorlib/Tools/Versioning/NativeVersion.rc
+++ b/src/mscorlib/Tools/Versioning/NativeVersion.rc
@@ -1,3 +1,8 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
#include "GeneratedVersion.h"
#include <windows.h>
diff --git a/src/pal/prebuilt/corerror/mscorurt.rc b/src/pal/prebuilt/corerror/mscorurt.rc
index f7a5e0601f..24e52f25e2 100644
--- a/src/pal/prebuilt/corerror/mscorurt.rc
+++ b/src/pal/prebuilt/corerror/mscorurt.rc
@@ -1,3 +1,8 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
STRINGTABLE DISCARDABLE
BEGIN
MSG_FOR_URT_HR(CORDBG_S_AT_END_OF_STACK) "The stack walk has reached the end of the stack. There are no more frames to walk."
diff --git a/src/tools/crossgen/Native.rc b/src/tools/crossgen/Native.rc
index c2eb725a5c..c1d6b938d3 100644
--- a/src/tools/crossgen/Native.rc
+++ b/src/tools/crossgen/Native.rc
@@ -1,3 +1,8 @@
+//
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
#define FX_VER_FILEDESCRIPTION_STR "Microsoft Common Language Runtime native cross compiler\0"
#include "..\..\dlls\mscorrc\mscorrc.rc"