From 13e7f19e3d5f18b5408dbd90841cc283595bc89d Mon Sep 17 00:00:00 2001 From: Swaroop Sridhar Date: Mon, 9 Mar 2020 18:48:00 -0700 Subject: [PATCH] Add License Header to Installer Test Assets (#33408) D:\git\_runtime\src\installer\test\Assets\TestProjects\... files were missing licence headers. This change adds them. --- .../test/Assets/TestProjects/AppWithSubDirs/Program.cs | 4 ++++ .../test/Assets/TestProjects/AppWithWait/Program.cs | 4 ++++ .../test/Assets/TestProjects/ComLibrary/ComLibrary.cs | 4 ++++ .../ComLibraryConflictingGuid/ComLibraryConflictingGuid.cs | 4 ++++ .../ComLibraryMissingGuid/ComLibraryMissingGuid.cs | 4 ++++ .../TestProjects/ComponentWithNoDependencies/Component.cs | 4 ++++ .../test/Assets/TestProjects/HostApiInvokerApp/HostFXR.cs | 4 ++++ .../Assets/TestProjects/HostApiInvokerApp/HostPolicy.cs | 4 ++++ .../test/Assets/TestProjects/HostApiInvokerApp/Program.cs | 4 ++++ .../test/Assets/TestProjects/HostApiInvokerApp/Utils.cs | 4 ++++ .../test/Assets/TestProjects/LightupClient/Program.cs | 4 ++++ .../test/Assets/TestProjects/LightupLib/Program.cs | 4 ++++ .../test/Assets/TestProjects/PortableApp/Program.cs | 4 ++++ .../Assets/TestProjects/PortableAppWithException/Program.cs | 4 ++++ .../Assets/TestProjects/PortableAppWithLongPath/Program.cs | 4 ++++ .../TestProjects/PortableAppWithMissingRef/Program.cs | 4 ++++ .../SharedLibrary/SharedLibrary.cs | 6 +++++- .../test/Assets/TestProjects/PortableTestApp/Program.cs | 4 ++++ .../test/Assets/TestProjects/ResourceLookup/Program.cs | 4 ++++ .../test/Assets/TestProjects/RuntimeProperties/Program.cs | 4 ++++ .../TestProjects/SharedFxLookupPortableApp/Program.cs | 4 ++++ .../test/Assets/TestProjects/StandaloneApp/Program.cs | 4 ++++ .../test/Assets/TestProjects/StandaloneApp20/Program.cs | 4 ++++ .../test/Assets/TestProjects/StandaloneApp21/Program.cs | 4 ++++ .../test/Assets/TestProjects/StandaloneTestApp/Program.cs | 4 ++++ .../test/Assets/TestProjects/StartupHook/StartupHook.cs | 4 ++++ .../SharedLibrary/SharedLibrary.cs | 4 ++++ .../StartupHookWithAssemblyResolver.cs | 4 ++++ .../StartupHookWithDependency/StartupHookWithDependency.cs | 4 ++++ .../StartupHookWithInstanceMethod.cs | 4 ++++ .../StartupHookWithMultipleIncorrectSignatures.cs | 4 ++++ .../StartupHookWithNonPublicMethod.cs | 4 ++++ .../StartupHookWithOverload/StartupHookWithOverload.cs | 4 ++++ .../StartupHookWithParameter/StartupHookWithParameter.cs | 4 ++++ .../StartupHookWithReturnType/StartupHookWithReturnType.cs | 4 ++++ .../StartupHookWithoutInitializeMethod.cs | 4 ++++ .../StartupHookWithoutStartupHookType.cs | 4 ++++ .../Assets/TestProjects/TestWindowsOsShimsApp/Program.cs | 4 ++++ 38 files changed, 153 insertions(+), 1 deletion(-) diff --git a/src/installer/test/Assets/TestProjects/AppWithSubDirs/Program.cs b/src/installer/test/Assets/TestProjects/AppWithSubDirs/Program.cs index 0ad18ac88b724..20c24839186eb 100644 --- a/src/installer/test/Assets/TestProjects/AppWithSubDirs/Program.cs +++ b/src/installer/test/Assets/TestProjects/AppWithSubDirs/Program.cs @@ -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.IO; using System.Reflection; diff --git a/src/installer/test/Assets/TestProjects/AppWithWait/Program.cs b/src/installer/test/Assets/TestProjects/AppWithWait/Program.cs index 220c3c6d0f560..f6f9749cb03b3 100644 --- a/src/installer/test/Assets/TestProjects/AppWithWait/Program.cs +++ b/src/installer/test/Assets/TestProjects/AppWithWait/Program.cs @@ -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.IO; using System.Threading; diff --git a/src/installer/test/Assets/TestProjects/ComLibrary/ComLibrary.cs b/src/installer/test/Assets/TestProjects/ComLibrary/ComLibrary.cs index 70e43e1bdfb19..addff5056d01b 100644 --- a/src/installer/test/Assets/TestProjects/ComLibrary/ComLibrary.cs +++ b/src/installer/test/Assets/TestProjects/ComLibrary/ComLibrary.cs @@ -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.InteropServices; diff --git a/src/installer/test/Assets/TestProjects/ComLibraryConflictingGuid/ComLibraryConflictingGuid.cs b/src/installer/test/Assets/TestProjects/ComLibraryConflictingGuid/ComLibraryConflictingGuid.cs index e40a7181c625f..82faeb1a34236 100644 --- a/src/installer/test/Assets/TestProjects/ComLibraryConflictingGuid/ComLibraryConflictingGuid.cs +++ b/src/installer/test/Assets/TestProjects/ComLibraryConflictingGuid/ComLibraryConflictingGuid.cs @@ -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.InteropServices; diff --git a/src/installer/test/Assets/TestProjects/ComLibraryMissingGuid/ComLibraryMissingGuid.cs b/src/installer/test/Assets/TestProjects/ComLibraryMissingGuid/ComLibraryMissingGuid.cs index daefe7b4c0469..fd813da88cc5f 100644 --- a/src/installer/test/Assets/TestProjects/ComLibraryMissingGuid/ComLibraryMissingGuid.cs +++ b/src/installer/test/Assets/TestProjects/ComLibraryMissingGuid/ComLibraryMissingGuid.cs @@ -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.InteropServices; diff --git a/src/installer/test/Assets/TestProjects/ComponentWithNoDependencies/Component.cs b/src/installer/test/Assets/TestProjects/ComponentWithNoDependencies/Component.cs index 942484cda1057..a16cf7e668245 100644 --- a/src/installer/test/Assets/TestProjects/ComponentWithNoDependencies/Component.cs +++ b/src/installer/test/Assets/TestProjects/ComponentWithNoDependencies/Component.cs @@ -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; namespace Component diff --git a/src/installer/test/Assets/TestProjects/HostApiInvokerApp/HostFXR.cs b/src/installer/test/Assets/TestProjects/HostApiInvokerApp/HostFXR.cs index e34852812900e..bcbe6b178e3b4 100644 --- a/src/installer/test/Assets/TestProjects/HostApiInvokerApp/HostFXR.cs +++ b/src/installer/test/Assets/TestProjects/HostApiInvokerApp/HostFXR.cs @@ -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.Runtime.InteropServices; diff --git a/src/installer/test/Assets/TestProjects/HostApiInvokerApp/HostPolicy.cs b/src/installer/test/Assets/TestProjects/HostApiInvokerApp/HostPolicy.cs index 06a7eb7e7040a..5826fa1245c9d 100644 --- a/src/installer/test/Assets/TestProjects/HostApiInvokerApp/HostPolicy.cs +++ b/src/installer/test/Assets/TestProjects/HostApiInvokerApp/HostPolicy.cs @@ -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.IO; diff --git a/src/installer/test/Assets/TestProjects/HostApiInvokerApp/Program.cs b/src/installer/test/Assets/TestProjects/HostApiInvokerApp/Program.cs index ff2af229306ed..ffe5db339ff85 100644 --- a/src/installer/test/Assets/TestProjects/HostApiInvokerApp/Program.cs +++ b/src/installer/test/Assets/TestProjects/HostApiInvokerApp/Program.cs @@ -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.Runtime.InteropServices; diff --git a/src/installer/test/Assets/TestProjects/HostApiInvokerApp/Utils.cs b/src/installer/test/Assets/TestProjects/HostApiInvokerApp/Utils.cs index 103e79c4a0ceb..6b69d3737c3e4 100644 --- a/src/installer/test/Assets/TestProjects/HostApiInvokerApp/Utils.cs +++ b/src/installer/test/Assets/TestProjects/HostApiInvokerApp/Utils.cs @@ -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.Runtime.InteropServices; diff --git a/src/installer/test/Assets/TestProjects/LightupClient/Program.cs b/src/installer/test/Assets/TestProjects/LightupClient/Program.cs index c9ae504fc467c..864cff0935f82 100644 --- a/src/installer/test/Assets/TestProjects/LightupClient/Program.cs +++ b/src/installer/test/Assets/TestProjects/LightupClient/Program.cs @@ -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.IO; using System.Reflection; diff --git a/src/installer/test/Assets/TestProjects/LightupLib/Program.cs b/src/installer/test/Assets/TestProjects/LightupLib/Program.cs index d40468ccce913..fbd89fe4c004b 100644 --- a/src/installer/test/Assets/TestProjects/LightupLib/Program.cs +++ b/src/installer/test/Assets/TestProjects/LightupLib/Program.cs @@ -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.Reflection; diff --git a/src/installer/test/Assets/TestProjects/PortableApp/Program.cs b/src/installer/test/Assets/TestProjects/PortableApp/Program.cs index 698eaa46279ba..70117514e89fa 100644 --- a/src/installer/test/Assets/TestProjects/PortableApp/Program.cs +++ b/src/installer/test/Assets/TestProjects/PortableApp/Program.cs @@ -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; namespace PortableApp diff --git a/src/installer/test/Assets/TestProjects/PortableAppWithException/Program.cs b/src/installer/test/Assets/TestProjects/PortableAppWithException/Program.cs index 4415189d91070..ba28d518730ce 100644 --- a/src/installer/test/Assets/TestProjects/PortableAppWithException/Program.cs +++ b/src/installer/test/Assets/TestProjects/PortableAppWithException/Program.cs @@ -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; namespace PortableAppWithException diff --git a/src/installer/test/Assets/TestProjects/PortableAppWithLongPath/Program.cs b/src/installer/test/Assets/TestProjects/PortableAppWithLongPath/Program.cs index 18107783b5a0e..ec62b4984f91f 100644 --- a/src/installer/test/Assets/TestProjects/PortableAppWithLongPath/Program.cs +++ b/src/installer/test/Assets/TestProjects/PortableAppWithLongPath/Program.cs @@ -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.IO; using System.Runtime.InteropServices; diff --git a/src/installer/test/Assets/TestProjects/PortableAppWithMissingRef/Program.cs b/src/installer/test/Assets/TestProjects/PortableAppWithMissingRef/Program.cs index e38f53735c654..84bf48564c467 100644 --- a/src/installer/test/Assets/TestProjects/PortableAppWithMissingRef/Program.cs +++ b/src/installer/test/Assets/TestProjects/PortableAppWithMissingRef/Program.cs @@ -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 SharedLibrary; diff --git a/src/installer/test/Assets/TestProjects/PortableAppWithMissingRef/SharedLibrary/SharedLibrary.cs b/src/installer/test/Assets/TestProjects/PortableAppWithMissingRef/SharedLibrary/SharedLibrary.cs index 6a11a3b709eeb..4d0f6a92de27e 100644 --- a/src/installer/test/Assets/TestProjects/PortableAppWithMissingRef/SharedLibrary/SharedLibrary.cs +++ b/src/installer/test/Assets/TestProjects/PortableAppWithMissingRef/SharedLibrary/SharedLibrary.cs @@ -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; namespace SharedLibrary { diff --git a/src/installer/test/Assets/TestProjects/PortableTestApp/Program.cs b/src/installer/test/Assets/TestProjects/PortableTestApp/Program.cs index 2b24cbf7cb116..ab1b403e43a0f 100644 --- a/src/installer/test/Assets/TestProjects/PortableTestApp/Program.cs +++ b/src/installer/test/Assets/TestProjects/PortableTestApp/Program.cs @@ -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 Xunit; diff --git a/src/installer/test/Assets/TestProjects/ResourceLookup/Program.cs b/src/installer/test/Assets/TestProjects/ResourceLookup/Program.cs index a8dcbdd72317a..2ff9021b602c4 100644 --- a/src/installer/test/Assets/TestProjects/ResourceLookup/Program.cs +++ b/src/installer/test/Assets/TestProjects/ResourceLookup/Program.cs @@ -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; namespace ResourceLookup diff --git a/src/installer/test/Assets/TestProjects/RuntimeProperties/Program.cs b/src/installer/test/Assets/TestProjects/RuntimeProperties/Program.cs index 957fb2e10a77e..d34be002d7829 100644 --- a/src/installer/test/Assets/TestProjects/RuntimeProperties/Program.cs +++ b/src/installer/test/Assets/TestProjects/RuntimeProperties/Program.cs @@ -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; namespace RuntimeProperties diff --git a/src/installer/test/Assets/TestProjects/SharedFxLookupPortableApp/Program.cs b/src/installer/test/Assets/TestProjects/SharedFxLookupPortableApp/Program.cs index affac621217c4..6c0e33b99d4a1 100644 --- a/src/installer/test/Assets/TestProjects/SharedFxLookupPortableApp/Program.cs +++ b/src/installer/test/Assets/TestProjects/SharedFxLookupPortableApp/Program.cs @@ -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; namespace SharedFxLookupPortableApp diff --git a/src/installer/test/Assets/TestProjects/StandaloneApp/Program.cs b/src/installer/test/Assets/TestProjects/StandaloneApp/Program.cs index a20659e2f9a0b..dca0b185f29bb 100644 --- a/src/installer/test/Assets/TestProjects/StandaloneApp/Program.cs +++ b/src/installer/test/Assets/TestProjects/StandaloneApp/Program.cs @@ -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; namespace StandaloneApp diff --git a/src/installer/test/Assets/TestProjects/StandaloneApp20/Program.cs b/src/installer/test/Assets/TestProjects/StandaloneApp20/Program.cs index 4dd9b9cf7c7ab..787bc61f9511b 100644 --- a/src/installer/test/Assets/TestProjects/StandaloneApp20/Program.cs +++ b/src/installer/test/Assets/TestProjects/StandaloneApp20/Program.cs @@ -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; namespace StandaloneApp diff --git a/src/installer/test/Assets/TestProjects/StandaloneApp21/Program.cs b/src/installer/test/Assets/TestProjects/StandaloneApp21/Program.cs index 4dd9b9cf7c7ab..787bc61f9511b 100644 --- a/src/installer/test/Assets/TestProjects/StandaloneApp21/Program.cs +++ b/src/installer/test/Assets/TestProjects/StandaloneApp21/Program.cs @@ -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; namespace StandaloneApp diff --git a/src/installer/test/Assets/TestProjects/StandaloneTestApp/Program.cs b/src/installer/test/Assets/TestProjects/StandaloneTestApp/Program.cs index 013cf4f51690f..a933fff020828 100644 --- a/src/installer/test/Assets/TestProjects/StandaloneTestApp/Program.cs +++ b/src/installer/test/Assets/TestProjects/StandaloneTestApp/Program.cs @@ -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 Xunit; diff --git a/src/installer/test/Assets/TestProjects/StartupHook/StartupHook.cs b/src/installer/test/Assets/TestProjects/StartupHook/StartupHook.cs index 6c2ebb9c5a000..7a044f590a385 100644 --- a/src/installer/test/Assets/TestProjects/StartupHook/StartupHook.cs +++ b/src/installer/test/Assets/TestProjects/StartupHook/StartupHook.cs @@ -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; internal class StartupHook diff --git a/src/installer/test/Assets/TestProjects/StartupHookWithAssemblyResolver/SharedLibrary/SharedLibrary.cs b/src/installer/test/Assets/TestProjects/StartupHookWithAssemblyResolver/SharedLibrary/SharedLibrary.cs index f5e1599cebfd7..fc5d74070059e 100644 --- a/src/installer/test/Assets/TestProjects/StartupHookWithAssemblyResolver/SharedLibrary/SharedLibrary.cs +++ b/src/installer/test/Assets/TestProjects/StartupHookWithAssemblyResolver/SharedLibrary/SharedLibrary.cs @@ -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 SharedLibrary { public class SharedType diff --git a/src/installer/test/Assets/TestProjects/StartupHookWithAssemblyResolver/StartupHookWithAssemblyResolver.cs b/src/installer/test/Assets/TestProjects/StartupHookWithAssemblyResolver/StartupHookWithAssemblyResolver.cs index caf14e586e17f..2dfb194d48bcc 100644 --- a/src/installer/test/Assets/TestProjects/StartupHookWithAssemblyResolver/StartupHookWithAssemblyResolver.cs +++ b/src/installer/test/Assets/TestProjects/StartupHookWithAssemblyResolver/StartupHookWithAssemblyResolver.cs @@ -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.IO; using System.Reflection; diff --git a/src/installer/test/Assets/TestProjects/StartupHookWithDependency/StartupHookWithDependency.cs b/src/installer/test/Assets/TestProjects/StartupHookWithDependency/StartupHookWithDependency.cs index bd04c4a3984fa..455b1e8d684c0 100644 --- a/src/installer/test/Assets/TestProjects/StartupHookWithDependency/StartupHookWithDependency.cs +++ b/src/installer/test/Assets/TestProjects/StartupHookWithDependency/StartupHookWithDependency.cs @@ -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; internal class StartupHook diff --git a/src/installer/test/Assets/TestProjects/StartupHookWithInstanceMethod/StartupHookWithInstanceMethod.cs b/src/installer/test/Assets/TestProjects/StartupHookWithInstanceMethod/StartupHookWithInstanceMethod.cs index f369d47037b95..c9a9d3440ae56 100644 --- a/src/installer/test/Assets/TestProjects/StartupHookWithInstanceMethod/StartupHookWithInstanceMethod.cs +++ b/src/installer/test/Assets/TestProjects/StartupHookWithInstanceMethod/StartupHookWithInstanceMethod.cs @@ -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; internal class StartupHook diff --git a/src/installer/test/Assets/TestProjects/StartupHookWithMultipleIncorrectSignatures/StartupHookWithMultipleIncorrectSignatures.cs b/src/installer/test/Assets/TestProjects/StartupHookWithMultipleIncorrectSignatures/StartupHookWithMultipleIncorrectSignatures.cs index 5b94f7e30b86f..11272044a4844 100644 --- a/src/installer/test/Assets/TestProjects/StartupHookWithMultipleIncorrectSignatures/StartupHookWithMultipleIncorrectSignatures.cs +++ b/src/installer/test/Assets/TestProjects/StartupHookWithMultipleIncorrectSignatures/StartupHookWithMultipleIncorrectSignatures.cs @@ -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; internal class StartupHook diff --git a/src/installer/test/Assets/TestProjects/StartupHookWithNonPublicMethod/StartupHookWithNonPublicMethod.cs b/src/installer/test/Assets/TestProjects/StartupHookWithNonPublicMethod/StartupHookWithNonPublicMethod.cs index 125fce5f7d7d2..121e6bae27c7b 100644 --- a/src/installer/test/Assets/TestProjects/StartupHookWithNonPublicMethod/StartupHookWithNonPublicMethod.cs +++ b/src/installer/test/Assets/TestProjects/StartupHookWithNonPublicMethod/StartupHookWithNonPublicMethod.cs @@ -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; internal class StartupHook diff --git a/src/installer/test/Assets/TestProjects/StartupHookWithOverload/StartupHookWithOverload.cs b/src/installer/test/Assets/TestProjects/StartupHookWithOverload/StartupHookWithOverload.cs index 2fffd46c7ac41..9253012e89af7 100644 --- a/src/installer/test/Assets/TestProjects/StartupHookWithOverload/StartupHookWithOverload.cs +++ b/src/installer/test/Assets/TestProjects/StartupHookWithOverload/StartupHookWithOverload.cs @@ -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; internal class StartupHook diff --git a/src/installer/test/Assets/TestProjects/StartupHookWithParameter/StartupHookWithParameter.cs b/src/installer/test/Assets/TestProjects/StartupHookWithParameter/StartupHookWithParameter.cs index c89eb2913f4e8..920b9bcf76405 100644 --- a/src/installer/test/Assets/TestProjects/StartupHookWithParameter/StartupHookWithParameter.cs +++ b/src/installer/test/Assets/TestProjects/StartupHookWithParameter/StartupHookWithParameter.cs @@ -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; internal class StartupHook diff --git a/src/installer/test/Assets/TestProjects/StartupHookWithReturnType/StartupHookWithReturnType.cs b/src/installer/test/Assets/TestProjects/StartupHookWithReturnType/StartupHookWithReturnType.cs index a0853cc24da48..ae0f553355dea 100644 --- a/src/installer/test/Assets/TestProjects/StartupHookWithReturnType/StartupHookWithReturnType.cs +++ b/src/installer/test/Assets/TestProjects/StartupHookWithReturnType/StartupHookWithReturnType.cs @@ -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; internal class StartupHook diff --git a/src/installer/test/Assets/TestProjects/StartupHookWithoutInitializeMethod/StartupHookWithoutInitializeMethod.cs b/src/installer/test/Assets/TestProjects/StartupHookWithoutInitializeMethod/StartupHookWithoutInitializeMethod.cs index 5fcbb8f909ac0..b90adf9f6515e 100644 --- a/src/installer/test/Assets/TestProjects/StartupHookWithoutInitializeMethod/StartupHookWithoutInitializeMethod.cs +++ b/src/installer/test/Assets/TestProjects/StartupHookWithoutInitializeMethod/StartupHookWithoutInitializeMethod.cs @@ -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; internal class StartupHook diff --git a/src/installer/test/Assets/TestProjects/StartupHookWithoutStartupHookType/StartupHookWithoutStartupHookType.cs b/src/installer/test/Assets/TestProjects/StartupHookWithoutStartupHookType/StartupHookWithoutStartupHookType.cs index 71bb435d3fb93..29e3ecd5559d1 100644 --- a/src/installer/test/Assets/TestProjects/StartupHookWithoutStartupHookType/StartupHookWithoutStartupHookType.cs +++ b/src/installer/test/Assets/TestProjects/StartupHookWithoutStartupHookType/StartupHookWithoutStartupHookType.cs @@ -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; internal class StartupHookWrongType diff --git a/src/installer/test/Assets/TestProjects/TestWindowsOsShimsApp/Program.cs b/src/installer/test/Assets/TestProjects/TestWindowsOsShimsApp/Program.cs index 79238addbf9aa..23ad2c2f5d143 100644 --- a/src/installer/test/Assets/TestProjects/TestWindowsOsShimsApp/Program.cs +++ b/src/installer/test/Assets/TestProjects/TestWindowsOsShimsApp/Program.cs @@ -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.InteropServices;