1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-08 11:37:04 +09:00

Fix remaining license headers (#38953)

* Fix license in remainder of .cs files

* Fix license header in .vb files

* Fix license header in .py files

* Fix license headers in .c, .cpp, .h

* Fix licensing on .dat files

* Fix license header in generators

* Fix license headers in .asm

* Fix license headers in .xml

* Fix remainder of license headers

* Add license default to .editorconfig

* Add some missing headers

* Fix Doundation to Foundation in some license headers

* Add missing license headers under libraries
This commit is contained in:
Stephen Toub 2020-07-08 20:35:26 -04:00 committed by GitHub
parent b520e81cf1
commit cb1a7feaa4
Signed by: github
GPG key ID: 4AEE18F83AFDEB23
1370 changed files with 371 additions and 1685 deletions

View file

@ -157,6 +157,9 @@ csharp_space_between_square_brackets = false
dotnet_code_quality.ca1802.api_surface = private, internal
dotnet_code_quality.ca2208.api_surface = public
# License header
file_header_template = Licensed to the .NET Foundation under one or more agreements.\nThe .NET Foundation licenses this file to you under the MIT license.\n
# C++ Files
[*.{cpp,h,in}]
curly_bracket_next_line = true

View file

@ -2,7 +2,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.
#
##
# Title : coreclr_arguments.py

View file

@ -2,7 +2,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.
#
##
# Title : superpmi.py

View file

@ -101,7 +101,6 @@ namespace GenUnicodeProp
{
file.Write("// Licensed to the .NET Foundation under one or more agreements.\n");
file.Write("// The .NET Foundation licenses this file to you under the MIT license.\n");
file.Write("// See the LICENSE file in the project root for more information.\n\n");
file.Write("using System.Diagnostics;\n\n");

View file

@ -1,6 +1,5 @@
// 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 System.Runtime.InteropServices.ComTypes
{

View file

@ -1,6 +1,5 @@
// 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 System.Runtime.InteropServices.ComTypes
{

View file

@ -1,6 +1,5 @@
; 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.
;// ==++==
;//

View file

@ -1,6 +1,5 @@
; 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.
;; ==++==
;;

View file

@ -1,6 +1,5 @@
; 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.
;; ==++==
;;

View file

@ -1,6 +1,5 @@
; 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 AsmMacros.inc

View file

@ -804,7 +804,6 @@ namespace Amd64InstructionTableGenerator
Console.WriteLine("// Licensed to the .NET Foundation under one or more agreements.");
Console.WriteLine("// The .NET Foundation licenses this file to you under the MIT license.");
Console.WriteLine("// See the LICENSE file in the project root for more information.");
Console.WriteLine();
Console.WriteLine();
Console.WriteLine("// File machine generated. See gen_amd64InstrDecode/README.md");

View file

@ -1,6 +1,5 @@
; 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 "ksarm.h"
#include "asmconstants.h"

View file

@ -1,6 +1,5 @@
; 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 "ksarm64.h"
#include "asmconstants.h"

View file

@ -1,9 +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.
//*****************************************************************************
//
// File: DebuggerModule.cpp
//

View file

@ -1,6 +1,5 @@
; 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.
; ==++==
;

View file

@ -1,6 +1,5 @@
; 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.
EXPORTS
CreateProcessForLaunch

View file

@ -1,6 +1,5 @@
; 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.
CreateProcessForLaunch
ResumeProcess

View file

@ -1,6 +1,5 @@
; 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.
EXPORTS
DacDbiInterfaceInstance

View file

@ -1,6 +1,5 @@
; 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.
DacDbiInterfaceInstance
CLRDataCreateInstance

View file

@ -1,6 +1,5 @@
; 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.
LIBRARY mscordbi

View file

@ -1,6 +1,5 @@
; 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.
; COM-instantiation
DllGetClassObjectInternal

View file

@ -1,6 +1,5 @@
; 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.
EXPORTS
;

View file

@ -2,7 +2,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.
//
// File asmparse.y

View file

@ -1,6 +1,5 @@
# 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.
#
# a simple script that extracts the grammar from a yacc file

View file

@ -6,7 +6,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.
//
// File asmparse.y

View file

@ -132,7 +132,6 @@ class CrstTypeTool
writer.WriteLine("//");
writer.WriteLine("// Licensed to the .NET Foundation under one or more agreements.");
writer.WriteLine("// The .NET Foundation licenses this file to you under the MIT license.");
writer.WriteLine("// See the LICENSE file in the project root for more information.");
writer.WriteLine("//");
writer.WriteLine();
writer.WriteLine("#ifndef __CRST_TYPES_INCLUDED");

View file

@ -1,6 +1,5 @@
# 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.
#
# OpCodeGen.pl
#
@ -39,7 +38,6 @@ foreach $letter (@lowercaseAlphabet) {
$license = "// Licensed to the .NET Foundation under one or more agreements.\n";
$license .= "// The .NET Foundation licenses this file to you under the MIT license.\n";
$license .= "// See the LICENSE file in the project root for more information.\n\n";
$startHeaderComment = "/*============================================================\n**\n";
$endHeaderComment = "**\n** THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT BY HAND!\n";

View file

@ -1,7 +1,5 @@
// 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.
// DO NOT EDIT THIS FILE! IT IS AUTOGENERATED
// FROM /src/coreclr/src/tools/Common/JitInterface/ThunkGenerator/InstructionSetDesc.txt

View file

@ -1,8 +1,5 @@
//
// 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 __CRST_TYPES_INCLUDED
#define __CRST_TYPES_INCLUDED

View file

@ -157,7 +157,6 @@ public class GenerateHeaders {
private static void PrintLicenseHeader(StreamWriter SW) {
SW.WriteLine("// Licensed to the .NET Foundation under one or more agreements.");
SW.WriteLine("// The .NET Foundation licenses this file to you under the MIT license.");
SW.WriteLine("// See the LICENSE file in the project root for more information.");
SW.WriteLine();
}

View file

@ -1,6 +1,5 @@
# 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.
#
# GENREFOPS.PL
#

View file

@ -1,7 +1,5 @@
// 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.
// DO NOT EDIT THIS FILE! IT IS AUTOGENERATED
// FROM /src/coreclr/src/tools/Common/JitInterface/ThunkGenerator/InstructionSetDesc.txt

View file

@ -1,6 +1,5 @@
; 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.
EXPORTS
getJit

View file

@ -1,6 +1,5 @@
; 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.
EXPORTS
getJit
jitStartup

View file

@ -1,7 +1,5 @@
// 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 HARDWARE_INTRINSIC

View file

@ -1,6 +1,5 @@
; 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.
EXPORTS
getJit
jitStartup

View file

@ -1,6 +1,5 @@
; 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.
EXPORTS
getJit
jitStartup

View file

@ -1,6 +1,5 @@
; 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.
EXPORTS
getJit
jitStartup

View file

@ -1,7 +1,6 @@
@if "%_echo%"=="" echo off
REM Licensed to the .NET Foundation under one or more agreements.
REM The .NET Foundation licenses this file to you under the MIT license.
REM See the LICENSE file in the project root for more information.
setlocal
csc ..\..\..\inc\genheaders.cs

View file

@ -2,6 +2,5 @@
# 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.
echo mdtool_dummy : not generating any dependencies

View file

@ -2,7 +2,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.
#
# mdtool_gcc
#

View file

@ -1,6 +1,5 @@
// 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.
/*++

View file

@ -13,7 +13,6 @@ class Program
{
Console.WriteLine("// Licensed to the .NET Foundation under one or more agreements.");
Console.WriteLine("// The .NET Foundation licenses this file to you under the MIT license.");
Console.WriteLine("// See the LICENSE file in the project root for more information.");
Console.WriteLine();
Console.WriteLine("#include \"pal/unicodedata.h\"");

View file

@ -1,6 +1,5 @@
; 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.
===========================================================================

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

View file

@ -1,6 +1,5 @@
# 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.
Version = 1.0
Section = C Runtime

Some files were not shown because too many files have changed in this diff Show more