diff --git a/.editorconfig b/.editorconfig index cfb50819d..de6f8b652 100644 --- a/.editorconfig +++ b/.editorconfig @@ -119,7 +119,7 @@ dotnet_style_collection_initializer = true:suggestion dotnet_style_explicit_tuple_names = true:suggestion dotnet_style_null_propagation = true:suggestion dotnet_style_coalesce_expression = true:suggestion -dotnet_style_prefer_is_null_check_over_reference_equality_method = true:silent +dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion dotnet_style_prefer_inferred_tuple_names = true:suggestion dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion dotnet_style_prefer_auto_properties = true:silent @@ -192,7 +192,7 @@ csharp_new_line_between_query_expression_clauses = true # Indentation preferences csharp_indent_case_contents = true csharp_indent_switch_labels = true -csharp_indent_labels = flush_left +csharp_indent_labels = one_less_than_current # Space preferences csharp_space_after_cast = false csharp_space_after_keywords_in_control_flow_statements = true @@ -216,9 +216,9 @@ csharp_preserve_single_line_blocks = true visual_basic_preferred_modifier_order = Partial,Default,Private,Protected,Public,Friend,NotOverridable,Overridable,MustOverride,Overloads,Overrides,MustInherit,NotInheritable,Static,Shared,Shadows,ReadOnly,WriteOnly,Dim,Const,WithEvents,Widening,Narrowing,Custom,Async:suggestion [*.cs] # Add file header -file_header_template = Copyright (c) Argo Zhang (argo@163.com). All rights reserved.\nLicensed under the Apache License, Version 2.0. See License.txt in the project root for license information.\nWebsite: https://www.blazor.zone or https://argozhang.github.io/ -csharp_style_namespace_declarations = file_scoped:suggestion -csharp_style_expression_bodied_local_functions = true:silent +file_header_template = Licensed to the .NET Foundation under one or more agreements.\nThe .NET Foundation licenses this file to you under the Apache 2.0 License\nSee the LICENSE file in the project root for more information.\nMaintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone +csharp_style_namespace_declarations = block_scoped:silent +csharp_style_expression_bodied_local_functions = false:silent csharp_using_directive_placement = outside_namespace:silent csharp_prefer_simple_using_statement = true:suggestion csharp_style_prefer_method_group_conversion = true:silent @@ -246,3 +246,4 @@ csharp_style_prefer_pattern_matching = true:silent csharp_style_prefer_not_pattern = true:suggestion csharp_style_prefer_extended_property_pattern = true:suggestion csharp_prefer_static_anonymous_function = true:suggestion +csharp_prefer_system_threading_lock = true:suggestion diff --git a/LICENSE b/LICENSE index 2c62df363..0a1e5eef7 100644 --- a/LICENSE +++ b/LICENSE @@ -1,3 +1,6 @@ + Copyright (c) .NET Foundation and Contributors + All Rights Reserved + Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ diff --git a/README.md b/README.md index 5cbf9dc30..ea281c511 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

Bootstrap Blazor Component

-

A set of enterprise-class UI components based on Bootstrap and Blazor.

+

Bootstrap Blazor is an enterprise-level UI component library based on Bootstrap and Blazor.

[![License](https://img.shields.io/github/license/dotnetcore/BootstrapBlazor.svg?logo=git&logoColor=red)](https://github.com/dotnetcore/BootstrapBlazor/blob/main/LICENSE) [![Nuget](https://img.shields.io/nuget/v/BootstrapBlazor.svg?color=red&logo=nuget&logoColor=green)](https://www.nuget.org/packages/BootstrapBlazor/) diff --git a/README.zh-CN.md b/README.zh-CN.md index 2f520ad0d..864ae0d6a 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -1,7 +1,8 @@

Bootstrap Blazor 组件库

-

一套基于 Bootstrap 和 Blazor 的企业级组件库

+

Bootstrap Blazor 是一套基于 Bootstrap 和 Blazor 的企业级组件库

+

.NET 基金会成员项目

[![License](https://img.shields.io/github/license/dotnetcore/BootstrapBlazor.svg?logo=git&logoColor=red)](https://github.com/dotnetcore/BootstrapBlazor/blob/main/LICENSE) [![Nuget](https://img.shields.io/nuget/v/BootstrapBlazor.svg?color=red&logo=nuget&logoColor=green)](https://www.nuget.org/packages/BootstrapBlazor/) diff --git a/src/BootstrapBlazor.Server/Components/Components/AttributeTable.razor.cs b/src/BootstrapBlazor.Server/Components/Components/AttributeTable.razor.cs index 74f4264e4..9d5f1ab4b 100644 --- a/src/BootstrapBlazor.Server/Components/Components/AttributeTable.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/AttributeTable.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/BarcodeGenerateSettings.razor.cs b/src/BootstrapBlazor.Server/Components/Components/BarcodeGenerateSettings.razor.cs index 3900805f5..d5e3f6e3d 100644 --- a/src/BootstrapBlazor.Server/Components/Components/BarcodeGenerateSettings.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/BarcodeGenerateSettings.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/CalendarCrewCell.razor.cs b/src/BootstrapBlazor.Server/Components/Components/CalendarCrewCell.razor.cs index 0d3774037..74fcf6500 100644 --- a/src/BootstrapBlazor.Server/Components/Components/CalendarCrewCell.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/CalendarCrewCell.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/CalendarCrewDialogBody.razor.cs b/src/BootstrapBlazor.Server/Components/Components/CalendarCrewDialogBody.razor.cs index 47e11d335..9ea284165 100644 --- a/src/BootstrapBlazor.Server/Components/Components/CalendarCrewDialogBody.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/CalendarCrewDialogBody.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/CommitItem.razor.cs b/src/BootstrapBlazor.Server/Components/Components/CommitItem.razor.cs index 3441a4b7b..55e8203ba 100644 --- a/src/BootstrapBlazor.Server/Components/Components/CommitItem.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/CommitItem.razor.cs @@ -1,6 +1,8 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone + namespace BootstrapBlazor.Server.Components.Components; /// diff --git a/src/BootstrapBlazor.Server/Components/Components/ComponentCard.razor.cs b/src/BootstrapBlazor.Server/Components/Components/ComponentCard.razor.cs index a84c827c6..29bbbe667 100644 --- a/src/BootstrapBlazor.Server/Components/Components/ComponentCard.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/ComponentCard.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/ComponentCategory.razor.cs b/src/BootstrapBlazor.Server/Components/Components/ComponentCategory.razor.cs index f3f4669bf..b1dae519b 100644 --- a/src/BootstrapBlazor.Server/Components/Components/ComponentCategory.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/ComponentCategory.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/CultureChooser.razor.cs b/src/BootstrapBlazor.Server/Components/Components/CultureChooser.razor.cs index 09fcfa9dc..cc02da2c5 100644 --- a/src/BootstrapBlazor.Server/Components/Components/CultureChooser.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/CultureChooser.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Options; using System.Globalization; diff --git a/src/BootstrapBlazor.Server/Components/Components/CustomPopConfirmContent.razor.cs b/src/BootstrapBlazor.Server/Components/Components/CustomPopConfirmContent.razor.cs index 005380637..e9bffc4fb 100644 --- a/src/BootstrapBlazor.Server/Components/Components/CustomPopConfirmContent.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/CustomPopConfirmContent.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/CustomTableRow.razor.cs b/src/BootstrapBlazor.Server/Components/Components/CustomTableRow.razor.cs index 80645232a..6f9b3f327 100644 --- a/src/BootstrapBlazor.Server/Components/Components/CustomTableRow.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/CustomTableRow.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/CustomWinBoxContent.razor.cs b/src/BootstrapBlazor.Server/Components/Components/CustomWinBoxContent.razor.cs index 5393bfffe..d48dfcaec 100644 --- a/src/BootstrapBlazor.Server/Components/Components/CustomWinBoxContent.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/CustomWinBoxContent.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/CustomerSelectDialog.razor.cs b/src/BootstrapBlazor.Server/Components/Components/CustomerSelectDialog.razor.cs index 511e74bdb..deb07c21e 100644 --- a/src/BootstrapBlazor.Server/Components/Components/CustomerSelectDialog.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/CustomerSelectDialog.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/DemoBlock.razor.cs b/src/BootstrapBlazor.Server/Components/Components/DemoBlock.razor.cs index 497fd7a88..3f86089e5 100644 --- a/src/BootstrapBlazor.Server/Components/Components/DemoBlock.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/DemoBlock.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/DemoTabItem.razor.cs b/src/BootstrapBlazor.Server/Components/Components/DemoTabItem.razor.cs index bf999ce5a..35a008887 100644 --- a/src/BootstrapBlazor.Server/Components/Components/DemoTabItem.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/DemoTabItem.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/DemoTabItemSetText.razor.cs b/src/BootstrapBlazor.Server/Components/Components/DemoTabItemSetText.razor.cs index d63e189fa..eb50a3c88 100644 --- a/src/BootstrapBlazor.Server/Components/Components/DemoTabItemSetText.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/DemoTabItemSetText.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/DialogBodyFoo.razor.cs b/src/BootstrapBlazor.Server/Components/Components/DialogBodyFoo.razor.cs index 56a072c03..2af74730a 100644 --- a/src/BootstrapBlazor.Server/Components/Components/DialogBodyFoo.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/DialogBodyFoo.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/DialogDemo.razor.cs b/src/BootstrapBlazor.Server/Components/Components/DialogDemo.razor.cs index cca2fe6ea..a1b65e6f6 100644 --- a/src/BootstrapBlazor.Server/Components/Components/DialogDemo.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/DialogDemo.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/DialogHeaderFoo.razor.cs b/src/BootstrapBlazor.Server/Components/Components/DialogHeaderFoo.razor.cs index 0e6ffaf1d..fb2caa300 100644 --- a/src/BootstrapBlazor.Server/Components/Components/DialogHeaderFoo.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/DialogHeaderFoo.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/FooSearch.razor.cs b/src/BootstrapBlazor.Server/Components/Components/FooSearch.razor.cs index d3dca03bf..476985ee2 100644 --- a/src/BootstrapBlazor.Server/Components/Components/FooSearch.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/FooSearch.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/FooSortableListItem.razor.cs b/src/BootstrapBlazor.Server/Components/Components/FooSortableListItem.razor.cs index deae173d8..86f8d3f70 100644 --- a/src/BootstrapBlazor.Server/Components/Components/FooSortableListItem.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/FooSortableListItem.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/FooSortableListRightItem.razor.cs b/src/BootstrapBlazor.Server/Components/Components/FooSortableListRightItem.razor.cs index 97909e5d6..c5d66ad15 100644 --- a/src/BootstrapBlazor.Server/Components/Components/FooSortableListRightItem.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/FooSortableListRightItem.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/FormInlineSwitch.razor.cs b/src/BootstrapBlazor.Server/Components/Components/FormInlineSwitch.razor.cs index 0f389f870..fd4ac9c3b 100644 --- a/src/BootstrapBlazor.Server/Components/Components/FormInlineSwitch.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/FormInlineSwitch.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Components/GlobalSearch.razor.cs b/src/BootstrapBlazor.Server/Components/Components/GlobalSearch.razor.cs index 84e533d37..d39cddd40 100644 --- a/src/BootstrapBlazor.Server/Components/Components/GlobalSearch.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/GlobalSearch.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using BootstrapBlazor.MeiliSearch.Options; using Microsoft.Extensions.Options; diff --git a/src/BootstrapBlazor.Server/Components/Components/Header.razor.cs b/src/BootstrapBlazor.Server/Components/Components/Header.razor.cs index cf617bae7..b071223a4 100644 --- a/src/BootstrapBlazor.Server/Components/Components/Header.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/Header.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Options; diff --git a/src/BootstrapBlazor.Server/Components/Components/InstallContent.razor.cs b/src/BootstrapBlazor.Server/Components/Components/InstallContent.razor.cs index d7c7efa60..86dcabb08 100644 --- a/src/BootstrapBlazor.Server/Components/Components/InstallContent.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/InstallContent.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/MethodTable.razor.cs b/src/BootstrapBlazor.Server/Components/Components/MethodTable.razor.cs index 1febf4bd4..2cf6f641b 100644 --- a/src/BootstrapBlazor.Server/Components/Components/MethodTable.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/MethodTable.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/Pre.razor.cs b/src/BootstrapBlazor.Server/Components/Components/Pre.razor.cs index ad827cb9c..6885ba4a7 100644 --- a/src/BootstrapBlazor.Server/Components/Components/Pre.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/Pre.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.RegularExpressions; diff --git a/src/BootstrapBlazor.Server/Components/Components/ResultDialogDemo.razor.cs b/src/BootstrapBlazor.Server/Components/Components/ResultDialogDemo.razor.cs index 60b237fc8..3a8b78c70 100644 --- a/src/BootstrapBlazor.Server/Components/Components/ResultDialogDemo.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/ResultDialogDemo.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/ResultDialogDemo2.razor.cs b/src/BootstrapBlazor.Server/Components/Components/ResultDialogDemo2.razor.cs index cab2562ca..6e8dcf213 100644 --- a/src/BootstrapBlazor.Server/Components/Components/ResultDialogDemo2.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/ResultDialogDemo2.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor.Server/Components/Components/State.razor.cs b/src/BootstrapBlazor.Server/Components/Components/State.razor.cs index 269bbbfbc..d0b735418 100644 --- a/src/BootstrapBlazor.Server/Components/Components/State.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/State.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/ThemeChooser.razor.cs b/src/BootstrapBlazor.Server/Components/Components/ThemeChooser.razor.cs index 1ed24beca..0c1adaf47 100644 --- a/src/BootstrapBlazor.Server/Components/Components/ThemeChooser.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/ThemeChooser.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Options; diff --git a/src/BootstrapBlazor.Server/Components/Components/ThemeMode.razor.cs b/src/BootstrapBlazor.Server/Components/Components/ThemeMode.razor.cs index dbe737d2d..f996d2122 100644 --- a/src/BootstrapBlazor.Server/Components/Components/ThemeMode.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/ThemeMode.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/UpdateIntro.razor.cs b/src/BootstrapBlazor.Server/Components/Components/UpdateIntro.razor.cs index 6b919c907..54d861ef7 100644 --- a/src/BootstrapBlazor.Server/Components/Components/UpdateIntro.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/UpdateIntro.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Options; diff --git a/src/BootstrapBlazor.Server/Components/Components/VideoDemo.razor.cs b/src/BootstrapBlazor.Server/Components/Components/VideoDemo.razor.cs index 7ae552e9c..cb223b522 100644 --- a/src/BootstrapBlazor.Server/Components/Components/VideoDemo.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/VideoDemo.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/WebSiteModuleComponentBase.cs b/src/BootstrapBlazor.Server/Components/Components/WebSiteModuleComponentBase.cs index a03633c82..7102d892d 100644 --- a/src/BootstrapBlazor.Server/Components/Components/WebSiteModuleComponentBase.cs +++ b/src/BootstrapBlazor.Server/Components/Components/WebSiteModuleComponentBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Components/Wwads.razor.cs b/src/BootstrapBlazor.Server/Components/Components/Wwads.razor.cs index df2525c23..f8478b603 100644 --- a/src/BootstrapBlazor.Server/Components/Components/Wwads.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Components/Wwads.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Components; diff --git a/src/BootstrapBlazor.Server/Components/Layout/BaseLayout.razor.cs b/src/BootstrapBlazor.Server/Components/Layout/BaseLayout.razor.cs index 0250b142a..58571937e 100644 --- a/src/BootstrapBlazor.Server/Components/Layout/BaseLayout.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Layout/BaseLayout.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Layout; diff --git a/src/BootstrapBlazor.Server/Components/Layout/ComponentLayout.razor.cs b/src/BootstrapBlazor.Server/Components/Layout/ComponentLayout.razor.cs index 36d139cbc..fea51d622 100644 --- a/src/BootstrapBlazor.Server/Components/Layout/ComponentLayout.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Layout/ComponentLayout.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Options; using Microsoft.JSInterop; diff --git a/src/BootstrapBlazor.Server/Components/Layout/DockLayout.razor.cs b/src/BootstrapBlazor.Server/Components/Layout/DockLayout.razor.cs index e0f93cbbb..7575bf672 100644 --- a/src/BootstrapBlazor.Server/Components/Layout/DockLayout.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Layout/DockLayout.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.JSInterop; diff --git a/src/BootstrapBlazor.Server/Components/Layout/HomeLayout.razor.cs b/src/BootstrapBlazor.Server/Components/Layout/HomeLayout.razor.cs index 8d8834185..fa8a41826 100644 --- a/src/BootstrapBlazor.Server/Components/Layout/HomeLayout.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Layout/HomeLayout.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Options; using System.Globalization; diff --git a/src/BootstrapBlazor.Server/Components/Layout/MainLayout.razor.cs b/src/BootstrapBlazor.Server/Components/Layout/MainLayout.razor.cs index 99919a3eb..c4ddfb335 100644 --- a/src/BootstrapBlazor.Server/Components/Layout/MainLayout.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Layout/MainLayout.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Options; diff --git a/src/BootstrapBlazor.Server/Components/Layout/NavMenu.razor.cs b/src/BootstrapBlazor.Server/Components/Layout/NavMenu.razor.cs index 1cb28470b..8b78aa641 100644 --- a/src/BootstrapBlazor.Server/Components/Layout/NavMenu.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Layout/NavMenu.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Layout; diff --git a/src/BootstrapBlazor.Server/Components/Layout/PageLayout.razor.cs b/src/BootstrapBlazor.Server/Components/Layout/PageLayout.razor.cs index 09d83802e..7c1d84bbb 100644 --- a/src/BootstrapBlazor.Server/Components/Layout/PageLayout.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Layout/PageLayout.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Layout; diff --git a/src/BootstrapBlazor.Server/Components/Layout/TutorialsNavMenu.razor.cs b/src/BootstrapBlazor.Server/Components/Layout/TutorialsNavMenu.razor.cs index 68cd3f781..dfbd49b18 100644 --- a/src/BootstrapBlazor.Server/Components/Layout/TutorialsNavMenu.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Layout/TutorialsNavMenu.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using BootstrapBlazor.Server.Components.Pages; using Microsoft.AspNetCore.Components.Web; diff --git a/src/BootstrapBlazor.Server/Components/Pages/Chats.razor.cs b/src/BootstrapBlazor.Server/Components/Pages/Chats.razor.cs index 072f4d6d7..ce2af745e 100644 --- a/src/BootstrapBlazor.Server/Components/Pages/Chats.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Pages/Chats.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Azure.AI.OpenAI; using System.Collections.Concurrent; diff --git a/src/BootstrapBlazor.Server/Components/Pages/Coms.razor.cs b/src/BootstrapBlazor.Server/Components/Pages/Coms.razor.cs index 89085039e..d7fa7f3f4 100644 --- a/src/BootstrapBlazor.Server/Components/Pages/Coms.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Pages/Coms.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Pages; diff --git a/src/BootstrapBlazor.Server/Components/Pages/Index.razor.cs b/src/BootstrapBlazor.Server/Components/Pages/Index.razor.cs index 26e1e4034..259136b28 100644 --- a/src/BootstrapBlazor.Server/Components/Pages/Index.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Pages/Index.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Pages; diff --git a/src/BootstrapBlazor.Server/Components/Pages/Introduction.razor.cs b/src/BootstrapBlazor.Server/Components/Pages/Introduction.razor.cs index d6d425a9f..5042bbeba 100644 --- a/src/BootstrapBlazor.Server/Components/Pages/Introduction.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Pages/Introduction.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Options; diff --git a/src/BootstrapBlazor.Server/Components/Pages/Layout.razor.cs b/src/BootstrapBlazor.Server/Components/Pages/Layout.razor.cs index 444981c91..8ef9304c3 100644 --- a/src/BootstrapBlazor.Server/Components/Pages/Layout.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Pages/Layout.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Pages; diff --git a/src/BootstrapBlazor.Server/Components/Pages/Online.razor.cs b/src/BootstrapBlazor.Server/Components/Pages/Online.razor.cs index ebf4dcbf7..529d8b8fc 100644 --- a/src/BootstrapBlazor.Server/Components/Pages/Online.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Pages/Online.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Data; diff --git a/src/BootstrapBlazor.Server/Components/Pages/Template.razor.cs b/src/BootstrapBlazor.Server/Components/Pages/Template.razor.cs index 999c53512..a73b08434 100644 --- a/src/BootstrapBlazor.Server/Components/Pages/Template.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Pages/Template.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Pages; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Ajaxs.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Ajaxs.razor.cs index b82267b5b..9913abca2 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Ajaxs.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Ajaxs.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Alerts.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Alerts.razor.cs index 7824facac..99d0edf2b 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Alerts.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Alerts.razor.cs @@ -1,4 +1,9 @@ -namespace BootstrapBlazor.Server.Components.Samples; +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone + +namespace BootstrapBlazor.Server.Components.Samples; /// /// Alert 组件示例 diff --git a/src/BootstrapBlazor.Server/Components/Samples/AnchorLinks.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/AnchorLinks.razor.cs index 07befda8c..4ceef5f8b 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/AnchorLinks.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/AnchorLinks.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Anchors.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Anchors.razor.cs index 66b66b4c3..822a2c8ca 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Anchors.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Anchors.razor.cs @@ -1,4 +1,9 @@ -namespace BootstrapBlazor.Server.Components.Samples; +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone + +namespace BootstrapBlazor.Server.Components.Samples; /// /// Anchors 组件示例 diff --git a/src/BootstrapBlazor.Server/Components/Samples/AutoCompletes.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/AutoCompletes.razor.cs index f1092895b..74bde18ff 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/AutoCompletes.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/AutoCompletes.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/AutoFills.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/AutoFills.razor.cs index 7237c8883..3ff508c8f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/AutoFills.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/AutoFills.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/AutoRedirects.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/AutoRedirects.razor.cs index 21fd1364d..817b89f4c 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/AutoRedirects.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/AutoRedirects.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Avatars.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Avatars.razor.cs index b43c0ead8..db5f00c10 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Avatars.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Avatars.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Badges.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Badges.razor.cs index 01db6a33c..2c5109c38 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Badges.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Badges.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/BaiduOcr.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/BaiduOcr.razor.cs index f78a7a2a5..aa4a2ca02 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/BaiduOcr.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/BaiduOcr.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; diff --git a/src/BootstrapBlazor.Server/Components/Samples/BarcodeGenerators.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/BarcodeGenerators.razor.cs index 40fdccb8c..17bfc5656 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/BarcodeGenerators.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/BarcodeGenerators.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor.Server/Components/Samples/BarcodeReaders.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/BarcodeReaders.razor.cs index 97fbcedb7..8749ec93e 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/BarcodeReaders.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/BarcodeReaders.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Blocks.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Blocks.razor.cs index ec94b1021..47883f6c0 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Blocks.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Blocks.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Authorization; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Bluetooth.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Bluetooth.razor.cs index beaf34bd9..6e3a558b9 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Bluetooth.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Bluetooth.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/BootstrapBlazorIcons.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/BootstrapBlazorIcons.razor.cs index 964e7cc6b..a490d3aca 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/BootstrapBlazorIcons.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/BootstrapBlazorIcons.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Breadcrumbs.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Breadcrumbs.razor.cs index 51576e31a..fbb7d7b8d 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Breadcrumbs.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Breadcrumbs.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/BrowserFingers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/BrowserFingers.razor.cs index eae75488c..6641b3f46 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/BrowserFingers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/BrowserFingers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Buttons.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Buttons.razor.cs index d55186f6b..be2746921 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Buttons.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Buttons.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Calendars.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Calendars.razor.cs index 273a78263..91969ba44 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Calendars.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Calendars.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Concurrent; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Cameras.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Cameras.razor.cs index 5b71c2615..24df426c8 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Cameras.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Cameras.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Captchas.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Captchas.razor.cs index 6fba5991f..662aa3431 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Captchas.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Captchas.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Cards.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Cards.razor.cs index a71dd4b0f..b73e7a099 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Cards.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Cards.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Carousels.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Carousels.razor.cs index f0b4a95b6..13ca01bac 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Carousels.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Carousels.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Cascaders.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Cascaders.razor.cs index 1a8792122..a9da070f0 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Cascaders.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Cascaders.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Charts/Bar.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Charts/Bar.razor.cs index fbdae9ffc..92dde12b8 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Charts/Bar.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Charts/Bar.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Charts; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Charts/Bubble.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Charts/Bubble.razor.cs index 74f8fc4a8..12e639164 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Charts/Bubble.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Charts/Bubble.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Charts; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Charts/Doughnut.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Charts/Doughnut.razor.cs index ac2e05478..aa0622810 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Charts/Doughnut.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Charts/Doughnut.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Charts; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Charts/Index.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Charts/Index.razor.cs index 828b8e445..1b4eadf76 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Charts/Index.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Charts/Index.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Charts; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Charts/Line.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Charts/Line.razor.cs index 4882709eb..e80df3752 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Charts/Line.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Charts/Line.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.JSInterop; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Charts/Pie.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Charts/Pie.razor.cs index c8fe2e155..6c8e4d422 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Charts/Pie.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Charts/Pie.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Charts; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Charts/Utility.cs b/src/BootstrapBlazor.Server/Components/Samples/Charts/Utility.cs index c51133d8d..7cc13ce60 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Charts/Utility.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Charts/Utility.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Charts; diff --git a/src/BootstrapBlazor.Server/Components/Samples/CheckboxLists.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/CheckboxLists.razor.cs index 74d8d657b..e7f7d113e 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/CheckboxLists.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/CheckboxLists.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Checkboxs.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Checkboxs.razor.cs index 92ae66fb4..3adef5c9c 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Checkboxs.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Checkboxs.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor.Server/Components/Samples/CherryMarkdowns.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/CherryMarkdowns.razor.cs index 2232cb436..8ea817138 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/CherryMarkdowns.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/CherryMarkdowns.razor.cs @@ -1,6 +1,8 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone + using Microsoft.Extensions.Options; namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Circles.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Circles.razor.cs index c62889ba0..897ed8eff 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Circles.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Circles.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Client.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Client.razor.cs index 159cbcec6..6fb979200 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Client.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Client.razor.cs @@ -1,4 +1,9 @@ -namespace BootstrapBlazor.Server.Components.Samples; +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone + +namespace BootstrapBlazor.Server.Components.Samples; /// /// Client 组件示例 diff --git a/src/BootstrapBlazor.Server/Components/Samples/Clipboards.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Clipboards.razor.cs index 0a9ed25af..f0cf58906 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Clipboards.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Clipboards.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/ClockPickers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/ClockPickers.razor.cs index d18d09788..e66350cf4 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/ClockPickers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/ClockPickers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/CodeEditors.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/CodeEditors.razor.cs index 1702b8351..c7b32b9cb 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/CodeEditors.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/CodeEditors.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Collapses.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Collapses.razor.cs index bd055990f..fcfc5f1b5 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Collapses.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Collapses.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/ColorPickers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/ColorPickers.razor.cs index 0c39d0653..4fc12446f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/ColorPickers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/ColorPickers.razor.cs @@ -1,6 +1,8 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone + namespace BootstrapBlazor.Server.Components.Samples; /// diff --git a/src/BootstrapBlazor.Server/Components/Samples/Consoles.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Consoles.razor.cs index 5ff00cd92..2d0f052b9 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Consoles.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Consoles.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/ContextMenus.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/ContextMenus.razor.cs index ca63d8acc..92e164927 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/ContextMenus.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/ContextMenus.razor.cs @@ -1,4 +1,9 @@ -namespace BootstrapBlazor.Server.Components.Samples; +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone + +namespace BootstrapBlazor.Server.Components.Samples; /// /// ContextMenu 组件示例 diff --git a/src/BootstrapBlazor.Server/Components/Samples/CountButtons.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/CountButtons.razor.cs index c048f16ef..5ba51961b 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/CountButtons.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/CountButtons.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/CountUps.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/CountUps.razor.cs index f7feb9e64..c90205f9a 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/CountUps.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/CountUps.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DateTimePickers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DateTimePickers.razor.cs index 0d64dc100..2b87c4a60 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DateTimePickers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DateTimePickers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DateTimeRanges.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DateTimeRanges.razor.cs index e93f01cab..06a5fe1a2 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DateTimeRanges.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DateTimeRanges.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DialButtons.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DialButtons.razor.cs index 895657143..eac4f2ebd 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DialButtons.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DialButtons.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Dialogs.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Dialogs.razor.cs index 5af34b5a1..674056262 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Dialogs.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Dialogs.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Dispatches.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Dispatches.razor.cs index 8606b7a96..f0bf1632b 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Dispatches.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Dispatches.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Options; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Displays.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Displays.razor.cs index e8e06ab3d..5d9b23414 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Displays.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Displays.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Dividers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Dividers.razor.cs index 173aa6454..dbcff2387 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Dividers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Dividers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews/BaseDockView.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews/BaseDockView.cs index 4e2f3cc01..f89608868 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews/BaseDockView.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews/BaseDockView.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewCol.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewCol.razor.cs index c8dab9ef8..340ad093d 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewCol.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewCol.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewComplex.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewComplex.razor.cs index 85db240ab..2072f0977 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewComplex.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewComplex.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewLayout.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewLayout.razor.cs index a0b2f9d64..777ee0fe1 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewLayout.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewLayout.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewLock.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewLock.razor.cs index 982b824dd..3c26815fe 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewLock.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewLock.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewNest.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewNest.razor.cs index 99891227a..38ec1d94e 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewNest.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewNest.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewRow.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewRow.razor.cs index 556b2fb33..acb8dc4e0 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewRow.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewRow.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewStack.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewStack.razor.cs index 677c21e29..35f49c81c 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewStack.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewStack.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewVisible.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewVisible.razor.cs index 2325ef877..d490aca23 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewVisible.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews/DockViewVisible.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews/Index.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews/Index.razor.cs index 84b8b49e4..851722568 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews/Index.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews/Index.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/BaseDockView.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/BaseDockView.cs index 8310db89b..c7bb00fc1 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/BaseDockView.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/BaseDockView.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews2; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewCol.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewCol.razor.cs index fa8dbf201..7908491dc 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewCol.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewCol.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews2; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewComplex.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewComplex.razor.cs index d5c33f437..e45a8646c 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewComplex.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewComplex.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews2; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewGroup.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewGroup.razor.cs index 135fef63c..421fe6022 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewGroup.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewGroup.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews2; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewLayout.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewLayout.razor.cs index dbb5d4fbc..ec4190544 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewLayout.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewLayout.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews2; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewLock.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewLock.razor.cs index 76c3cfdb4..1a04e6e3f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewLock.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewLock.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews2; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewNest.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewNest.razor.cs index aaa243cfe..217a70f48 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewNest.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewNest.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews2; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewRow.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewRow.razor.cs index 5950eb2db..a3380f049 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewRow.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewRow.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews2; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewTitle.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewTitle.razor.cs index a231fbfbd..b00651e3e 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewTitle.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewTitle.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews2; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewVisible.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewVisible.razor.cs index 9227f8b0a..f51093c48 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewVisible.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/DockViewVisible.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews2; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/Index.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/Index.razor.cs index 313397d22..e6475953f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DockViews2/Index.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DockViews2/Index.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.DockViews2; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Downloads.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Downloads.razor.cs index 2bec971c7..1ec7d7341 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Downloads.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Downloads.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DragDrops.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DragDrops.razor.cs index dd3b06e06..c767bedce 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DragDrops.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DragDrops.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Drawers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Drawers.razor.cs index ff9f78292..21a6b7dd1 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Drawers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Drawers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DriverDotnetJs.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DriverDotnetJs.razor.cs index 22c45e79c..7d23e9027 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DriverDotnetJs.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DriverDotnetJs.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/DropdownWidgets.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/DropdownWidgets.razor.cs index f01f520f9..f8bcc384a 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/DropdownWidgets.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/DropdownWidgets.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Dropdowns.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Dropdowns.razor.cs index d952cef63..a47abc524 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Dropdowns.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Dropdowns.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/EditDialogs.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/EditDialogs.razor.cs index 86cbf142b..6e3faa58c 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/EditDialogs.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/EditDialogs.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/EditorForms.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/EditorForms.razor.cs index 003219f6f..a693c9600 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/EditorForms.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/EditorForms.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Editors.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Editors.razor.cs index 78bbbbfbd..a99c228a8 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Editors.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Editors.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Empties.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Empties.razor.cs index ba8fa5b6b..ea17edcc8 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Empties.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Empties.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/ExportPdfButtons.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/ExportPdfButtons.razor.cs index 074316b67..fbad4619f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/ExportPdfButtons.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/ExportPdfButtons.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/EyeDroppers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/EyeDroppers.razor.cs index b883d6f41..d3c004902 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/EyeDroppers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/EyeDroppers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/FileIcons.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/FileIcons.razor.cs index 1b98f40d4..c35de94d8 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/FileIcons.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/FileIcons.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/FileViewers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/FileViewers.razor.cs index 721ecdf32..a6b5012f2 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/FileViewers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/FileViewers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/FlipClocks.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/FlipClocks.razor.cs index 6eea57dcf..a0f1ec8a1 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/FlipClocks.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/FlipClocks.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/FloatingLabels.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/FloatingLabels.razor.cs index 2589ce4c7..6d8777f83 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/FloatingLabels.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/FloatingLabels.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Footers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Footers.razor.cs index 209dd0b4a..d56366091 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Footers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Footers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Gantts.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Gantts.razor.cs index eafe52d29..250538f48 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Gantts.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Gantts.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Geolocations.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Geolocations.razor.cs index 0793c6d81..650392b92 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Geolocations.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Geolocations.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/GlobalException.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/GlobalException.razor.cs index 96df3d950..9a1553c4f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/GlobalException.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/GlobalException.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/GoTops.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/GoTops.razor.cs index 68c163074..1974876f7 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/GoTops.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/GoTops.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/GroupBoxes.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/GroupBoxes.razor.cs index 97e47be89..f6c49d0db 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/GroupBoxes.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/GroupBoxes.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Handwrittens.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Handwrittens.razor.cs index 8780651ae..e4afb0a98 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Handwrittens.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Handwrittens.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Html2Pdfs.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Html2Pdfs.razor.cs index da672b879..904fb3bef 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Html2Pdfs.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Html2Pdfs.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.JSInterop; diff --git a/src/BootstrapBlazor.Server/Components/Samples/HtmlRenderers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/HtmlRenderers.razor.cs index d82b46ad0..a6342ab2a 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/HtmlRenderers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/HtmlRenderers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIconList.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIconList.razor.cs index 6af72b8b0..63ceb1c5a 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIconList.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIconList.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Icons; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIcons.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIcons.razor.cs index 778568f54..13e965165 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIcons.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/AntDesignIcons.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Icons; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/BootstrapIcons.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Icons/BootstrapIcons.razor.cs index 5c5dbe8e2..f0da1f9d2 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/BootstrapIcons.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/BootstrapIcons.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Icons; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIconList.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIconList.razor.cs index a5b1e2373..a7ce21908 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIconList.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIconList.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Icons; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIcons.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIcons.razor.cs index c7f754365..dea29a03f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIcons.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/ElementIcons.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Icons; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/FAIconList.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Icons/FAIconList.razor.cs index c7ed25a45..f866454f9 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/FAIconList.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/FAIconList.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.JSInterop; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/FAIcons.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Icons/FAIcons.razor.cs index 471477ad7..299ef94eb 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/FAIcons.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/FAIcons.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Icons; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/IconParkList.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Icons/IconParkList.razor.cs index fe245e5af..b2800fa41 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/IconParkList.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/IconParkList.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Icons; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/IconParks.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Icons/IconParks.razor.cs index 689db7c8c..b7a7a1da3 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/IconParks.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/IconParks.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Icons; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Icons/MaterialDesignIcons.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Icons/MaterialDesignIcons.razor.cs index b417563ba..4f77a0d35 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Icons/MaterialDesignIcons.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Icons/MaterialDesignIcons.razor.cs @@ -1,4 +1,9 @@ -namespace BootstrapBlazor.Server.Components.Samples.Icons; +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone + +namespace BootstrapBlazor.Server.Components.Samples.Icons; /// /// MaterialIcons 示例页面 diff --git a/src/BootstrapBlazor.Server/Components/Samples/ImageCroppers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/ImageCroppers.razor.cs index 286103589..c71fc3c5e 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/ImageCroppers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/ImageCroppers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/ImageViewers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/ImageViewers.razor.cs index 2b5147b3d..96653065d 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/ImageViewers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/ImageViewers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/InputGroups.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/InputGroups.razor.cs index db429a7e3..acee7641e 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/InputGroups.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/InputGroups.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/InputNumbers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/InputNumbers.razor.cs index 4eaccf234..ce3a6665a 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/InputNumbers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/InputNumbers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Inputs.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Inputs.razor.cs index 9ba100af5..f84707d61 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Inputs.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Inputs.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/IntersectionObservers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/IntersectionObservers.razor.cs index ebb195ae6..a0e7c0a35 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/IntersectionObservers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/IntersectionObservers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Ips.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Ips.razor.cs index a1891cf58..6df662540 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Ips.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Ips.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/JSRuntimeExtensions.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/JSRuntimeExtensions.razor.cs index c6ee8fdab..55e8f51d5 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/JSRuntimeExtensions.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/JSRuntimeExtensions.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.JSInterop; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Labels.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Labels.razor.cs index 7bd4b2676..c3fbd4e05 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Labels.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Labels.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/LayoutPages.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/LayoutPages.razor.cs index 02c519db9..ed66504c3 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/LayoutPages.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/LayoutPages.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Layouts.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Layouts.razor.cs index f5d12d0e5..40da3562d 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Layouts.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Layouts.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Lights.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Lights.razor.cs index 76391349b..559ed17c0 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Lights.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Lights.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/LinkButtons.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/LinkButtons.razor.cs index 7e6a5f3e3..c36d24ab7 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/LinkButtons.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/LinkButtons.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/ListGroups.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/ListGroups.razor.cs index f20e1b8a9..1afe39e8d 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/ListGroups.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/ListGroups.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/ListViews.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/ListViews.razor.cs index dd1f3993a..07e2e6156 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/ListViews.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/ListViews.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Live2DDisplays.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Live2DDisplays.razor.cs index 611f150dd..1bc58a16f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Live2DDisplays.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Live2DDisplays.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Locators.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Locators.razor.cs index efc4477d2..33e2bf80f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Locators.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Locators.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Logouts.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Logouts.razor.cs index 05bcb8fc5..e01140700 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Logouts.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Logouts.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Markdowns.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Markdowns.razor.cs index b7dabf989..5beb86e80 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Markdowns.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Markdowns.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Globalization; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Marquees.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Marquees.razor.cs index 41648b10d..085e7c324 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Marquees.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Marquees.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Masks.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Masks.razor.cs index 88cb1833b..76abdd4d6 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Masks.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Masks.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Menus.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Menus.razor.cs index de79b6f8a..71925e0ca 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Menus.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Menus.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Messages.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Messages.razor.cs index e6defd367..85fd81047 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Messages.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Messages.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/MindMaps.razor.Data.cs b/src/BootstrapBlazor.Server/Components/Samples/MindMaps.razor.Data.cs index 07c1e3d8f..4cad9f01b 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/MindMaps.razor.Data.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/MindMaps.razor.Data.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/MindMaps.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/MindMaps.razor.cs index ac86d971e..ef5be127c 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/MindMaps.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/MindMaps.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using BootstrapBlazor.Components.MindMaps; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Modals.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Modals.razor.cs index c957fcc2c..eb2530bfd 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Modals.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Modals.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/MouseFollowers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/MouseFollowers.razor.cs index 6d369fbe7..c4e717209 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/MouseFollowers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/MouseFollowers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/MultiSelects.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/MultiSelects.razor.cs index 2d7a876ed..4dfde524f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/MultiSelects.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/MultiSelects.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Navigation.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Navigation.razor.cs index e64a60f1c..16edff23c 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Navigation.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Navigation.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Routing; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Notifications.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Notifications.razor.cs index 65587cb0d..d629ef423 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Notifications.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Notifications.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/OnScreenKeyboards.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/OnScreenKeyboards.razor.cs index 87aaaa619..cb91dede7 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/OnScreenKeyboards.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/OnScreenKeyboards.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Paginations.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Paginations.razor.cs index c264d96ef..85eb6dcf4 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Paginations.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Paginations.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/PdfReaders.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/PdfReaders.razor.cs index 75a23bef7..ad77af24e 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/PdfReaders.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/PdfReaders.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Players.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Players.razor.cs index 95fbd2f9f..375378847 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Players.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Players.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/PopoverConfirms.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/PopoverConfirms.razor.cs index 1fe2750dd..455b754c0 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/PopoverConfirms.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/PopoverConfirms.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Popovers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Popovers.razor.cs index 59e95066f..40c694123 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Popovers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Popovers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Print.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Print.razor.cs index b768716fc..58bac166c 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Print.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Print.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/PrintView.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/PrintView.razor.cs index cec03dae8..8d58244c8 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/PrintView.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/PrintView.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Progress.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Progress.razor.cs index 0c23d1c8c..38cb1c304 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Progress.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Progress.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/QRCodes.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/QRCodes.razor.cs index 737846c41..527f53663 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/QRCodes.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/QRCodes.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/QueryBuilders.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/QueryBuilders.razor.cs index 0b61f1b75..939d34400 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/QueryBuilders.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/QueryBuilders.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Radios.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Radios.razor.cs index 62cbd2dc6..af6d4f1c9 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Radios.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Radios.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Rates.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Rates.razor.cs index 332f3814c..e515acb90 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Rates.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Rates.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Reconnectors.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Reconnectors.razor.cs index 3efdc97dc..6d5d52459 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Reconnectors.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Reconnectors.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Repeaters.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Repeaters.razor.cs index 0bb64381d..e5339bc6f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Repeaters.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Repeaters.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Responsives.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Responsives.razor.cs index 2adb65e24..3b1fcacf8 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Responsives.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Responsives.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/RibbonTabs.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/RibbonTabs.razor.cs index 24d59e862..cb4895c50 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/RibbonTabs.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/RibbonTabs.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Web; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Rows.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Rows.razor.cs index 242fda471..ac2448bfa 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Rows.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Rows.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Scrolls.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Scrolls.razor.cs index 058b64170..bb9955d84 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Scrolls.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Scrolls.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/SearchDialogs.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/SearchDialogs.razor.cs index a8ddd688a..cd436a72e 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/SearchDialogs.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/SearchDialogs.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Searches.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Searches.razor.cs index 6cc2e15c9..fc761e7bb 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Searches.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Searches.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Segmenteds.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Segmenteds.razor.cs index 66db639dc..b443c27dd 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Segmenteds.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Segmenteds.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/SelectObjects.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/SelectObjects.razor.cs index 0cd863c2e..e1c8ddd1c 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/SelectObjects.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/SelectObjects.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/SelectTables.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/SelectTables.razor.cs index 704260463..f46d3c946 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/SelectTables.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/SelectTables.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/SelectTrees.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/SelectTrees.razor.cs index 3ae4b8948..fb562eafa 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/SelectTrees.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/SelectTrees.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Selects.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Selects.razor.cs index a35a7caf5..c77fc2f4a 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Selects.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Selects.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/SignaturePads.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/SignaturePads.razor.cs index 633a83198..2c3ae9a5f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/SignaturePads.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/SignaturePads.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Skeletons.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Skeletons.razor.cs index abb72dce8..568bcd7aa 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Skeletons.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Skeletons.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/SlideButtons.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/SlideButtons.razor.cs index 40d035751..49aa9ce73 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/SlideButtons.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/SlideButtons.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Sliders.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Sliders.razor.cs index f5bfbc2a4..26323da23 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Sliders.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Sliders.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/SortableLists.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/SortableLists.razor.cs index b3684580c..4b11867b6 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/SortableLists.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/SortableLists.razor.cs @@ -1,4 +1,9 @@ -namespace BootstrapBlazor.Server.Components.Samples; +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone + +namespace BootstrapBlazor.Server.Components.Samples; /// /// SortableList 示例 diff --git a/src/BootstrapBlazor.Server/Components/Samples/Speeches/Index.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Speeches/Index.razor.cs index c14eb3e09..2fa1f3aa0 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Speeches/Index.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Speeches/Index.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Speeches; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Speeches/Recognizers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Speeches/Recognizers.razor.cs index 87aa4ca15..50ee4f845 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Speeches/Recognizers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Speeches/Recognizers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Speeches; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Speeches/SpeechWaves.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Speeches/SpeechWaves.razor.cs index bbda4070c..adc20163f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Speeches/SpeechWaves.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Speeches/SpeechWaves.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Speeches; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Speeches/Synthesizers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Speeches/Synthesizers.razor.cs index c91f04663..f64b3430c 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Speeches/Synthesizers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Speeches/Synthesizers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Speeches; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Speeches/WebSpeeches.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Speeches/WebSpeeches.razor.cs index 8103a7633..0c487d16d 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Speeches/WebSpeeches.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Speeches/WebSpeeches.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Globalization; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Spinners.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Spinners.razor.cs index 1d434da6c..99fa62223 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Spinners.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Spinners.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Splits.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Splits.razor.cs index 05d4ef1a4..fb5a39df5 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Splits.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Splits.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Splittings.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Splittings.razor.cs index 3dfddfaaf..5353191fe 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Splittings.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Splittings.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Stacks.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Stacks.razor.cs index 0ddb954e3..96c13e062 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Stacks.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Stacks.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Steps.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Steps.razor.cs index 991a35f85..a269253e9 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Steps.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Steps.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/SvgEditors.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/SvgEditors.razor.cs index 14fad2918..ffbcb714a 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/SvgEditors.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/SvgEditors.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/SweetAlerts.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/SweetAlerts.razor.cs index 09c28257a..5cde15e70 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/SweetAlerts.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/SweetAlerts.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/SwitchButtons.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/SwitchButtons.razor.cs index ef4031531..decdc5eae 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/SwitchButtons.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/SwitchButtons.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Switches.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Switches.razor.cs index 74478fe4c..ae52a20f7 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Switches.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Switches.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/Tables.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/Tables.razor.cs index 90b5dc9f9..e28114d9e 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/Tables.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/Tables.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesAttribute.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesAttribute.razor.cs index c082218a9..f969db56b 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesAttribute.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesAttribute.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesAutoRefresh.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesAutoRefresh.razor.cs index ac265dfd0..f58086dba 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesAutoRefresh.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesAutoRefresh.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesCell.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesCell.razor.cs index 04c4a9738..b9c823b2d 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesCell.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesCell.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumn.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumn.razor.cs index cd8ec6548..62c7e30e2 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumn.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumn.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnDrag.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnDrag.razor.cs index 221967eb5..e6167b599 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnDrag.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnDrag.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnList.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnList.razor.cs index a48041307..49e07411a 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnList.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnList.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnResizing.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnResizing.razor.cs index 31ed8397b..7e3eededb 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnResizing.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnResizing.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnTemplate.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnTemplate.razor.cs index 8c9140cad..34050af95 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnTemplate.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesColumnTemplate.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDetailRow.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDetailRow.razor.cs index 5e862e873..ae16284cd 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDetailRow.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDetailRow.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Concurrent; using System.ComponentModel; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDialog.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDialog.razor.cs index b123f7e87..701141be7 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDialog.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDialog.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDynamic.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDynamic.razor.cs index 47d4f09e5..44709f13f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDynamic.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDynamic.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Data; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDynamicExcel.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDynamicExcel.razor.cs index 757f77efa..ffd544e57 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDynamicExcel.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDynamicExcel.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Data; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDynamicObject.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDynamicObject.razor.cs index 8e2e13a3f..c0b223eb9 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDynamicObject.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesDynamicObject.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesEdit.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesEdit.razor.cs index 535598e5e..7e33764c7 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesEdit.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesEdit.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesExcel.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesExcel.razor.cs index 08347850b..4a7af8678 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesExcel.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesExcel.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesExport.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesExport.razor.cs index c1507b8bf..c0c6ea857 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesExport.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesExport.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFilter.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFilter.razor.cs index 801c7df32..f9361af75 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFilter.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFilter.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedColumn.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedColumn.razor.cs index 4da7c21eb..b3f9282d4 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedColumn.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedColumn.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedHeader.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedHeader.razor.cs index 5173d4b9c..2410690a9 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedHeader.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFixedHeader.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFooter.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFooter.razor.cs index 1e235a9f7..7f69b68c1 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFooter.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesFooter.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesHeader.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesHeader.razor.cs index 3fbbca452..92579b8da 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesHeader.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesHeader.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesLoading.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesLoading.razor.cs index 02cb96280..919d6bdb9 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesLoading.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesLoading.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesLookup.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesLookup.razor.cs index 55a9f532e..d94612865 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesLookup.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesLookup.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesNameDrop.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesNameDrop.razor.cs index 101734a5b..49dbbfb3a 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesNameDrop.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesNameDrop.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesPages.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesPages.razor.cs index 08c9086cb..5db40e47f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesPages.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesPages.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesRow.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesRow.razor.cs index 43659e284..99318bf9e 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesRow.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesRow.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesSearch.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesSearch.razor.cs index eaff2957c..d2757dec7 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesSearch.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesSearch.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesSelection.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesSelection.razor.cs index 2ee790659..b25b17c63 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesSelection.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesSelection.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesToolbar.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesToolbar.razor.cs index e450f6d38..97be41f0e 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesToolbar.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesToolbar.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesTracking.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesTracking.razor.cs index 9ae3281be..01468480e 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesTracking.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesTracking.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesTree.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesTree.razor.cs index 1ca79f757..f759cae03 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesTree.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesTree.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesVirtualization.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesVirtualization.razor.cs index c008a63ba..356cf8f16 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesVirtualization.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesVirtualization.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesWrap.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesWrap.razor.cs index 8e6c60b7e..fc25a6ebe 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Table/TablesWrap.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Table/TablesWrap.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Table; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Tabs.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Tabs.razor.cs index ceff6a66a..12f4c081f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Tabs.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Tabs.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Tags.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Tags.razor.cs index d257ac7dc..35e40f4a1 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Tags.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Tags.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/TextAreas.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/TextAreas.razor.cs index e80862539..668384889 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/TextAreas.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/TextAreas.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/ThemeProviders.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/ThemeProviders.razor.cs index 8d0e80a43..5353499bd 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/ThemeProviders.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/ThemeProviders.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/TimePickers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/TimePickers.razor.cs index a56301184..cca942dd9 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/TimePickers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/TimePickers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Timelines.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Timelines.razor.cs index 2f2a07a31..0585ab724 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Timelines.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Timelines.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Concurrent; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Timers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Timers.razor.cs index 7b615f136..4da58475d 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Timers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Timers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Titles.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Titles.razor.cs index 50731fb11..6d6895b1e 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Titles.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Titles.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Toasts.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Toasts.razor.cs index 0f8300e47..c4176703c 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Toasts.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Toasts.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Toggles.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Toggles.razor.cs index 11720383d..ed4028e3f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Toggles.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Toggles.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Tooltips.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Tooltips.razor.cs index d47cadf12..f6392484f 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Tooltips.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Tooltips.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Topologies.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Topologies.razor.cs index 288acc440..65007f7d0 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Topologies.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Topologies.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.JSInterop; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Transfers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Transfers.razor.cs index e0f026342..b12c088ae 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Transfers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Transfers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Transitions.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Transitions.razor.cs index b8ce444bd..9db928d90 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Transitions.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Transitions.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Translators.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Translators.razor.cs index f2b8f0e72..6181cc431 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Translators.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Translators.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Azure.AI.Translation.Text; using System.Globalization; diff --git a/src/BootstrapBlazor.Server/Components/Samples/TreeViews.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/TreeViews.razor.cs index 2fefa107f..aae650daf 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/TreeViews.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/TreeViews.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; using Microsoft.AspNetCore.Components.Web; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Trees.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Trees.razor.cs index 92721c1e1..0fc142bd0 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Trees.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Trees.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; using Microsoft.AspNetCore.Components.Web; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Admin.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Admin.razor.cs index 86caf6bfa..dff337797 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Admin.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Admin.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Tutorials; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Dashboard.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Dashboard.razor.cs index 2e72fd0ce..276c721ad 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Dashboard.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Dashboard.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Tutorials; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/DashboardData.cs b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/DashboardData.cs index 5a50eb74d..97e472580 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/DashboardData.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/DashboardData.cs @@ -1,4 +1,9 @@ -namespace BootstrapBlazor.Server.Components.Samples.Tutorials; +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone + +namespace BootstrapBlazor.Server.Components.Samples.Tutorials; /// /// 仪表盘数据 diff --git a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/DrawingApp.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/DrawingApp.razor.cs index 06778b7c5..3ecdf7ed8 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/DrawingApp.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/DrawingApp.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Tutorials; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Translation/AzureTranslatorServiceExtensions.cs b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Translation/AzureTranslatorServiceExtensions.cs index 55d74c3dd..eff2e4255 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Translation/AzureTranslatorServiceExtensions.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Translation/AzureTranslatorServiceExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Translation/LanguageDataTable.cs b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Translation/LanguageDataTable.cs index 48a7e6e96..7fb015552 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Translation/LanguageDataTable.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Translation/LanguageDataTable.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Data; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Translation/LanguageWriter.cs b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Translation/LanguageWriter.cs index 903c95834..8639a8bf8 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Translation/LanguageWriter.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Translation/LanguageWriter.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Encodings.Web; using System.Text.Json; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Translation/Translator.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Translation/Translator.razor.cs index 894605107..8d389180c 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Translation/Translator.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Translation/Translator.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Data; using System.Globalization; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Waterfall.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Waterfall.razor.cs index 6bd923fed..500ba5870 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Waterfall.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Tutorials/Waterfall.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples.Tutorials; diff --git a/src/BootstrapBlazor.Server/Components/Samples/Uploads.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/Uploads.razor.cs index a513509ba..c09ab30f5 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/Uploads.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/Uploads.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; diff --git a/src/BootstrapBlazor.Server/Components/Samples/ValidateForms.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/ValidateForms.razor.cs index 8a8753912..d46491295 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/ValidateForms.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/ValidateForms.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; using System.Collections.Concurrent; diff --git a/src/BootstrapBlazor.Server/Components/Samples/VideoPlayers.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/VideoPlayers.razor.cs index 728be4c52..6ffee4666 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/VideoPlayers.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/VideoPlayers.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Components/Samples/WebSerials.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/WebSerials.razor.cs index 26264bee7..292e8671e 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/WebSerials.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/WebSerials.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text; diff --git a/src/BootstrapBlazor.Server/Components/Samples/WinBoxes.razor.cs b/src/BootstrapBlazor.Server/Components/Samples/WinBoxes.razor.cs index edc510620..0c584516a 100644 --- a/src/BootstrapBlazor.Server/Components/Samples/WinBoxes.razor.cs +++ b/src/BootstrapBlazor.Server/Components/Samples/WinBoxes.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Components.Samples; diff --git a/src/BootstrapBlazor.Server/Controllers/Api/CodeController.cs b/src/BootstrapBlazor.Server/Controllers/Api/CodeController.cs index 0f6a4c296..e9de113f3 100644 --- a/src/BootstrapBlazor.Server/Controllers/Api/CodeController.cs +++ b/src/BootstrapBlazor.Server/Controllers/Api/CodeController.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Options; diff --git a/src/BootstrapBlazor.Server/Controllers/Api/DispatchController.cs b/src/BootstrapBlazor.Server/Controllers/Api/DispatchController.cs index b5de73b67..720aabd60 100644 --- a/src/BootstrapBlazor.Server/Controllers/Api/DispatchController.cs +++ b/src/BootstrapBlazor.Server/Controllers/Api/DispatchController.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Mvc; using System.Security.Cryptography; diff --git a/src/BootstrapBlazor.Server/Controllers/Api/GiteeController.cs b/src/BootstrapBlazor.Server/Controllers/Api/GiteeController.cs index 38e119eff..4d01fda1a 100644 --- a/src/BootstrapBlazor.Server/Controllers/Api/GiteeController.cs +++ b/src/BootstrapBlazor.Server/Controllers/Api/GiteeController.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Mvc; using RouteAttribute = Microsoft.AspNetCore.Mvc.RouteAttribute; diff --git a/src/BootstrapBlazor.Server/Controllers/Api/LoginController.cs b/src/BootstrapBlazor.Server/Controllers/Api/LoginController.cs index 9c0c1711d..5c4f0e399 100644 --- a/src/BootstrapBlazor.Server/Controllers/Api/LoginController.cs +++ b/src/BootstrapBlazor.Server/Controllers/Api/LoginController.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; diff --git a/src/BootstrapBlazor.Server/Controllers/CultureController.cs b/src/BootstrapBlazor.Server/Controllers/CultureController.cs index 271526265..49da6f17e 100644 --- a/src/BootstrapBlazor.Server/Controllers/CultureController.cs +++ b/src/BootstrapBlazor.Server/Controllers/CultureController.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Localization; using Microsoft.AspNetCore.Mvc; diff --git a/src/BootstrapBlazor.Server/Controllers/WaterfallController.cs b/src/BootstrapBlazor.Server/Controllers/WaterfallController.cs index c0b61d73b..9ad81bacd 100644 --- a/src/BootstrapBlazor.Server/Controllers/WaterfallController.cs +++ b/src/BootstrapBlazor.Server/Controllers/WaterfallController.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Mvc; diff --git a/src/BootstrapBlazor.Server/Data/AttributeItem.cs b/src/BootstrapBlazor.Server/Data/AttributeItem.cs index 499b7aed7..fe2431471 100644 --- a/src/BootstrapBlazor.Server/Data/AttributeItem.cs +++ b/src/BootstrapBlazor.Server/Data/AttributeItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor.Server/Data/CalendarDemoDataHelper.cs b/src/BootstrapBlazor.Server/Data/CalendarDemoDataHelper.cs index a7f5ff4ca..ecaead780 100644 --- a/src/BootstrapBlazor.Server/Data/CalendarDemoDataHelper.cs +++ b/src/BootstrapBlazor.Server/Data/CalendarDemoDataHelper.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Data; diff --git a/src/BootstrapBlazor.Server/Data/CustomDynamicColumnsObjectData.cs b/src/BootstrapBlazor.Server/Data/CustomDynamicColumnsObjectData.cs index 74e95dfe2..2d36aacca 100644 --- a/src/BootstrapBlazor.Server/Data/CustomDynamicColumnsObjectData.cs +++ b/src/BootstrapBlazor.Server/Data/CustomDynamicColumnsObjectData.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Data; diff --git a/src/BootstrapBlazor.Server/Data/CustomDynamicData.cs b/src/BootstrapBlazor.Server/Data/CustomDynamicData.cs index 667d08bac..86987bde0 100644 --- a/src/BootstrapBlazor.Server/Data/CustomDynamicData.cs +++ b/src/BootstrapBlazor.Server/Data/CustomDynamicData.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Dynamic; diff --git a/src/BootstrapBlazor.Server/Data/CustomValidataModel.cs b/src/BootstrapBlazor.Server/Data/CustomValidataModel.cs index 63fba959f..d534d576b 100644 --- a/src/BootstrapBlazor.Server/Data/CustomValidataModel.cs +++ b/src/BootstrapBlazor.Server/Data/CustomValidataModel.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Data; diff --git a/src/BootstrapBlazor.Server/Data/CustomValidateCollectionModel.cs b/src/BootstrapBlazor.Server/Data/CustomValidateCollectionModel.cs index a757a0c7e..455a123b8 100644 --- a/src/BootstrapBlazor.Server/Data/CustomValidateCollectionModel.cs +++ b/src/BootstrapBlazor.Server/Data/CustomValidateCollectionModel.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Data; diff --git a/src/BootstrapBlazor.Server/Data/EventItem.cs b/src/BootstrapBlazor.Server/Data/EventItem.cs index 207203c85..51167c921 100644 --- a/src/BootstrapBlazor.Server/Data/EventItem.cs +++ b/src/BootstrapBlazor.Server/Data/EventItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor.Server/Data/Foo.cs b/src/BootstrapBlazor.Server/Data/Foo.cs index 7ef32e55b..2f55a3fdc 100644 --- a/src/BootstrapBlazor.Server/Data/Foo.cs +++ b/src/BootstrapBlazor.Server/Data/Foo.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; using System.Collections.Concurrent; diff --git a/src/BootstrapBlazor.Server/Data/FooSearchModel.cs b/src/BootstrapBlazor.Server/Data/FooSearchModel.cs index 869cc0c08..22e5aff5b 100644 --- a/src/BootstrapBlazor.Server/Data/FooSearchModel.cs +++ b/src/BootstrapBlazor.Server/Data/FooSearchModel.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Data; diff --git a/src/BootstrapBlazor.Server/Data/GiteePushBody.cs b/src/BootstrapBlazor.Server/Data/GiteePushBody.cs index a85669524..0394290c3 100644 --- a/src/BootstrapBlazor.Server/Data/GiteePushBody.cs +++ b/src/BootstrapBlazor.Server/Data/GiteePushBody.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor.Server/Data/LoginModel.cs b/src/BootstrapBlazor.Server/Data/LoginModel.cs index b1318d023..8fb151d21 100644 --- a/src/BootstrapBlazor.Server/Data/LoginModel.cs +++ b/src/BootstrapBlazor.Server/Data/LoginModel.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Data; diff --git a/src/BootstrapBlazor.Server/Data/Menus.cs b/src/BootstrapBlazor.Server/Data/Menus.cs index 32bec63e3..d58eea132 100644 --- a/src/BootstrapBlazor.Server/Data/Menus.cs +++ b/src/BootstrapBlazor.Server/Data/Menus.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Data; diff --git a/src/BootstrapBlazor.Server/Data/MessageItem.cs b/src/BootstrapBlazor.Server/Data/MessageItem.cs index 184583ab0..3c704efed 100644 --- a/src/BootstrapBlazor.Server/Data/MessageItem.cs +++ b/src/BootstrapBlazor.Server/Data/MessageItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Data; diff --git a/src/BootstrapBlazor.Server/Data/MethodItem.cs b/src/BootstrapBlazor.Server/Data/MethodItem.cs index 431b18cd4..4104040a6 100644 --- a/src/BootstrapBlazor.Server/Data/MethodItem.cs +++ b/src/BootstrapBlazor.Server/Data/MethodItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor.Server/Data/ThemeOption.cs b/src/BootstrapBlazor.Server/Data/ThemeOption.cs index 06149ec25..c5fa405ec 100644 --- a/src/BootstrapBlazor.Server/Data/ThemeOption.cs +++ b/src/BootstrapBlazor.Server/Data/ThemeOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Data; diff --git a/src/BootstrapBlazor.Server/Data/TreeDataFoo.cs b/src/BootstrapBlazor.Server/Data/TreeDataFoo.cs index 7dc197028..c70be9a88 100644 --- a/src/BootstrapBlazor.Server/Data/TreeDataFoo.cs +++ b/src/BootstrapBlazor.Server/Data/TreeDataFoo.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Data; diff --git a/src/BootstrapBlazor.Server/Data/TreeFoo.cs b/src/BootstrapBlazor.Server/Data/TreeFoo.cs index e8012f851..3c9eb6299 100644 --- a/src/BootstrapBlazor.Server/Data/TreeFoo.cs +++ b/src/BootstrapBlazor.Server/Data/TreeFoo.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel.DataAnnotations; diff --git a/src/BootstrapBlazor.Server/Data/User.cs b/src/BootstrapBlazor.Server/Data/User.cs index c68c40328..5d5c40a19 100644 --- a/src/BootstrapBlazor.Server/Data/User.cs +++ b/src/BootstrapBlazor.Server/Data/User.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Data; diff --git a/src/BootstrapBlazor.Server/Data/WeatherForecast.cs b/src/BootstrapBlazor.Server/Data/WeatherForecast.cs index c3875bf61..bb7f9642a 100644 --- a/src/BootstrapBlazor.Server/Data/WeatherForecast.cs +++ b/src/BootstrapBlazor.Server/Data/WeatherForecast.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Data; diff --git a/src/BootstrapBlazor.Server/Data/WebsiteOptions.cs b/src/BootstrapBlazor.Server/Data/WebsiteOptions.cs index b84eda95f..e61fa0def 100644 --- a/src/BootstrapBlazor.Server/Data/WebsiteOptions.cs +++ b/src/BootstrapBlazor.Server/Data/WebsiteOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Data; diff --git a/src/BootstrapBlazor.Server/Extensions/CacheManagerExtensions.cs b/src/BootstrapBlazor.Server/Extensions/CacheManagerExtensions.cs index 5562c7028..5d07de3f5 100644 --- a/src/BootstrapBlazor.Server/Extensions/CacheManagerExtensions.cs +++ b/src/BootstrapBlazor.Server/Extensions/CacheManagerExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Caching.Memory; using System.Globalization; diff --git a/src/BootstrapBlazor.Server/Extensions/DispatchEntryExtensions.cs b/src/BootstrapBlazor.Server/Extensions/DispatchEntryExtensions.cs index 382e5823e..35ffdc852 100644 --- a/src/BootstrapBlazor.Server/Extensions/DispatchEntryExtensions.cs +++ b/src/BootstrapBlazor.Server/Extensions/DispatchEntryExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Extensions; diff --git a/src/BootstrapBlazor.Server/Extensions/IpExtensions.cs b/src/BootstrapBlazor.Server/Extensions/IpExtensions.cs index 5c8dd4269..1f5d096da 100644 --- a/src/BootstrapBlazor.Server/Extensions/IpExtensions.cs +++ b/src/BootstrapBlazor.Server/Extensions/IpExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Extensions; diff --git a/src/BootstrapBlazor.Server/Extensions/JSRuntimeExtensions.cs b/src/BootstrapBlazor.Server/Extensions/JSRuntimeExtensions.cs index 8322131be..db2796923 100644 --- a/src/BootstrapBlazor.Server/Extensions/JSRuntimeExtensions.cs +++ b/src/BootstrapBlazor.Server/Extensions/JSRuntimeExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.JSInterop; diff --git a/src/BootstrapBlazor.Server/Extensions/MenusLocalizerExtensions.cs b/src/BootstrapBlazor.Server/Extensions/MenusLocalizerExtensions.cs index 9fbf8dea4..b21e993d2 100644 --- a/src/BootstrapBlazor.Server/Extensions/MenusLocalizerExtensions.cs +++ b/src/BootstrapBlazor.Server/Extensions/MenusLocalizerExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Routing; diff --git a/src/BootstrapBlazor.Server/Extensions/ServicesExtensions.cs b/src/BootstrapBlazor.Server/Extensions/ServicesExtensions.cs index a161d85eb..783f6f679 100644 --- a/src/BootstrapBlazor.Server/Extensions/ServicesExtensions.cs +++ b/src/BootstrapBlazor.Server/Extensions/ServicesExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using BootstrapBlazor.MeiliSearch.Options; using Microsoft.AspNetCore.Components.Authorization; diff --git a/src/BootstrapBlazor.Server/Extensions/StaticFileResponseContextExtensions.cs b/src/BootstrapBlazor.Server/Extensions/StaticFileResponseContextExtensions.cs index 887b0d00c..1f259b42d 100644 --- a/src/BootstrapBlazor.Server/Extensions/StaticFileResponseContextExtensions.cs +++ b/src/BootstrapBlazor.Server/Extensions/StaticFileResponseContextExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.StaticFiles; using Microsoft.Net.Http.Headers; diff --git a/src/BootstrapBlazor.Server/Extensions/WebSpeechRecognitionErrorExtensions.cs b/src/BootstrapBlazor.Server/Extensions/WebSpeechRecognitionErrorExtensions.cs index c9135e1e8..d80a5d36d 100644 --- a/src/BootstrapBlazor.Server/Extensions/WebSpeechRecognitionErrorExtensions.cs +++ b/src/BootstrapBlazor.Server/Extensions/WebSpeechRecognitionErrorExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor.Server/Program.cs b/src/BootstrapBlazor.Server/Program.cs index 511e25938..149971e2d 100644 --- a/src/BootstrapBlazor.Server/Program.cs +++ b/src/BootstrapBlazor.Server/Program.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using BootstrapBlazor.Server.Components; using Microsoft.AspNetCore.HttpOverrides; diff --git a/src/BootstrapBlazor.Server/Services/ClearUploadFilesService.cs b/src/BootstrapBlazor.Server/Services/ClearUploadFilesService.cs index 81a5cc326..600e63032 100644 --- a/src/BootstrapBlazor.Server/Services/ClearUploadFilesService.cs +++ b/src/BootstrapBlazor.Server/Services/ClearUploadFilesService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Longbow.Tasks; using Microsoft.Extensions.Options; diff --git a/src/BootstrapBlazor.Server/Services/CodeSnippetService.cs b/src/BootstrapBlazor.Server/Services/CodeSnippetService.cs index 17809cd63..23753976a 100644 --- a/src/BootstrapBlazor.Server/Services/CodeSnippetService.cs +++ b/src/BootstrapBlazor.Server/Services/CodeSnippetService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Options; diff --git a/src/BootstrapBlazor.Server/Services/DashboardService.cs b/src/BootstrapBlazor.Server/Services/DashboardService.cs index 17570b8ed..f0d091e74 100644 --- a/src/BootstrapBlazor.Server/Services/DashboardService.cs +++ b/src/BootstrapBlazor.Server/Services/DashboardService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using BootstrapBlazor.Server.Components.Samples.Tutorials; diff --git a/src/BootstrapBlazor.Server/Services/DemoLookupService.cs b/src/BootstrapBlazor.Server/Services/DemoLookupService.cs index 57bb683fb..f75e38489 100644 --- a/src/BootstrapBlazor.Server/Services/DemoLookupService.cs +++ b/src/BootstrapBlazor.Server/Services/DemoLookupService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace Microsoft.Extensions.DependencyInjection; diff --git a/src/BootstrapBlazor.Server/Services/FanControllerDataService.cs b/src/BootstrapBlazor.Server/Services/FanControllerDataService.cs index da48dccc4..a8c730910 100644 --- a/src/BootstrapBlazor.Server/Services/FanControllerDataService.cs +++ b/src/BootstrapBlazor.Server/Services/FanControllerDataService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Services; diff --git a/src/BootstrapBlazor.Server/Services/MenuService.cs b/src/BootstrapBlazor.Server/Services/MenuService.cs index edd92aefd..12b5fe98e 100644 --- a/src/BootstrapBlazor.Server/Services/MenuService.cs +++ b/src/BootstrapBlazor.Server/Services/MenuService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Concurrent; using System.Globalization; diff --git a/src/BootstrapBlazor.Server/Services/MockAuthenticationStateProvider.cs b/src/BootstrapBlazor.Server/Services/MockAuthenticationStateProvider.cs index ee717ec25..17e39b87c 100644 --- a/src/BootstrapBlazor.Server/Services/MockAuthenticationStateProvider.cs +++ b/src/BootstrapBlazor.Server/Services/MockAuthenticationStateProvider.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Authorization; using System.Security.Claims; diff --git a/src/BootstrapBlazor.Server/Services/MockDataTableDynamicService.cs b/src/BootstrapBlazor.Server/Services/MockDataTableDynamicService.cs index a5e467fa1..369aed7e8 100644 --- a/src/BootstrapBlazor.Server/Services/MockDataTableDynamicService.cs +++ b/src/BootstrapBlazor.Server/Services/MockDataTableDynamicService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Data; diff --git a/src/BootstrapBlazor.Server/Services/PackageVersionService.cs b/src/BootstrapBlazor.Server/Services/PackageVersionService.cs index ac07926f7..db4aa9402 100644 --- a/src/BootstrapBlazor.Server/Services/PackageVersionService.cs +++ b/src/BootstrapBlazor.Server/Services/PackageVersionService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Services; diff --git a/src/BootstrapBlazor.Server/Services/TableDemoDataService.cs b/src/BootstrapBlazor.Server/Services/TableDemoDataService.cs index 5a01aa2d8..8f181e7ec 100644 --- a/src/BootstrapBlazor.Server/Services/TableDemoDataService.cs +++ b/src/BootstrapBlazor.Server/Services/TableDemoDataService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Services; diff --git a/src/BootstrapBlazor.Server/Services/WeatherForecastService.cs b/src/BootstrapBlazor.Server/Services/WeatherForecastService.cs index 04f10d323..d53a13b03 100644 --- a/src/BootstrapBlazor.Server/Services/WeatherForecastService.cs +++ b/src/BootstrapBlazor.Server/Services/WeatherForecastService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Server.Services; diff --git a/src/BootstrapBlazor/Attributes/AutoGenerateBaseAttribute.cs b/src/BootstrapBlazor/Attributes/AutoGenerateBaseAttribute.cs index a3958288e..6c6de1db1 100644 --- a/src/BootstrapBlazor/Attributes/AutoGenerateBaseAttribute.cs +++ b/src/BootstrapBlazor/Attributes/AutoGenerateBaseAttribute.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Attributes/AutoGenerateClassAttribute.cs b/src/BootstrapBlazor/Attributes/AutoGenerateClassAttribute.cs index 9c5ae4a7d..af7d2c4f8 100644 --- a/src/BootstrapBlazor/Attributes/AutoGenerateClassAttribute.cs +++ b/src/BootstrapBlazor/Attributes/AutoGenerateClassAttribute.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Attributes/AutoGenerateColumnAttribute.cs b/src/BootstrapBlazor/Attributes/AutoGenerateColumnAttribute.cs index 0b9bd547a..3e9183b75 100644 --- a/src/BootstrapBlazor/Attributes/AutoGenerateColumnAttribute.cs +++ b/src/BootstrapBlazor/Attributes/AutoGenerateColumnAttribute.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Attributes/BootstrapModuleAutoLoaderAttribute.cs b/src/BootstrapBlazor/Attributes/BootstrapModuleAutoLoaderAttribute.cs index cb9bf6097..9a67f191d 100644 --- a/src/BootstrapBlazor/Attributes/BootstrapModuleAutoLoaderAttribute.cs +++ b/src/BootstrapBlazor/Attributes/BootstrapModuleAutoLoaderAttribute.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Attributes/FileValidationAttribute.cs b/src/BootstrapBlazor/Attributes/FileValidationAttribute.cs index 481e28762..acfed7bec 100644 --- a/src/BootstrapBlazor/Attributes/FileValidationAttribute.cs +++ b/src/BootstrapBlazor/Attributes/FileValidationAttribute.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Attributes/JSModuleAutoLoaderAttribute.cs b/src/BootstrapBlazor/Attributes/JSModuleAutoLoaderAttribute.cs index 1c214f169..66d194c9b 100644 --- a/src/BootstrapBlazor/Attributes/JSModuleAutoLoaderAttribute.cs +++ b/src/BootstrapBlazor/Attributes/JSModuleAutoLoaderAttribute.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Attributes/JSModuleNotInheritedAttribute.cs b/src/BootstrapBlazor/Attributes/JSModuleNotInheritedAttribute.cs index 96f3eba1b..dc2005784 100644 --- a/src/BootstrapBlazor/Attributes/JSModuleNotInheritedAttribute.cs +++ b/src/BootstrapBlazor/Attributes/JSModuleNotInheritedAttribute.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Attributes/NullableBoolItemsAttribute.cs b/src/BootstrapBlazor/Attributes/NullableBoolItemsAttribute.cs index 657bf5f5c..d4f169c42 100644 --- a/src/BootstrapBlazor/Attributes/NullableBoolItemsAttribute.cs +++ b/src/BootstrapBlazor/Attributes/NullableBoolItemsAttribute.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Attributes/PlaceHolderAttribute.cs b/src/BootstrapBlazor/Attributes/PlaceHolderAttribute.cs index feb1e9c44..c25ca3bf8 100644 --- a/src/BootstrapBlazor/Attributes/PlaceHolderAttribute.cs +++ b/src/BootstrapBlazor/Attributes/PlaceHolderAttribute.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Attributes/TabItemOptionAttribute.cs b/src/BootstrapBlazor/Attributes/TabItemOptionAttribute.cs index 9b07d264e..ed68f9b42 100644 --- a/src/BootstrapBlazor/Attributes/TabItemOptionAttribute.cs +++ b/src/BootstrapBlazor/Attributes/TabItemOptionAttribute.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Attributes/TableMetadataForAttribute.cs b/src/BootstrapBlazor/Attributes/TableMetadataForAttribute.cs index a01e0641a..d73d3bd6e 100644 --- a/src/BootstrapBlazor/Attributes/TableMetadataForAttribute.cs +++ b/src/BootstrapBlazor/Attributes/TableMetadataForAttribute.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Ajax/Ajax.cs b/src/BootstrapBlazor/Components/Ajax/Ajax.cs index 55d1f85e6..a91131bcf 100644 --- a/src/BootstrapBlazor/Components/Ajax/Ajax.cs +++ b/src/BootstrapBlazor/Components/Ajax/Ajax.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json; diff --git a/src/BootstrapBlazor/Components/Ajax/AjaxOption.cs b/src/BootstrapBlazor/Components/Ajax/AjaxOption.cs index d024c494b..e526fcc97 100644 --- a/src/BootstrapBlazor/Components/Ajax/AjaxOption.cs +++ b/src/BootstrapBlazor/Components/Ajax/AjaxOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Ajax/AjaxService.cs b/src/BootstrapBlazor/Components/Ajax/AjaxService.cs index 35de37c92..6a0f670e3 100644 --- a/src/BootstrapBlazor/Components/Ajax/AjaxService.cs +++ b/src/BootstrapBlazor/Components/Ajax/AjaxService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json; diff --git a/src/BootstrapBlazor/Components/Alert/Alert.razor.cs b/src/BootstrapBlazor/Components/Alert/Alert.razor.cs index 394d30089..2e6c939c5 100644 --- a/src/BootstrapBlazor/Components/Alert/Alert.razor.cs +++ b/src/BootstrapBlazor/Components/Alert/Alert.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Alert/AlertBase.cs b/src/BootstrapBlazor/Components/Alert/AlertBase.cs index 8d69f3149..38a8c3210 100644 --- a/src/BootstrapBlazor/Components/Alert/AlertBase.cs +++ b/src/BootstrapBlazor/Components/Alert/AlertBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Anchor/Anchor.razor.cs b/src/BootstrapBlazor/Components/Anchor/Anchor.razor.cs index d08408917..f7a48cad0 100644 --- a/src/BootstrapBlazor/Components/Anchor/Anchor.razor.cs +++ b/src/BootstrapBlazor/Components/Anchor/Anchor.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/AnchorLink/AnchorLink.razor.cs b/src/BootstrapBlazor/Components/AnchorLink/AnchorLink.razor.cs index 0555f7fc7..c39cda12d 100644 --- a/src/BootstrapBlazor/Components/AnchorLink/AnchorLink.razor.cs +++ b/src/BootstrapBlazor/Components/AnchorLink/AnchorLink.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/AutoComplete/AutoComplete.razor.cs b/src/BootstrapBlazor/Components/AutoComplete/AutoComplete.razor.cs index 84febeb66..151b05a3f 100644 --- a/src/BootstrapBlazor/Components/AutoComplete/AutoComplete.razor.cs +++ b/src/BootstrapBlazor/Components/AutoComplete/AutoComplete.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/AutoComplete/PopoverCompleteBase.cs b/src/BootstrapBlazor/Components/AutoComplete/PopoverCompleteBase.cs index efbc28be5..6c3ff2490 100644 --- a/src/BootstrapBlazor/Components/AutoComplete/PopoverCompleteBase.cs +++ b/src/BootstrapBlazor/Components/AutoComplete/PopoverCompleteBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/AutoFill/AutoFill.razor.cs b/src/BootstrapBlazor/Components/AutoFill/AutoFill.razor.cs index 0d1470b38..129020f16 100644 --- a/src/BootstrapBlazor/Components/AutoFill/AutoFill.razor.cs +++ b/src/BootstrapBlazor/Components/AutoFill/AutoFill.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/AutoRedirect/AutoRedirect.cs b/src/BootstrapBlazor/Components/AutoRedirect/AutoRedirect.cs index 0adcbabff..1c33a3c64 100644 --- a/src/BootstrapBlazor/Components/AutoRedirect/AutoRedirect.cs +++ b/src/BootstrapBlazor/Components/AutoRedirect/AutoRedirect.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Avatar/Avatar.razor.cs b/src/BootstrapBlazor/Components/Avatar/Avatar.razor.cs index ee98ce3a5..0e5e77c80 100644 --- a/src/BootstrapBlazor/Components/Avatar/Avatar.razor.cs +++ b/src/BootstrapBlazor/Components/Avatar/Avatar.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Badge/Badge.razor.cs b/src/BootstrapBlazor/Components/Badge/Badge.razor.cs index b87dc5694..931a83305 100644 --- a/src/BootstrapBlazor/Components/Badge/Badge.razor.cs +++ b/src/BootstrapBlazor/Components/Badge/Badge.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/BaseComponents/BootstrapBlazorRoot.razor.cs b/src/BootstrapBlazor/Components/BaseComponents/BootstrapBlazorRoot.razor.cs index 7aff05467..00b4d75ac 100644 --- a/src/BootstrapBlazor/Components/BaseComponents/BootstrapBlazorRoot.razor.cs +++ b/src/BootstrapBlazor/Components/BaseComponents/BootstrapBlazorRoot.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Logging; diff --git a/src/BootstrapBlazor/Components/BaseComponents/BootstrapComponentBase.cs b/src/BootstrapBlazor/Components/BaseComponents/BootstrapComponentBase.cs index 8169dde74..5bbfc6ea5 100644 --- a/src/BootstrapBlazor/Components/BaseComponents/BootstrapComponentBase.cs +++ b/src/BootstrapBlazor/Components/BaseComponents/BootstrapComponentBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Components/BaseComponents/BootstrapModuleComponentBase.cs b/src/BootstrapBlazor/Components/BaseComponents/BootstrapModuleComponentBase.cs index c07bee6e6..5b1ba65b3 100644 --- a/src/BootstrapBlazor/Components/BaseComponents/BootstrapModuleComponentBase.cs +++ b/src/BootstrapBlazor/Components/BaseComponents/BootstrapModuleComponentBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Reflection; diff --git a/src/BootstrapBlazor/Components/BaseComponents/DynamicElement.cs b/src/BootstrapBlazor/Components/BaseComponents/DynamicElement.cs index 4fc19e818..53f30af13 100644 --- a/src/BootstrapBlazor/Components/BaseComponents/DynamicElement.cs +++ b/src/BootstrapBlazor/Components/BaseComponents/DynamicElement.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; using Microsoft.AspNetCore.Components.Web; diff --git a/src/BootstrapBlazor/Components/BaseComponents/IdComponentBase.cs b/src/BootstrapBlazor/Components/BaseComponents/IdComponentBase.cs index 0a302381e..e09a2f422 100644 --- a/src/BootstrapBlazor/Components/BaseComponents/IdComponentBase.cs +++ b/src/BootstrapBlazor/Components/BaseComponents/IdComponentBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/BaseComponents/RenderTemplate.razor.cs b/src/BootstrapBlazor/Components/BaseComponents/RenderTemplate.razor.cs index 20012bc30..5805a63f3 100644 --- a/src/BootstrapBlazor/Components/BaseComponents/RenderTemplate.razor.cs +++ b/src/BootstrapBlazor/Components/BaseComponents/RenderTemplate.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Block/Block.cs b/src/BootstrapBlazor/Components/Block/Block.cs index a4c4d4dc7..3bc276cb4 100644 --- a/src/BootstrapBlazor/Components/Block/Block.cs +++ b/src/BootstrapBlazor/Components/Block/Block.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Authorization; using Microsoft.AspNetCore.Components.Rendering; diff --git a/src/BootstrapBlazor/Components/Breadcrumb/Breadcrumb.razor.cs b/src/BootstrapBlazor/Components/Breadcrumb/Breadcrumb.razor.cs index 6972e336e..c790638bc 100644 --- a/src/BootstrapBlazor/Components/Breadcrumb/Breadcrumb.razor.cs +++ b/src/BootstrapBlazor/Components/Breadcrumb/Breadcrumb.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Breadcrumb/BreadcrumbItem.cs b/src/BootstrapBlazor/Components/Breadcrumb/BreadcrumbItem.cs index 19af51147..24635d4f8 100644 --- a/src/BootstrapBlazor/Components/Breadcrumb/BreadcrumbItem.cs +++ b/src/BootstrapBlazor/Components/Breadcrumb/BreadcrumbItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/BrowserFinger/BrowserFinger.cs b/src/BootstrapBlazor/Components/BrowserFinger/BrowserFinger.cs index 55bf6e8d5..292b7e9d9 100644 --- a/src/BootstrapBlazor/Components/BrowserFinger/BrowserFinger.cs +++ b/src/BootstrapBlazor/Components/BrowserFinger/BrowserFinger.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Button/Button.razor.cs b/src/BootstrapBlazor/Components/Button/Button.razor.cs index 6f170a173..c501bca49 100644 --- a/src/BootstrapBlazor/Components/Button/Button.razor.cs +++ b/src/BootstrapBlazor/Components/Button/Button.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; diff --git a/src/BootstrapBlazor/Components/Button/ButtonBase.cs b/src/BootstrapBlazor/Components/Button/ButtonBase.cs index 5a929cdbe..3002207e0 100644 --- a/src/BootstrapBlazor/Components/Button/ButtonBase.cs +++ b/src/BootstrapBlazor/Components/Button/ButtonBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; diff --git a/src/BootstrapBlazor/Components/Button/CountButton.cs b/src/BootstrapBlazor/Components/Button/CountButton.cs index 1a15715f2..b58506961 100644 --- a/src/BootstrapBlazor/Components/Button/CountButton.cs +++ b/src/BootstrapBlazor/Components/Button/CountButton.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; diff --git a/src/BootstrapBlazor/Components/Button/DialButton.razor.cs b/src/BootstrapBlazor/Components/Button/DialButton.razor.cs index 65a7b0ea8..f04376f66 100644 --- a/src/BootstrapBlazor/Components/Button/DialButton.razor.cs +++ b/src/BootstrapBlazor/Components/Button/DialButton.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Button/DialButtonItem.cs b/src/BootstrapBlazor/Components/Button/DialButtonItem.cs index 0bfd6c9b6..e871015f1 100644 --- a/src/BootstrapBlazor/Components/Button/DialButtonItem.cs +++ b/src/BootstrapBlazor/Components/Button/DialButtonItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Button/ExportPdfButton.cs b/src/BootstrapBlazor/Components/Button/ExportPdfButton.cs index d06363d45..2988a4acb 100644 --- a/src/BootstrapBlazor/Components/Button/ExportPdfButton.cs +++ b/src/BootstrapBlazor/Components/Button/ExportPdfButton.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Button/ExportPdfButtonSettings.cs b/src/BootstrapBlazor/Components/Button/ExportPdfButtonSettings.cs index ab2c453de..0152234b7 100644 --- a/src/BootstrapBlazor/Components/Button/ExportPdfButtonSettings.cs +++ b/src/BootstrapBlazor/Components/Button/ExportPdfButtonSettings.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Button/LinkButton.razor.cs b/src/BootstrapBlazor/Components/Button/LinkButton.razor.cs index 648648a7e..9225eb98c 100644 --- a/src/BootstrapBlazor/Components/Button/LinkButton.razor.cs +++ b/src/BootstrapBlazor/Components/Button/LinkButton.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Button/PopConfirmButton.razor.cs b/src/BootstrapBlazor/Components/Button/PopConfirmButton.razor.cs index 1dd2abf47..b93a78005 100644 --- a/src/BootstrapBlazor/Components/Button/PopConfirmButton.razor.cs +++ b/src/BootstrapBlazor/Components/Button/PopConfirmButton.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Button/PopConfirmButtonBase.cs b/src/BootstrapBlazor/Components/Button/PopConfirmButtonBase.cs index cf784af75..2359f96c6 100644 --- a/src/BootstrapBlazor/Components/Button/PopConfirmButtonBase.cs +++ b/src/BootstrapBlazor/Components/Button/PopConfirmButtonBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Button/PopConfirmButtonContent.razor.cs b/src/BootstrapBlazor/Components/Button/PopConfirmButtonContent.razor.cs index 777ecb0ca..6ca5c43be 100644 --- a/src/BootstrapBlazor/Components/Button/PopConfirmButtonContent.razor.cs +++ b/src/BootstrapBlazor/Components/Button/PopConfirmButtonContent.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Button/PulseButton.razor.cs b/src/BootstrapBlazor/Components/Button/PulseButton.razor.cs index e87f83ea0..4f83f938c 100644 --- a/src/BootstrapBlazor/Components/Button/PulseButton.razor.cs +++ b/src/BootstrapBlazor/Components/Button/PulseButton.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Button/ShareButton.cs b/src/BootstrapBlazor/Components/Button/ShareButton.cs index a2263b429..7897b5922 100644 --- a/src/BootstrapBlazor/Components/Button/ShareButton.cs +++ b/src/BootstrapBlazor/Components/Button/ShareButton.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Button/ShareButtonContext.cs b/src/BootstrapBlazor/Components/Button/ShareButtonContext.cs index f3513f79b..b6f9387d0 100644 --- a/src/BootstrapBlazor/Components/Button/ShareButtonContext.cs +++ b/src/BootstrapBlazor/Components/Button/ShareButtonContext.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Button/SlideButton.razor.cs b/src/BootstrapBlazor/Components/Button/SlideButton.razor.cs index 935505ca1..e76c05097 100644 --- a/src/BootstrapBlazor/Components/Button/SlideButton.razor.cs +++ b/src/BootstrapBlazor/Components/Button/SlideButton.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Button/SlideButtonItem.cs b/src/BootstrapBlazor/Components/Button/SlideButtonItem.cs index 065d54149..59a7566c7 100644 --- a/src/BootstrapBlazor/Components/Button/SlideButtonItem.cs +++ b/src/BootstrapBlazor/Components/Button/SlideButtonItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Button/SwitchButton.razor.cs b/src/BootstrapBlazor/Components/Button/SwitchButton.razor.cs index 711b6cd8a..95dba0b97 100644 --- a/src/BootstrapBlazor/Components/Button/SwitchButton.razor.cs +++ b/src/BootstrapBlazor/Components/Button/SwitchButton.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Calendar/Calendar.razor.cs b/src/BootstrapBlazor/Components/Calendar/Calendar.razor.cs index 1018d74f0..98298193e 100644 --- a/src/BootstrapBlazor/Components/Calendar/Calendar.razor.cs +++ b/src/BootstrapBlazor/Components/Calendar/Calendar.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; using System.Globalization; diff --git a/src/BootstrapBlazor/Components/Calendar/CalendarCellValue.cs b/src/BootstrapBlazor/Components/Calendar/CalendarCellValue.cs index 792fa1f9f..6b61dcdba 100644 --- a/src/BootstrapBlazor/Components/Calendar/CalendarCellValue.cs +++ b/src/BootstrapBlazor/Components/Calendar/CalendarCellValue.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Camera/Camera.razor.cs b/src/BootstrapBlazor/Components/Camera/Camera.razor.cs index 99b3a3a9a..f38736213 100644 --- a/src/BootstrapBlazor/Components/Camera/Camera.razor.cs +++ b/src/BootstrapBlazor/Components/Camera/Camera.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Globalization; diff --git a/src/BootstrapBlazor/Components/Camera/DeviceItem.cs b/src/BootstrapBlazor/Components/Camera/DeviceItem.cs index 77f21efa8..058159791 100644 --- a/src/BootstrapBlazor/Components/Camera/DeviceItem.cs +++ b/src/BootstrapBlazor/Components/Camera/DeviceItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Captcha/Captcha.razor.cs b/src/BootstrapBlazor/Components/Captcha/Captcha.razor.cs index cbafd0b19..d426c02d4 100644 --- a/src/BootstrapBlazor/Components/Captcha/Captcha.razor.cs +++ b/src/BootstrapBlazor/Components/Captcha/Captcha.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Captcha/CaptchaOption.cs b/src/BootstrapBlazor/Components/Captcha/CaptchaOption.cs index 109d84ae1..6f1706db8 100644 --- a/src/BootstrapBlazor/Components/Captcha/CaptchaOption.cs +++ b/src/BootstrapBlazor/Components/Captcha/CaptchaOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Card/Card.razor.cs b/src/BootstrapBlazor/Components/Card/Card.razor.cs index f2b69a108..a80f9f883 100644 --- a/src/BootstrapBlazor/Components/Card/Card.razor.cs +++ b/src/BootstrapBlazor/Components/Card/Card.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Carousel/Carousel.razor.cs b/src/BootstrapBlazor/Components/Carousel/Carousel.razor.cs index bd1eaef8a..a52a8b978 100644 --- a/src/BootstrapBlazor/Components/Carousel/Carousel.razor.cs +++ b/src/BootstrapBlazor/Components/Carousel/Carousel.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Carousel/CarouselImage.cs b/src/BootstrapBlazor/Components/Carousel/CarouselImage.cs index b590d697f..9b3ae29e2 100644 --- a/src/BootstrapBlazor/Components/Carousel/CarouselImage.cs +++ b/src/BootstrapBlazor/Components/Carousel/CarouselImage.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; diff --git a/src/BootstrapBlazor/Components/Carousel/CarouselItem.cs b/src/BootstrapBlazor/Components/Carousel/CarouselItem.cs index 5fd5b8779..dd5e7e7ca 100644 --- a/src/BootstrapBlazor/Components/Carousel/CarouselItem.cs +++ b/src/BootstrapBlazor/Components/Carousel/CarouselItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Cascader/Cascader.razor.cs b/src/BootstrapBlazor/Components/Cascader/Cascader.razor.cs index 820b2a873..7894d007e 100644 --- a/src/BootstrapBlazor/Components/Cascader/Cascader.razor.cs +++ b/src/BootstrapBlazor/Components/Cascader/Cascader.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Cascader/CascaderItem.cs b/src/BootstrapBlazor/Components/Cascader/CascaderItem.cs index 98f5ea078..64a90cbf7 100644 --- a/src/BootstrapBlazor/Components/Cascader/CascaderItem.cs +++ b/src/BootstrapBlazor/Components/Cascader/CascaderItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Cascader/SubCascader.razor.cs b/src/BootstrapBlazor/Components/Cascader/SubCascader.razor.cs index 379e61023..7510b6226 100644 --- a/src/BootstrapBlazor/Components/Cascader/SubCascader.razor.cs +++ b/src/BootstrapBlazor/Components/Cascader/SubCascader.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Checkbox/Checkbox.razor.cs b/src/BootstrapBlazor/Components/Checkbox/Checkbox.razor.cs index 2b403afe2..d3e6f0ba1 100644 --- a/src/BootstrapBlazor/Components/Checkbox/Checkbox.razor.cs +++ b/src/BootstrapBlazor/Components/Checkbox/Checkbox.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Globalization; diff --git a/src/BootstrapBlazor/Components/Checkbox/CheckboxList.razor.cs b/src/BootstrapBlazor/Components/Checkbox/CheckboxList.razor.cs index 162a1838d..4e405d72b 100644 --- a/src/BootstrapBlazor/Components/Checkbox/CheckboxList.razor.cs +++ b/src/BootstrapBlazor/Components/Checkbox/CheckboxList.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; using System.Collections; diff --git a/src/BootstrapBlazor/Components/Circle/Circle.razor.cs b/src/BootstrapBlazor/Components/Circle/Circle.razor.cs index a6acabb46..5aaf1bb57 100644 --- a/src/BootstrapBlazor/Components/Circle/Circle.razor.cs +++ b/src/BootstrapBlazor/Components/Circle/Circle.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Circle/CircleBase.cs b/src/BootstrapBlazor/Components/Circle/CircleBase.cs index a6a3662e0..7e0ac160e 100644 --- a/src/BootstrapBlazor/Components/Circle/CircleBase.cs +++ b/src/BootstrapBlazor/Components/Circle/CircleBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Clipboard/Clipboard.cs b/src/BootstrapBlazor/Components/Clipboard/Clipboard.cs index 1e5e28585..647f1b8c9 100644 --- a/src/BootstrapBlazor/Components/Clipboard/Clipboard.cs +++ b/src/BootstrapBlazor/Components/Clipboard/Clipboard.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Clipboard/ClipboardItem.cs b/src/BootstrapBlazor/Components/Clipboard/ClipboardItem.cs index 20370bccf..adf54c722 100644 --- a/src/BootstrapBlazor/Components/Clipboard/ClipboardItem.cs +++ b/src/BootstrapBlazor/Components/Clipboard/ClipboardItem.cs @@ -1,4 +1,9 @@ -namespace BootstrapBlazor.Components; +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone + +namespace BootstrapBlazor.Components; /// /// Represents an item on the clipboard with associated data and metadata. diff --git a/src/BootstrapBlazor/Components/Clipboard/ClipboardOption.cs b/src/BootstrapBlazor/Components/Clipboard/ClipboardOption.cs index 9c2b8bf72..841af7b95 100644 --- a/src/BootstrapBlazor/Components/Clipboard/ClipboardOption.cs +++ b/src/BootstrapBlazor/Components/Clipboard/ClipboardOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Clipboard/ClipboardService.cs b/src/BootstrapBlazor/Components/Clipboard/ClipboardService.cs index 668e55ea8..e7bd88d4b 100644 --- a/src/BootstrapBlazor/Components/Clipboard/ClipboardService.cs +++ b/src/BootstrapBlazor/Components/Clipboard/ClipboardService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/ClockPicker/ClockPicker.razor.cs b/src/BootstrapBlazor/Components/ClockPicker/ClockPicker.razor.cs index 03373a188..571a1284f 100644 --- a/src/BootstrapBlazor/Components/ClockPicker/ClockPicker.razor.cs +++ b/src/BootstrapBlazor/Components/ClockPicker/ClockPicker.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Collapse/Collapse.razor.cs b/src/BootstrapBlazor/Components/Collapse/Collapse.razor.cs index a340fca58..3470525a6 100644 --- a/src/BootstrapBlazor/Components/Collapse/Collapse.razor.cs +++ b/src/BootstrapBlazor/Components/Collapse/Collapse.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Collapse/CollapseItem.cs b/src/BootstrapBlazor/Components/Collapse/CollapseItem.cs index 0442324e0..5de4047f7 100644 --- a/src/BootstrapBlazor/Components/Collapse/CollapseItem.cs +++ b/src/BootstrapBlazor/Components/Collapse/CollapseItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/ColorPicker/ColorPicker.razor.cs b/src/BootstrapBlazor/Components/ColorPicker/ColorPicker.razor.cs index 865e42b3f..cef84ba06 100644 --- a/src/BootstrapBlazor/Components/ColorPicker/ColorPicker.razor.cs +++ b/src/BootstrapBlazor/Components/ColorPicker/ColorPicker.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Globalization; diff --git a/src/BootstrapBlazor/Components/ConnectionHub/ConnectionHub.cs b/src/BootstrapBlazor/Components/ConnectionHub/ConnectionHub.cs index 1d767e308..57114bf34 100644 --- a/src/BootstrapBlazor/Components/ConnectionHub/ConnectionHub.cs +++ b/src/BootstrapBlazor/Components/ConnectionHub/ConnectionHub.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/ConnectionHub/ConnectionItem.cs b/src/BootstrapBlazor/Components/ConnectionHub/ConnectionItem.cs index 31fe98b7d..d8f299db4 100644 --- a/src/BootstrapBlazor/Components/ConnectionHub/ConnectionItem.cs +++ b/src/BootstrapBlazor/Components/ConnectionHub/ConnectionItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Console/Console.razor.cs b/src/BootstrapBlazor/Components/Console/Console.razor.cs index 38c18edf4..39447b023 100644 --- a/src/BootstrapBlazor/Components/Console/Console.razor.cs +++ b/src/BootstrapBlazor/Components/Console/Console.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; using System.Reflection.Metadata; diff --git a/src/BootstrapBlazor/Components/Console/ConsoleLogger.razor.cs b/src/BootstrapBlazor/Components/Console/ConsoleLogger.razor.cs index e66d2af1a..daaab7631 100644 --- a/src/BootstrapBlazor/Components/Console/ConsoleLogger.razor.cs +++ b/src/BootstrapBlazor/Components/Console/ConsoleLogger.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Concurrent; diff --git a/src/BootstrapBlazor/Components/Console/ConsoleMessageCollection.cs b/src/BootstrapBlazor/Components/Console/ConsoleMessageCollection.cs index bf60cdcd5..97a0ee9f7 100644 --- a/src/BootstrapBlazor/Components/Console/ConsoleMessageCollection.cs +++ b/src/BootstrapBlazor/Components/Console/ConsoleMessageCollection.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections; using System.Collections.Concurrent; diff --git a/src/BootstrapBlazor/Components/Console/ConsoleMessageItem.cs b/src/BootstrapBlazor/Components/Console/ConsoleMessageItem.cs index d7bc617e8..a02011c32 100644 --- a/src/BootstrapBlazor/Components/Console/ConsoleMessageItem.cs +++ b/src/BootstrapBlazor/Components/Console/ConsoleMessageItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/ContextMenu/ContextMenu.razor.cs b/src/BootstrapBlazor/Components/ContextMenu/ContextMenu.razor.cs index d53b39ea1..9ccf441ae 100644 --- a/src/BootstrapBlazor/Components/ContextMenu/ContextMenu.razor.cs +++ b/src/BootstrapBlazor/Components/ContextMenu/ContextMenu.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; diff --git a/src/BootstrapBlazor/Components/ContextMenu/ContextMenuItem.cs b/src/BootstrapBlazor/Components/ContextMenu/ContextMenuItem.cs index 01cb6302d..4c836febb 100644 --- a/src/BootstrapBlazor/Components/ContextMenu/ContextMenuItem.cs +++ b/src/BootstrapBlazor/Components/ContextMenu/ContextMenuItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/ContextMenu/ContextMenuTrigger.cs b/src/BootstrapBlazor/Components/ContextMenu/ContextMenuTrigger.cs index faeb7076e..1bbbb60fd 100644 --- a/src/BootstrapBlazor/Components/ContextMenu/ContextMenuTrigger.cs +++ b/src/BootstrapBlazor/Components/ContextMenu/ContextMenuTrigger.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; using Microsoft.AspNetCore.Components.Web; diff --git a/src/BootstrapBlazor/Components/ContextMenu/ContextMenuZone.razor.cs b/src/BootstrapBlazor/Components/ContextMenu/ContextMenuZone.razor.cs index 26990109a..4b5cd9e3e 100644 --- a/src/BootstrapBlazor/Components/ContextMenu/ContextMenuZone.razor.cs +++ b/src/BootstrapBlazor/Components/ContextMenu/ContextMenuZone.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; diff --git a/src/BootstrapBlazor/Components/CountUp/CountUp.razor.cs b/src/BootstrapBlazor/Components/CountUp/CountUp.razor.cs index 328a61757..9a71db9f2 100644 --- a/src/BootstrapBlazor/Components/CountUp/CountUp.razor.cs +++ b/src/BootstrapBlazor/Components/CountUp/CountUp.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/CountUp/CountUpOption.cs b/src/BootstrapBlazor/Components/CountUp/CountUpOption.cs index 584a085f6..7f764a00c 100644 --- a/src/BootstrapBlazor/Components/CountUp/CountUpOption.cs +++ b/src/BootstrapBlazor/Components/CountUp/CountUpOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Components/DateTimePicker/DatePickerBody.razor.cs b/src/BootstrapBlazor/Components/DateTimePicker/DatePickerBody.razor.cs index bc45b52ed..6c7291033 100644 --- a/src/BootstrapBlazor/Components/DateTimePicker/DatePickerBody.razor.cs +++ b/src/BootstrapBlazor/Components/DateTimePicker/DatePickerBody.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/DateTimePicker/DatePickerCell.razor.cs b/src/BootstrapBlazor/Components/DateTimePicker/DatePickerCell.razor.cs index bd663a194..62f85d4e9 100644 --- a/src/BootstrapBlazor/Components/DateTimePicker/DatePickerCell.razor.cs +++ b/src/BootstrapBlazor/Components/DateTimePicker/DatePickerCell.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/DateTimePicker/DateTimePicker.razor.cs b/src/BootstrapBlazor/Components/DateTimePicker/DateTimePicker.razor.cs index f9aa6f3d9..6039190de 100644 --- a/src/BootstrapBlazor/Components/DateTimePicker/DateTimePicker.razor.cs +++ b/src/BootstrapBlazor/Components/DateTimePicker/DateTimePicker.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; using System.Globalization; diff --git a/src/BootstrapBlazor/Components/DateTimePicker/PopoverDropdownBase.cs b/src/BootstrapBlazor/Components/DateTimePicker/PopoverDropdownBase.cs index aeb897a68..63ba34323 100644 --- a/src/BootstrapBlazor/Components/DateTimePicker/PopoverDropdownBase.cs +++ b/src/BootstrapBlazor/Components/DateTimePicker/PopoverDropdownBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/DateTimePicker/TimePickerOption.cs b/src/BootstrapBlazor/Components/DateTimePicker/TimePickerOption.cs index 8ae8ee78e..ff62c39a4 100644 --- a/src/BootstrapBlazor/Components/DateTimePicker/TimePickerOption.cs +++ b/src/BootstrapBlazor/Components/DateTimePicker/TimePickerOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/DateTimePicker/TimePickerSetting.cs b/src/BootstrapBlazor/Components/DateTimePicker/TimePickerSetting.cs index 03f3ed90f..c385de2e8 100644 --- a/src/BootstrapBlazor/Components/DateTimePicker/TimePickerSetting.cs +++ b/src/BootstrapBlazor/Components/DateTimePicker/TimePickerSetting.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/DateTimeRange/DateTimeRange.razor.cs b/src/BootstrapBlazor/Components/DateTimeRange/DateTimeRange.razor.cs index 2fc2e2d0b..1ea6ceb58 100644 --- a/src/BootstrapBlazor/Components/DateTimeRange/DateTimeRange.razor.cs +++ b/src/BootstrapBlazor/Components/DateTimeRange/DateTimeRange.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; using System.Globalization; diff --git a/src/BootstrapBlazor/Components/DateTimeRange/DateTimeRangeSidebarItem.cs b/src/BootstrapBlazor/Components/DateTimeRange/DateTimeRangeSidebarItem.cs index db0fae569..c4c6e52af 100644 --- a/src/BootstrapBlazor/Components/DateTimeRange/DateTimeRangeSidebarItem.cs +++ b/src/BootstrapBlazor/Components/DateTimeRange/DateTimeRangeSidebarItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/DateTimeRange/DateTimeRangeValue.cs b/src/BootstrapBlazor/Components/DateTimeRange/DateTimeRangeValue.cs index bad4a18a1..0400ce4e4 100644 --- a/src/BootstrapBlazor/Components/DateTimeRange/DateTimeRangeValue.cs +++ b/src/BootstrapBlazor/Components/DateTimeRange/DateTimeRangeValue.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Dialog/Dialog.razor.cs b/src/BootstrapBlazor/Components/Dialog/Dialog.razor.cs index 5920c1301..aaec0956c 100644 --- a/src/BootstrapBlazor/Components/Dialog/Dialog.razor.cs +++ b/src/BootstrapBlazor/Components/Dialog/Dialog.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Dialog/DialogBase.cs b/src/BootstrapBlazor/Components/Dialog/DialogBase.cs index 4bbc3a8cd..3f51ae81b 100644 --- a/src/BootstrapBlazor/Components/Dialog/DialogBase.cs +++ b/src/BootstrapBlazor/Components/Dialog/DialogBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Dialog/DialogCloseButton.cs b/src/BootstrapBlazor/Components/Dialog/DialogCloseButton.cs index 5b8a1de44..58ee70b01 100644 --- a/src/BootstrapBlazor/Components/Dialog/DialogCloseButton.cs +++ b/src/BootstrapBlazor/Components/Dialog/DialogCloseButton.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Dialog/DialogOption.cs b/src/BootstrapBlazor/Components/Dialog/DialogOption.cs index 8761f5f2f..6d0381cb6 100644 --- a/src/BootstrapBlazor/Components/Dialog/DialogOption.cs +++ b/src/BootstrapBlazor/Components/Dialog/DialogOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Dialog/DialogResult.cs b/src/BootstrapBlazor/Components/Dialog/DialogResult.cs index e1cdcf60c..88596e712 100644 --- a/src/BootstrapBlazor/Components/Dialog/DialogResult.cs +++ b/src/BootstrapBlazor/Components/Dialog/DialogResult.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Dialog/DialogSaveButton.cs b/src/BootstrapBlazor/Components/Dialog/DialogSaveButton.cs index afd0cfda5..d8dacd4aa 100644 --- a/src/BootstrapBlazor/Components/Dialog/DialogSaveButton.cs +++ b/src/BootstrapBlazor/Components/Dialog/DialogSaveButton.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Dialog/DialogService.cs b/src/BootstrapBlazor/Components/Dialog/DialogService.cs index f266bc028..006b6d77d 100644 --- a/src/BootstrapBlazor/Components/Dialog/DialogService.cs +++ b/src/BootstrapBlazor/Components/Dialog/DialogService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Dialog/EditDialog.razor.cs b/src/BootstrapBlazor/Components/Dialog/EditDialog.razor.cs index 211d4ec6d..0469069be 100644 --- a/src/BootstrapBlazor/Components/Dialog/EditDialog.razor.cs +++ b/src/BootstrapBlazor/Components/Dialog/EditDialog.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Dialog/EditDialogOption.cs b/src/BootstrapBlazor/Components/Dialog/EditDialogOption.cs index 67b53edf6..543dcd9a2 100644 --- a/src/BootstrapBlazor/Components/Dialog/EditDialogOption.cs +++ b/src/BootstrapBlazor/Components/Dialog/EditDialogOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; diff --git a/src/BootstrapBlazor/Components/Dialog/IResultDialog.cs b/src/BootstrapBlazor/Components/Dialog/IResultDialog.cs index 20dd27875..bd1f16e1b 100644 --- a/src/BootstrapBlazor/Components/Dialog/IResultDialog.cs +++ b/src/BootstrapBlazor/Components/Dialog/IResultDialog.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Dialog/IconDialog.razor.cs b/src/BootstrapBlazor/Components/Dialog/IconDialog.razor.cs index 3d00ea1db..5bdfcbbd4 100644 --- a/src/BootstrapBlazor/Components/Dialog/IconDialog.razor.cs +++ b/src/BootstrapBlazor/Components/Dialog/IconDialog.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Dialog/ResultDialogFooter.razor.cs b/src/BootstrapBlazor/Components/Dialog/ResultDialogFooter.razor.cs index 7eae46116..c355e37d5 100644 --- a/src/BootstrapBlazor/Components/Dialog/ResultDialogFooter.razor.cs +++ b/src/BootstrapBlazor/Components/Dialog/ResultDialogFooter.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Dialog/ResultDialogOption.cs b/src/BootstrapBlazor/Components/Dialog/ResultDialogOption.cs index a7f9e1d96..07e332956 100644 --- a/src/BootstrapBlazor/Components/Dialog/ResultDialogOption.cs +++ b/src/BootstrapBlazor/Components/Dialog/ResultDialogOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Dialog/SearchDialog.razor.cs b/src/BootstrapBlazor/Components/Dialog/SearchDialog.razor.cs index 6e5604fb9..888f6e795 100644 --- a/src/BootstrapBlazor/Components/Dialog/SearchDialog.razor.cs +++ b/src/BootstrapBlazor/Components/Dialog/SearchDialog.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Dialog/SearchDialogOption.cs b/src/BootstrapBlazor/Components/Dialog/SearchDialogOption.cs index 0665accb0..9edcb4c95 100644 --- a/src/BootstrapBlazor/Components/Dialog/SearchDialogOption.cs +++ b/src/BootstrapBlazor/Components/Dialog/SearchDialogOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Display/Display.razor.cs b/src/BootstrapBlazor/Components/Display/Display.razor.cs index 25c830c4b..cd6778296 100644 --- a/src/BootstrapBlazor/Components/Display/Display.razor.cs +++ b/src/BootstrapBlazor/Components/Display/Display.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections; using System.Linq.Expressions; diff --git a/src/BootstrapBlazor/Components/Display/DisplayBase.cs b/src/BootstrapBlazor/Components/Display/DisplayBase.cs index 6c100c9b6..5dcc2d05a 100644 --- a/src/BootstrapBlazor/Components/Display/DisplayBase.cs +++ b/src/BootstrapBlazor/Components/Display/DisplayBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; using System.Linq.Expressions; diff --git a/src/BootstrapBlazor/Components/Divider/Divider.razor.cs b/src/BootstrapBlazor/Components/Divider/Divider.razor.cs index 20112ac0b..5d7304858 100644 --- a/src/BootstrapBlazor/Components/Divider/Divider.razor.cs +++ b/src/BootstrapBlazor/Components/Divider/Divider.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Download/Download.cs b/src/BootstrapBlazor/Components/Download/Download.cs index ef30e256b..787a592d9 100644 --- a/src/BootstrapBlazor/Components/Download/Download.cs +++ b/src/BootstrapBlazor/Components/Download/Download.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Download/DownloadOption.cs b/src/BootstrapBlazor/Components/Download/DownloadOption.cs index 76cae03aa..56b59112e 100644 --- a/src/BootstrapBlazor/Components/Download/DownloadOption.cs +++ b/src/BootstrapBlazor/Components/Download/DownloadOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Download/DownloadService.cs b/src/BootstrapBlazor/Components/Download/DownloadService.cs index 7123277b0..036665514 100644 --- a/src/BootstrapBlazor/Components/Download/DownloadService.cs +++ b/src/BootstrapBlazor/Components/Download/DownloadService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/DragDrap/DragDropService.cs b/src/BootstrapBlazor/Components/DragDrap/DragDropService.cs index c9419a296..f6a7b4a9a 100644 --- a/src/BootstrapBlazor/Components/DragDrap/DragDropService.cs +++ b/src/BootstrapBlazor/Components/DragDrap/DragDropService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/DragDrap/Dropzone.razor.cs b/src/BootstrapBlazor/Components/DragDrap/Dropzone.razor.cs index 0b5fceba1..f8b08f20e 100644 --- a/src/BootstrapBlazor/Components/DragDrap/Dropzone.razor.cs +++ b/src/BootstrapBlazor/Components/DragDrap/Dropzone.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text; diff --git a/src/BootstrapBlazor/Components/Drawer/Drawer.razor.cs b/src/BootstrapBlazor/Components/Drawer/Drawer.razor.cs index 6d12bdceb..7e1e20448 100644 --- a/src/BootstrapBlazor/Components/Drawer/Drawer.razor.cs +++ b/src/BootstrapBlazor/Components/Drawer/Drawer.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Drawer/DrawerContainer.cs b/src/BootstrapBlazor/Components/Drawer/DrawerContainer.cs index 39b023557..fc08a80e2 100644 --- a/src/BootstrapBlazor/Components/Drawer/DrawerContainer.cs +++ b/src/BootstrapBlazor/Components/Drawer/DrawerContainer.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; diff --git a/src/BootstrapBlazor/Components/Drawer/DrawerOption.cs b/src/BootstrapBlazor/Components/Drawer/DrawerOption.cs index 86f9658bf..1d6e518a7 100644 --- a/src/BootstrapBlazor/Components/Drawer/DrawerOption.cs +++ b/src/BootstrapBlazor/Components/Drawer/DrawerOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Drawer/DrawerService.cs b/src/BootstrapBlazor/Components/Drawer/DrawerService.cs index 5d08d6f4c..b05b75b12 100644 --- a/src/BootstrapBlazor/Components/Drawer/DrawerService.cs +++ b/src/BootstrapBlazor/Components/Drawer/DrawerService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Dropdown/Dropdown.razor.cs b/src/BootstrapBlazor/Components/Dropdown/Dropdown.razor.cs index 385439553..08985d296 100644 --- a/src/BootstrapBlazor/Components/Dropdown/Dropdown.razor.cs +++ b/src/BootstrapBlazor/Components/Dropdown/Dropdown.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/DropdownWidget/DropdownWidget.razor.cs b/src/BootstrapBlazor/Components/DropdownWidget/DropdownWidget.razor.cs index ae84d07ae..4fbb64d3d 100644 --- a/src/BootstrapBlazor/Components/DropdownWidget/DropdownWidget.razor.cs +++ b/src/BootstrapBlazor/Components/DropdownWidget/DropdownWidget.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/DropdownWidget/DropdownWidgetItem.cs b/src/BootstrapBlazor/Components/DropdownWidget/DropdownWidgetItem.cs index 7cb4f4c94..75271aa1e 100644 --- a/src/BootstrapBlazor/Components/DropdownWidget/DropdownWidgetItem.cs +++ b/src/BootstrapBlazor/Components/DropdownWidget/DropdownWidgetItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/EditorForm/EditorForm.razor.cs b/src/BootstrapBlazor/Components/EditorForm/EditorForm.razor.cs index b79b5f8c9..0d8c6318b 100644 --- a/src/BootstrapBlazor/Components/EditorForm/EditorForm.razor.cs +++ b/src/BootstrapBlazor/Components/EditorForm/EditorForm.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/EditorForm/EditorItem.cs b/src/BootstrapBlazor/Components/EditorForm/EditorItem.cs index b143ef8ef..4074beda3 100644 --- a/src/BootstrapBlazor/Components/EditorForm/EditorItem.cs +++ b/src/BootstrapBlazor/Components/EditorForm/EditorItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; using System.Linq.Expressions; diff --git a/src/BootstrapBlazor/Components/EditorForm/IEditorItem.cs b/src/BootstrapBlazor/Components/EditorForm/IEditorItem.cs index 10a44f893..714c78208 100644 --- a/src/BootstrapBlazor/Components/EditorForm/IEditorItem.cs +++ b/src/BootstrapBlazor/Components/EditorForm/IEditorItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/EditorForm/IShowLabel.cs b/src/BootstrapBlazor/Components/EditorForm/IShowLabel.cs index 12c0cd4d8..d52461451 100644 --- a/src/BootstrapBlazor/Components/EditorForm/IShowLabel.cs +++ b/src/BootstrapBlazor/Components/EditorForm/IShowLabel.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Empty/Empty.razor.cs b/src/BootstrapBlazor/Components/Empty/Empty.razor.cs index a37d2e823..b5dcf89f7 100644 --- a/src/BootstrapBlazor/Components/Empty/Empty.razor.cs +++ b/src/BootstrapBlazor/Components/Empty/Empty.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/ErrorLogger/ErrorLogger.cs b/src/BootstrapBlazor/Components/ErrorLogger/ErrorLogger.cs index f8763dfc5..a151eed66 100644 --- a/src/BootstrapBlazor/Components/ErrorLogger/ErrorLogger.cs +++ b/src/BootstrapBlazor/Components/ErrorLogger/ErrorLogger.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; using Microsoft.AspNetCore.Components.Web; diff --git a/src/BootstrapBlazor/Components/ErrorLogger/IErrorLogger.cs b/src/BootstrapBlazor/Components/ErrorLogger/IErrorLogger.cs index d6a571a37..218a4ea5f 100644 --- a/src/BootstrapBlazor/Components/ErrorLogger/IErrorLogger.cs +++ b/src/BootstrapBlazor/Components/ErrorLogger/IErrorLogger.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/ErrorLogger/IHandlerException.cs b/src/BootstrapBlazor/Components/ErrorLogger/IHandlerException.cs index aaca3e992..bd5e39d83 100644 --- a/src/BootstrapBlazor/Components/ErrorLogger/IHandlerException.cs +++ b/src/BootstrapBlazor/Components/ErrorLogger/IHandlerException.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/EyeDropper/EyeDropper.cs b/src/BootstrapBlazor/Components/EyeDropper/EyeDropper.cs index 3d34fbf9d..d58d9e426 100644 --- a/src/BootstrapBlazor/Components/EyeDropper/EyeDropper.cs +++ b/src/BootstrapBlazor/Components/EyeDropper/EyeDropper.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/EyeDropper/EyeDropperOption.cs b/src/BootstrapBlazor/Components/EyeDropper/EyeDropperOption.cs index 8f110f6c1..2bfe4c4a6 100644 --- a/src/BootstrapBlazor/Components/EyeDropper/EyeDropperOption.cs +++ b/src/BootstrapBlazor/Components/EyeDropper/EyeDropperOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/EyeDropper/EyeDropperService.cs b/src/BootstrapBlazor/Components/EyeDropper/EyeDropperService.cs index fea9e38d4..4953a7b84 100644 --- a/src/BootstrapBlazor/Components/EyeDropper/EyeDropperService.cs +++ b/src/BootstrapBlazor/Components/EyeDropper/EyeDropperService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/FileIcon/FileIcon.razor.cs b/src/BootstrapBlazor/Components/FileIcon/FileIcon.razor.cs index 5194f1760..ee8f3493b 100644 --- a/src/BootstrapBlazor/Components/FileIcon/FileIcon.razor.cs +++ b/src/BootstrapBlazor/Components/FileIcon/FileIcon.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Filters/BoolFilter.razor.cs b/src/BootstrapBlazor/Components/Filters/BoolFilter.razor.cs index 8fa59b90e..495963c47 100644 --- a/src/BootstrapBlazor/Components/Filters/BoolFilter.razor.cs +++ b/src/BootstrapBlazor/Components/Filters/BoolFilter.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Filters/DateTimeFilter.razor.cs b/src/BootstrapBlazor/Components/Filters/DateTimeFilter.razor.cs index 1b78bf46c..6c2a70f48 100644 --- a/src/BootstrapBlazor/Components/Filters/DateTimeFilter.razor.cs +++ b/src/BootstrapBlazor/Components/Filters/DateTimeFilter.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Filters/EnumFilter.razor.cs b/src/BootstrapBlazor/Components/Filters/EnumFilter.razor.cs index 4803f1d09..b8d1117ce 100644 --- a/src/BootstrapBlazor/Components/Filters/EnumFilter.razor.cs +++ b/src/BootstrapBlazor/Components/Filters/EnumFilter.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Filters/FilterBase.cs b/src/BootstrapBlazor/Components/Filters/FilterBase.cs index 05de84832..1d91551d0 100644 --- a/src/BootstrapBlazor/Components/Filters/FilterBase.cs +++ b/src/BootstrapBlazor/Components/Filters/FilterBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Filters/FilterButton.razor.cs b/src/BootstrapBlazor/Components/Filters/FilterButton.razor.cs index 701667407..bea392b73 100644 --- a/src/BootstrapBlazor/Components/Filters/FilterButton.razor.cs +++ b/src/BootstrapBlazor/Components/Filters/FilterButton.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Filters/FilterKeyValueAction.cs b/src/BootstrapBlazor/Components/Filters/FilterKeyValueAction.cs index c455695e8..fb3c62e23 100644 --- a/src/BootstrapBlazor/Components/Filters/FilterKeyValueAction.cs +++ b/src/BootstrapBlazor/Components/Filters/FilterKeyValueAction.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Components/Filters/FilterLogicItem.razor.cs b/src/BootstrapBlazor/Components/Filters/FilterLogicItem.razor.cs index 577e25c6e..ed85b4c36 100644 --- a/src/BootstrapBlazor/Components/Filters/FilterLogicItem.razor.cs +++ b/src/BootstrapBlazor/Components/Filters/FilterLogicItem.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Filters/IFilter.cs b/src/BootstrapBlazor/Components/Filters/IFilter.cs index 25f60629e..6b5057150 100644 --- a/src/BootstrapBlazor/Components/Filters/IFilter.cs +++ b/src/BootstrapBlazor/Components/Filters/IFilter.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Filters/IFilterAction.cs b/src/BootstrapBlazor/Components/Filters/IFilterAction.cs index 8634c38ba..a755b2ae1 100644 --- a/src/BootstrapBlazor/Components/Filters/IFilterAction.cs +++ b/src/BootstrapBlazor/Components/Filters/IFilterAction.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Filters/LookupFilter.razor.cs b/src/BootstrapBlazor/Components/Filters/LookupFilter.razor.cs index 9bb5d42f7..5b722e51e 100644 --- a/src/BootstrapBlazor/Components/Filters/LookupFilter.razor.cs +++ b/src/BootstrapBlazor/Components/Filters/LookupFilter.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Filters/MultiFilter.razor.cs b/src/BootstrapBlazor/Components/Filters/MultiFilter.razor.cs index 8eaad010c..44a14c8f8 100644 --- a/src/BootstrapBlazor/Components/Filters/MultiFilter.razor.cs +++ b/src/BootstrapBlazor/Components/Filters/MultiFilter.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Filters/NumberFilter.razor.cs b/src/BootstrapBlazor/Components/Filters/NumberFilter.razor.cs index 18ee784b6..c74e30f69 100644 --- a/src/BootstrapBlazor/Components/Filters/NumberFilter.razor.cs +++ b/src/BootstrapBlazor/Components/Filters/NumberFilter.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Filters/SearchFilterAction.cs b/src/BootstrapBlazor/Components/Filters/SearchFilterAction.cs index b00dcfec0..9cb238e7c 100644 --- a/src/BootstrapBlazor/Components/Filters/SearchFilterAction.cs +++ b/src/BootstrapBlazor/Components/Filters/SearchFilterAction.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Filters/StringFilter.razor.cs b/src/BootstrapBlazor/Components/Filters/StringFilter.razor.cs index 6dadbe192..8e07b5c6b 100644 --- a/src/BootstrapBlazor/Components/Filters/StringFilter.razor.cs +++ b/src/BootstrapBlazor/Components/Filters/StringFilter.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Filters/TableFilter.razor.cs b/src/BootstrapBlazor/Components/Filters/TableFilter.razor.cs index 11070552c..4f6a5ba07 100644 --- a/src/BootstrapBlazor/Components/Filters/TableFilter.razor.cs +++ b/src/BootstrapBlazor/Components/Filters/TableFilter.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/FlipClock/FlipClock.razor.cs b/src/BootstrapBlazor/Components/FlipClock/FlipClock.razor.cs index 3aef8376d..97c1e1af2 100644 --- a/src/BootstrapBlazor/Components/FlipClock/FlipClock.razor.cs +++ b/src/BootstrapBlazor/Components/FlipClock/FlipClock.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Footer/Footer.razor.cs b/src/BootstrapBlazor/Components/Footer/Footer.razor.cs index ec4add2e7..83c1ea875 100644 --- a/src/BootstrapBlazor/Components/Footer/Footer.razor.cs +++ b/src/BootstrapBlazor/Components/Footer/Footer.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/FullScreen/FullScreen.cs b/src/BootstrapBlazor/Components/FullScreen/FullScreen.cs index 4b914598b..84a6d47ee 100644 --- a/src/BootstrapBlazor/Components/FullScreen/FullScreen.cs +++ b/src/BootstrapBlazor/Components/FullScreen/FullScreen.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/FullScreen/FullScreenButton.razor.cs b/src/BootstrapBlazor/Components/FullScreen/FullScreenButton.razor.cs index 4295c861a..41484efee 100644 --- a/src/BootstrapBlazor/Components/FullScreen/FullScreenButton.razor.cs +++ b/src/BootstrapBlazor/Components/FullScreen/FullScreenButton.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/FullScreen/FullScreenOption.cs b/src/BootstrapBlazor/Components/FullScreen/FullScreenOption.cs index c46f07460..a9b1da372 100644 --- a/src/BootstrapBlazor/Components/FullScreen/FullScreenOption.cs +++ b/src/BootstrapBlazor/Components/FullScreen/FullScreenOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/FullScreen/FullScreenService.cs b/src/BootstrapBlazor/Components/FullScreen/FullScreenService.cs index f64c32ab1..09fc23d1e 100644 --- a/src/BootstrapBlazor/Components/FullScreen/FullScreenService.cs +++ b/src/BootstrapBlazor/Components/FullScreen/FullScreenService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Geolocation/GeolocationPosition.cs b/src/BootstrapBlazor/Components/Geolocation/GeolocationPosition.cs index b9622f711..50a61d716 100644 --- a/src/BootstrapBlazor/Components/Geolocation/GeolocationPosition.cs +++ b/src/BootstrapBlazor/Components/Geolocation/GeolocationPosition.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/GoTop/GoTop.razor.cs b/src/BootstrapBlazor/Components/GoTop/GoTop.razor.cs index 8c8eb7ac2..7f80676cd 100644 --- a/src/BootstrapBlazor/Components/GoTop/GoTop.razor.cs +++ b/src/BootstrapBlazor/Components/GoTop/GoTop.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/GroupBox/GroupBox.razor.cs b/src/BootstrapBlazor/Components/GroupBox/GroupBox.razor.cs index 8f2de31ec..8ac60088a 100644 --- a/src/BootstrapBlazor/Components/GroupBox/GroupBox.razor.cs +++ b/src/BootstrapBlazor/Components/GroupBox/GroupBox.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Handwritten/Handwritten.razor.cs b/src/BootstrapBlazor/Components/Handwritten/Handwritten.razor.cs index 24bcfb2eb..eadc92c1a 100644 --- a/src/BootstrapBlazor/Components/Handwritten/Handwritten.razor.cs +++ b/src/BootstrapBlazor/Components/Handwritten/Handwritten.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/HtmlTag/Link.razor.cs b/src/BootstrapBlazor/Components/HtmlTag/Link.razor.cs index 532b3f713..5e2cea362 100644 --- a/src/BootstrapBlazor/Components/HtmlTag/Link.razor.cs +++ b/src/BootstrapBlazor/Components/HtmlTag/Link.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/HtmlTag/Script.razor.cs b/src/BootstrapBlazor/Components/HtmlTag/Script.razor.cs index 875dc5e7c..725ba2c20 100644 --- a/src/BootstrapBlazor/Components/HtmlTag/Script.razor.cs +++ b/src/BootstrapBlazor/Components/HtmlTag/Script.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/IFrame/IFrame.razor.cs b/src/BootstrapBlazor/Components/IFrame/IFrame.razor.cs index 199a086c9..742f230eb 100644 --- a/src/BootstrapBlazor/Components/IFrame/IFrame.razor.cs +++ b/src/BootstrapBlazor/Components/IFrame/IFrame.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/IPLocator/BaiDuIPLocator.cs b/src/BootstrapBlazor/Components/IPLocator/BaiDuIPLocator.cs index baf237e75..0cd372b0b 100644 --- a/src/BootstrapBlazor/Components/IPLocator/BaiDuIPLocator.cs +++ b/src/BootstrapBlazor/Components/IPLocator/BaiDuIPLocator.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/IPLocator/DefaultIPLocator.cs b/src/BootstrapBlazor/Components/IPLocator/DefaultIPLocator.cs index 961d49a32..50273718e 100644 --- a/src/BootstrapBlazor/Components/IPLocator/DefaultIPLocator.cs +++ b/src/BootstrapBlazor/Components/IPLocator/DefaultIPLocator.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Logging; using System.Net.Http.Json; diff --git a/src/BootstrapBlazor/Components/IPLocator/DefaultIPLocatorProvider.cs b/src/BootstrapBlazor/Components/IPLocator/DefaultIPLocatorProvider.cs index f15c7aa50..9c3f9190c 100644 --- a/src/BootstrapBlazor/Components/IPLocator/DefaultIPLocatorProvider.cs +++ b/src/BootstrapBlazor/Components/IPLocator/DefaultIPLocatorProvider.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Logging; diff --git a/src/BootstrapBlazor/Components/IPLocator/IIPLocator.cs b/src/BootstrapBlazor/Components/IPLocator/IIPLocator.cs index eb4161553..820f27324 100644 --- a/src/BootstrapBlazor/Components/IPLocator/IIPLocator.cs +++ b/src/BootstrapBlazor/Components/IPLocator/IIPLocator.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/IPLocator/IIPLocatorProvider.cs b/src/BootstrapBlazor/Components/IPLocator/IIPLocatorProvider.cs index 57772d317..48bc7ca8c 100644 --- a/src/BootstrapBlazor/Components/IPLocator/IIPLocatorProvider.cs +++ b/src/BootstrapBlazor/Components/IPLocator/IIPLocatorProvider.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/IPLocator/IPLocatorOption.cs b/src/BootstrapBlazor/Components/IPLocator/IPLocatorOption.cs index a6a2b0805..9074ef1da 100644 --- a/src/BootstrapBlazor/Components/IPLocator/IPLocatorOption.cs +++ b/src/BootstrapBlazor/Components/IPLocator/IPLocatorOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Logging; diff --git a/src/BootstrapBlazor/Components/Icon/BootstrapBlazorIcon.razor.cs b/src/BootstrapBlazor/Components/Icon/BootstrapBlazorIcon.razor.cs index f59f980e2..93a2dd59c 100644 --- a/src/BootstrapBlazor/Components/Icon/BootstrapBlazorIcon.razor.cs +++ b/src/BootstrapBlazor/Components/Icon/BootstrapBlazorIcon.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Icon/SvgIcon.razor.cs b/src/BootstrapBlazor/Components/Icon/SvgIcon.razor.cs index 5c3b05c1c..3cda33b8b 100644 --- a/src/BootstrapBlazor/Components/Icon/SvgIcon.razor.cs +++ b/src/BootstrapBlazor/Components/Icon/SvgIcon.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/ImagePreviewer/ImagePreviewer.razor.cs b/src/BootstrapBlazor/Components/ImagePreviewer/ImagePreviewer.razor.cs index fc6d520bb..e206590c4 100644 --- a/src/BootstrapBlazor/Components/ImagePreviewer/ImagePreviewer.razor.cs +++ b/src/BootstrapBlazor/Components/ImagePreviewer/ImagePreviewer.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/ImageViewer/ImageViewer.razor.cs b/src/BootstrapBlazor/Components/ImageViewer/ImageViewer.razor.cs index 52b161d19..b57753cd4 100644 --- a/src/BootstrapBlazor/Components/ImageViewer/ImageViewer.razor.cs +++ b/src/BootstrapBlazor/Components/ImageViewer/ImageViewer.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Input/BootstrapInput.razor.cs b/src/BootstrapBlazor/Components/Input/BootstrapInput.razor.cs index e9344a1d6..22d872b64 100644 --- a/src/BootstrapBlazor/Components/Input/BootstrapInput.razor.cs +++ b/src/BootstrapBlazor/Components/Input/BootstrapInput.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Input/BootstrapInputBase.cs b/src/BootstrapBlazor/Components/Input/BootstrapInputBase.cs index 70e096d34..8a2c728dc 100644 --- a/src/BootstrapBlazor/Components/Input/BootstrapInputBase.cs +++ b/src/BootstrapBlazor/Components/Input/BootstrapInputBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Input/BootstrapInputEventBase.cs b/src/BootstrapBlazor/Components/Input/BootstrapInputEventBase.cs index 12a5dcd49..3a7ba9ed7 100644 --- a/src/BootstrapBlazor/Components/Input/BootstrapInputEventBase.cs +++ b/src/BootstrapBlazor/Components/Input/BootstrapInputEventBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Input/BootstrapInputGroup.razor.cs b/src/BootstrapBlazor/Components/Input/BootstrapInputGroup.razor.cs index 75ae2804a..e5f177d99 100644 --- a/src/BootstrapBlazor/Components/Input/BootstrapInputGroup.razor.cs +++ b/src/BootstrapBlazor/Components/Input/BootstrapInputGroup.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Input/BootstrapInputGroupIcon.razor.cs b/src/BootstrapBlazor/Components/Input/BootstrapInputGroupIcon.razor.cs index 98c0104ea..19798f2b4 100644 --- a/src/BootstrapBlazor/Components/Input/BootstrapInputGroupIcon.razor.cs +++ b/src/BootstrapBlazor/Components/Input/BootstrapInputGroupIcon.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Input/BootstrapInputGroupLabel.razor.cs b/src/BootstrapBlazor/Components/Input/BootstrapInputGroupLabel.razor.cs index 83801ccc2..74ee83d15 100644 --- a/src/BootstrapBlazor/Components/Input/BootstrapInputGroupLabel.razor.cs +++ b/src/BootstrapBlazor/Components/Input/BootstrapInputGroupLabel.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Input/BootstrapPassword.cs b/src/BootstrapBlazor/Components/Input/BootstrapPassword.cs index f68efa2fa..970259d03 100644 --- a/src/BootstrapBlazor/Components/Input/BootstrapPassword.cs +++ b/src/BootstrapBlazor/Components/Input/BootstrapPassword.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Input/FloatingLabel.razor.cs b/src/BootstrapBlazor/Components/Input/FloatingLabel.razor.cs index 0e1178bb8..b5b43a383 100644 --- a/src/BootstrapBlazor/Components/Input/FloatingLabel.razor.cs +++ b/src/BootstrapBlazor/Components/Input/FloatingLabel.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/InputNumber/BootstrapInputNumber.razor.cs b/src/BootstrapBlazor/Components/InputNumber/BootstrapInputNumber.razor.cs index cc227c81c..496b9353d 100644 --- a/src/BootstrapBlazor/Components/InputNumber/BootstrapInputNumber.razor.cs +++ b/src/BootstrapBlazor/Components/InputNumber/BootstrapInputNumber.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; using System.Globalization; diff --git a/src/BootstrapBlazor/Components/InputNumber/BootstrapInputNumberBase.cs b/src/BootstrapBlazor/Components/InputNumber/BootstrapInputNumberBase.cs index c63fe7cc1..7e3fc9f58 100644 --- a/src/BootstrapBlazor/Components/InputNumber/BootstrapInputNumberBase.cs +++ b/src/BootstrapBlazor/Components/InputNumber/BootstrapInputNumberBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/IntersectionObserver/IntersectionObserver.razor.cs b/src/BootstrapBlazor/Components/IntersectionObserver/IntersectionObserver.razor.cs index e1a2e0a3d..316e86629 100644 --- a/src/BootstrapBlazor/Components/IntersectionObserver/IntersectionObserver.razor.cs +++ b/src/BootstrapBlazor/Components/IntersectionObserver/IntersectionObserver.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/IntersectionObserver/IntersectionObserverEntry.cs b/src/BootstrapBlazor/Components/IntersectionObserver/IntersectionObserverEntry.cs index bae6f26cb..97e91e396 100644 --- a/src/BootstrapBlazor/Components/IntersectionObserver/IntersectionObserverEntry.cs +++ b/src/BootstrapBlazor/Components/IntersectionObserver/IntersectionObserverEntry.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/IntersectionObserver/IntersectionObserverItem.razor.cs b/src/BootstrapBlazor/Components/IntersectionObserver/IntersectionObserverItem.razor.cs index 05eb87adf..372bff579 100644 --- a/src/BootstrapBlazor/Components/IntersectionObserver/IntersectionObserverItem.razor.cs +++ b/src/BootstrapBlazor/Components/IntersectionObserver/IntersectionObserverItem.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/IpAddress/IpAddress.razor.cs b/src/BootstrapBlazor/Components/IpAddress/IpAddress.razor.cs index 025adfe78..c31507843 100644 --- a/src/BootstrapBlazor/Components/IpAddress/IpAddress.razor.cs +++ b/src/BootstrapBlazor/Components/IpAddress/IpAddress.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Label/BootstrapLabel.razor.cs b/src/BootstrapBlazor/Components/Label/BootstrapLabel.razor.cs index a7817e2b8..60363472b 100644 --- a/src/BootstrapBlazor/Components/Label/BootstrapLabel.razor.cs +++ b/src/BootstrapBlazor/Components/Label/BootstrapLabel.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Layout/Layout.razor.cs b/src/BootstrapBlazor/Components/Layout/Layout.razor.cs index 4388d81e7..1917e7140 100644 --- a/src/BootstrapBlazor/Components/Layout/Layout.razor.cs +++ b/src/BootstrapBlazor/Components/Layout/Layout.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Components.Authorization; diff --git a/src/BootstrapBlazor/Components/LazyLoad/LazyLoad.cs b/src/BootstrapBlazor/Components/LazyLoad/LazyLoad.cs index e8a64f8e9..56d87f294 100644 --- a/src/BootstrapBlazor/Components/LazyLoad/LazyLoad.cs +++ b/src/BootstrapBlazor/Components/LazyLoad/LazyLoad.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; diff --git a/src/BootstrapBlazor/Components/Light/Light.razor.cs b/src/BootstrapBlazor/Components/Light/Light.razor.cs index 45b9ebf0e..645f38673 100644 --- a/src/BootstrapBlazor/Components/Light/Light.razor.cs +++ b/src/BootstrapBlazor/Components/Light/Light.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/ListGroup/ListGroup.razor.cs b/src/BootstrapBlazor/Components/ListGroup/ListGroup.razor.cs index 8049669d8..cd6fa1779 100644 --- a/src/BootstrapBlazor/Components/ListGroup/ListGroup.razor.cs +++ b/src/BootstrapBlazor/Components/ListGroup/ListGroup.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/ListView/ListView.razor.cs b/src/BootstrapBlazor/Components/ListView/ListView.razor.cs index e8b0ed145..aaed53ea2 100644 --- a/src/BootstrapBlazor/Components/ListView/ListView.razor.cs +++ b/src/BootstrapBlazor/Components/ListView/ListView.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Logout/Logout.razor.cs b/src/BootstrapBlazor/Components/Logout/Logout.razor.cs index 3492b724f..4a2212d3d 100644 --- a/src/BootstrapBlazor/Components/Logout/Logout.razor.cs +++ b/src/BootstrapBlazor/Components/Logout/Logout.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Logout/LogoutLink.razor.cs b/src/BootstrapBlazor/Components/Logout/LogoutLink.razor.cs index a4a838be5..d9222814d 100644 --- a/src/BootstrapBlazor/Components/Logout/LogoutLink.razor.cs +++ b/src/BootstrapBlazor/Components/Logout/LogoutLink.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Marquee/Marquee.razor.cs b/src/BootstrapBlazor/Components/Marquee/Marquee.razor.cs index 0bfe929a9..1ba55960f 100644 --- a/src/BootstrapBlazor/Components/Marquee/Marquee.razor.cs +++ b/src/BootstrapBlazor/Components/Marquee/Marquee.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Mask/Mask.razor.cs b/src/BootstrapBlazor/Components/Mask/Mask.razor.cs index a710e51b0..a7a0827bc 100644 --- a/src/BootstrapBlazor/Components/Mask/Mask.razor.cs +++ b/src/BootstrapBlazor/Components/Mask/Mask.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Mask/MaskOption.cs b/src/BootstrapBlazor/Components/Mask/MaskOption.cs index ca040ad84..1b02b26a5 100644 --- a/src/BootstrapBlazor/Components/Mask/MaskOption.cs +++ b/src/BootstrapBlazor/Components/Mask/MaskOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Mask/MaskService.cs b/src/BootstrapBlazor/Components/Mask/MaskService.cs index 300927e2e..66c100553 100644 --- a/src/BootstrapBlazor/Components/Mask/MaskService.cs +++ b/src/BootstrapBlazor/Components/Mask/MaskService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Menu/Menu.razor.cs b/src/BootstrapBlazor/Components/Menu/Menu.razor.cs index 84b0ace05..7f9b9414f 100644 --- a/src/BootstrapBlazor/Components/Menu/Menu.razor.cs +++ b/src/BootstrapBlazor/Components/Menu/Menu.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Menu/MenuItem.cs b/src/BootstrapBlazor/Components/Menu/MenuItem.cs index 1af9ca183..8a1e7307c 100644 --- a/src/BootstrapBlazor/Components/Menu/MenuItem.cs +++ b/src/BootstrapBlazor/Components/Menu/MenuItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Routing; diff --git a/src/BootstrapBlazor/Components/Menu/MenuLink.razor.cs b/src/BootstrapBlazor/Components/Menu/MenuLink.razor.cs index 9272ef927..9d8067cbf 100644 --- a/src/BootstrapBlazor/Components/Menu/MenuLink.razor.cs +++ b/src/BootstrapBlazor/Components/Menu/MenuLink.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Routing; using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Menu/SideMenu.razor.cs b/src/BootstrapBlazor/Components/Menu/SideMenu.razor.cs index b17b1c2c8..daf0e0bb2 100644 --- a/src/BootstrapBlazor/Components/Menu/SideMenu.razor.cs +++ b/src/BootstrapBlazor/Components/Menu/SideMenu.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Menu/SubMenu.razor.cs b/src/BootstrapBlazor/Components/Menu/SubMenu.razor.cs index 5e27cbce7..bca0b2b56 100644 --- a/src/BootstrapBlazor/Components/Menu/SubMenu.razor.cs +++ b/src/BootstrapBlazor/Components/Menu/SubMenu.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Menu/TopMenu.razor.cs b/src/BootstrapBlazor/Components/Menu/TopMenu.razor.cs index 8cceee6e6..f3b045410 100644 --- a/src/BootstrapBlazor/Components/Menu/TopMenu.razor.cs +++ b/src/BootstrapBlazor/Components/Menu/TopMenu.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Message/Message.razor.cs b/src/BootstrapBlazor/Components/Message/Message.razor.cs index 8d5a861f5..e5d8ab983 100644 --- a/src/BootstrapBlazor/Components/Message/Message.razor.cs +++ b/src/BootstrapBlazor/Components/Message/Message.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Message/MessageOption.cs b/src/BootstrapBlazor/Components/Message/MessageOption.cs index 50a73d4b4..5376a7b15 100644 --- a/src/BootstrapBlazor/Components/Message/MessageOption.cs +++ b/src/BootstrapBlazor/Components/Message/MessageOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Message/MessageService.cs b/src/BootstrapBlazor/Components/Message/MessageService.cs index 8f2ba9eb8..3b4d8047d 100644 --- a/src/BootstrapBlazor/Components/Message/MessageService.cs +++ b/src/BootstrapBlazor/Components/Message/MessageService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Modal/Modal.razor.cs b/src/BootstrapBlazor/Components/Modal/Modal.razor.cs index 5901368d4..40955d25a 100644 --- a/src/BootstrapBlazor/Components/Modal/Modal.razor.cs +++ b/src/BootstrapBlazor/Components/Modal/Modal.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Concurrent; diff --git a/src/BootstrapBlazor/Components/Modal/ModalDialog.razor.cs b/src/BootstrapBlazor/Components/Modal/ModalDialog.razor.cs index 3610727c4..82c11cc22 100644 --- a/src/BootstrapBlazor/Components/Modal/ModalDialog.razor.cs +++ b/src/BootstrapBlazor/Components/Modal/ModalDialog.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Nav/Nav.razor.cs b/src/BootstrapBlazor/Components/Nav/Nav.razor.cs index 7d4403ca2..1f75b1952 100644 --- a/src/BootstrapBlazor/Components/Nav/Nav.razor.cs +++ b/src/BootstrapBlazor/Components/Nav/Nav.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Routing; diff --git a/src/BootstrapBlazor/Components/Notification/NotificationItem.cs b/src/BootstrapBlazor/Components/Notification/NotificationItem.cs index bdf76bd5c..246ad2a8f 100644 --- a/src/BootstrapBlazor/Components/Notification/NotificationItem.cs +++ b/src/BootstrapBlazor/Components/Notification/NotificationItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Components/Pagination/GotoNavigator.razor.cs b/src/BootstrapBlazor/Components/Pagination/GotoNavigator.razor.cs index 083261df6..580a70199 100644 --- a/src/BootstrapBlazor/Components/Pagination/GotoNavigator.razor.cs +++ b/src/BootstrapBlazor/Components/Pagination/GotoNavigator.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; diff --git a/src/BootstrapBlazor/Components/Pagination/Pagination.razor.cs b/src/BootstrapBlazor/Components/Pagination/Pagination.razor.cs index a8dd03e58..5c39edf6a 100644 --- a/src/BootstrapBlazor/Components/Pagination/Pagination.razor.cs +++ b/src/BootstrapBlazor/Components/Pagination/Pagination.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Pagination/PaginationItem.razor.cs b/src/BootstrapBlazor/Components/Pagination/PaginationItem.razor.cs index 12399ef34..728121dcf 100644 --- a/src/BootstrapBlazor/Components/Pagination/PaginationItem.razor.cs +++ b/src/BootstrapBlazor/Components/Pagination/PaginationItem.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Popover/Popover.razor.cs b/src/BootstrapBlazor/Components/Popover/Popover.razor.cs index 95ef0ed72..c30c51a93 100644 --- a/src/BootstrapBlazor/Components/Popover/Popover.razor.cs +++ b/src/BootstrapBlazor/Components/Popover/Popover.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Popover/PopupOptionBase.cs b/src/BootstrapBlazor/Components/Popover/PopupOptionBase.cs index 7492379d7..95605c176 100644 --- a/src/BootstrapBlazor/Components/Popover/PopupOptionBase.cs +++ b/src/BootstrapBlazor/Components/Popover/PopupOptionBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Print/Print.cs b/src/BootstrapBlazor/Components/Print/Print.cs index 810284b74..186b6633c 100644 --- a/src/BootstrapBlazor/Components/Print/Print.cs +++ b/src/BootstrapBlazor/Components/Print/Print.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Print/PrintButton.razor.cs b/src/BootstrapBlazor/Components/Print/PrintButton.razor.cs index e5e4901c6..e6fae987e 100644 --- a/src/BootstrapBlazor/Components/Print/PrintButton.razor.cs +++ b/src/BootstrapBlazor/Components/Print/PrintButton.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Print/PrintService.cs b/src/BootstrapBlazor/Components/Print/PrintService.cs index 03288b98b..6baa023b9 100644 --- a/src/BootstrapBlazor/Components/Print/PrintService.cs +++ b/src/BootstrapBlazor/Components/Print/PrintService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Progress/Progress.razor.cs b/src/BootstrapBlazor/Components/Progress/Progress.razor.cs index c58e06b5b..b4a2258e8 100644 --- a/src/BootstrapBlazor/Components/Progress/Progress.razor.cs +++ b/src/BootstrapBlazor/Components/Progress/Progress.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/QueryBuilder/QueryBuilder.razor.cs b/src/BootstrapBlazor/Components/QueryBuilder/QueryBuilder.razor.cs index 61aeaf8cb..6947a6065 100644 --- a/src/BootstrapBlazor/Components/QueryBuilder/QueryBuilder.razor.cs +++ b/src/BootstrapBlazor/Components/QueryBuilder/QueryBuilder.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/QueryBuilder/QueryColumn.cs b/src/BootstrapBlazor/Components/QueryBuilder/QueryColumn.cs index 7c0f1d289..5599005af 100644 --- a/src/BootstrapBlazor/Components/QueryBuilder/QueryColumn.cs +++ b/src/BootstrapBlazor/Components/QueryBuilder/QueryColumn.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; using System.Linq.Expressions; diff --git a/src/BootstrapBlazor/Components/QueryBuilder/QueryGroup.cs b/src/BootstrapBlazor/Components/QueryBuilder/QueryGroup.cs index 67b0ed857..68b0ee0b6 100644 --- a/src/BootstrapBlazor/Components/QueryBuilder/QueryGroup.cs +++ b/src/BootstrapBlazor/Components/QueryBuilder/QueryGroup.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; diff --git a/src/BootstrapBlazor/Components/Radio/Radio.razor.cs b/src/BootstrapBlazor/Components/Radio/Radio.razor.cs index 297664e5b..ad9ec2739 100644 --- a/src/BootstrapBlazor/Components/Radio/Radio.razor.cs +++ b/src/BootstrapBlazor/Components/Radio/Radio.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Radio/RadioList.razor.cs b/src/BootstrapBlazor/Components/Radio/RadioList.razor.cs index ab530723f..77937b52d 100644 --- a/src/BootstrapBlazor/Components/Radio/RadioList.razor.cs +++ b/src/BootstrapBlazor/Components/Radio/RadioList.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections; diff --git a/src/BootstrapBlazor/Components/Rate/Rate.razor.cs b/src/BootstrapBlazor/Components/Rate/Rate.razor.cs index f7c6f6f09..35d21a045 100644 --- a/src/BootstrapBlazor/Components/Rate/Rate.razor.cs +++ b/src/BootstrapBlazor/Components/Rate/Rate.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Reconnector/IReconnector.cs b/src/BootstrapBlazor/Components/Reconnector/IReconnector.cs index 968e98f66..f098c4085 100644 --- a/src/BootstrapBlazor/Components/Reconnector/IReconnector.cs +++ b/src/BootstrapBlazor/Components/Reconnector/IReconnector.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Reconnector/IReconnectorProvider.cs b/src/BootstrapBlazor/Components/Reconnector/IReconnectorProvider.cs index 913e20400..b95568751 100644 --- a/src/BootstrapBlazor/Components/Reconnector/IReconnectorProvider.cs +++ b/src/BootstrapBlazor/Components/Reconnector/IReconnectorProvider.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Reconnector/Reconnector.cs b/src/BootstrapBlazor/Components/Reconnector/Reconnector.cs index 99e2dc9f4..fade9e48c 100644 --- a/src/BootstrapBlazor/Components/Reconnector/Reconnector.cs +++ b/src/BootstrapBlazor/Components/Reconnector/Reconnector.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Reconnector/ReconnectorContent.razor.cs b/src/BootstrapBlazor/Components/Reconnector/ReconnectorContent.razor.cs index 07c73476d..372762304 100644 --- a/src/BootstrapBlazor/Components/Reconnector/ReconnectorContent.razor.cs +++ b/src/BootstrapBlazor/Components/Reconnector/ReconnectorContent.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Reconnector/ReconnectorOutlet.cs b/src/BootstrapBlazor/Components/Reconnector/ReconnectorOutlet.cs index 9d4267c45..8b78ac929 100644 --- a/src/BootstrapBlazor/Components/Reconnector/ReconnectorOutlet.cs +++ b/src/BootstrapBlazor/Components/Reconnector/ReconnectorOutlet.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; diff --git a/src/BootstrapBlazor/Components/Reconnector/ReconnectorProvider.cs b/src/BootstrapBlazor/Components/Reconnector/ReconnectorProvider.cs index 028b67afb..707b4da31 100644 --- a/src/BootstrapBlazor/Components/Reconnector/ReconnectorProvider.cs +++ b/src/BootstrapBlazor/Components/Reconnector/ReconnectorProvider.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Redirect/Redirect.cs b/src/BootstrapBlazor/Components/Redirect/Redirect.cs index cf33cd5f6..7c7f2f89a 100644 --- a/src/BootstrapBlazor/Components/Redirect/Redirect.cs +++ b/src/BootstrapBlazor/Components/Redirect/Redirect.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Repeater/Repeater.razor.cs b/src/BootstrapBlazor/Components/Repeater/Repeater.razor.cs index d80fc64ad..dd7cfda93 100644 --- a/src/BootstrapBlazor/Components/Repeater/Repeater.razor.cs +++ b/src/BootstrapBlazor/Components/Repeater/Repeater.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/ResizeNotification/ResizeNotification.cs b/src/BootstrapBlazor/Components/ResizeNotification/ResizeNotification.cs index 87ea76517..744a235b0 100644 --- a/src/BootstrapBlazor/Components/ResizeNotification/ResizeNotification.cs +++ b/src/BootstrapBlazor/Components/ResizeNotification/ResizeNotification.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/ResizeNotification/ResizeNotificationService.cs b/src/BootstrapBlazor/Components/ResizeNotification/ResizeNotificationService.cs index 55d3b4d4c..467c5f03e 100644 --- a/src/BootstrapBlazor/Components/ResizeNotification/ResizeNotificationService.cs +++ b/src/BootstrapBlazor/Components/ResizeNotification/ResizeNotificationService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Concurrent; diff --git a/src/BootstrapBlazor/Components/ResizeNotification/Responsive.cs b/src/BootstrapBlazor/Components/ResizeNotification/Responsive.cs index 19d448e49..5586738bd 100644 --- a/src/BootstrapBlazor/Components/ResizeNotification/Responsive.cs +++ b/src/BootstrapBlazor/Components/ResizeNotification/Responsive.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/RibbonTab/RibbonTab.razor.cs b/src/BootstrapBlazor/Components/RibbonTab/RibbonTab.razor.cs index feaada3fd..22290c01e 100644 --- a/src/BootstrapBlazor/Components/RibbonTab/RibbonTab.razor.cs +++ b/src/BootstrapBlazor/Components/RibbonTab/RibbonTab.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/RibbonTab/RibbonTabHeader.razor.cs b/src/BootstrapBlazor/Components/RibbonTab/RibbonTabHeader.razor.cs index 04c2b74b7..6508e3680 100644 --- a/src/BootstrapBlazor/Components/RibbonTab/RibbonTabHeader.razor.cs +++ b/src/BootstrapBlazor/Components/RibbonTab/RibbonTabHeader.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Web; diff --git a/src/BootstrapBlazor/Components/RibbonTab/RibbonTabItem.cs b/src/BootstrapBlazor/Components/RibbonTab/RibbonTabItem.cs index 3777eeed5..06a23d52c 100644 --- a/src/BootstrapBlazor/Components/RibbonTab/RibbonTabItem.cs +++ b/src/BootstrapBlazor/Components/RibbonTab/RibbonTabItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Row/Row.razor.cs b/src/BootstrapBlazor/Components/Row/Row.razor.cs index 370150001..da4b31689 100644 --- a/src/BootstrapBlazor/Components/Row/Row.razor.cs +++ b/src/BootstrapBlazor/Components/Row/Row.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Scroll/Scroll.razor.cs b/src/BootstrapBlazor/Components/Scroll/Scroll.razor.cs index 0872f35d1..38270b46b 100644 --- a/src/BootstrapBlazor/Components/Scroll/Scroll.razor.cs +++ b/src/BootstrapBlazor/Components/Scroll/Scroll.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Search/Search.razor.cs b/src/BootstrapBlazor/Components/Search/Search.razor.cs index 2a6fbb8d6..fe318b4bd 100644 --- a/src/BootstrapBlazor/Components/Search/Search.razor.cs +++ b/src/BootstrapBlazor/Components/Search/Search.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Segmented/Segmented.razor.cs b/src/BootstrapBlazor/Components/Segmented/Segmented.razor.cs index 112306a9b..772ba4aa3 100644 --- a/src/BootstrapBlazor/Components/Segmented/Segmented.razor.cs +++ b/src/BootstrapBlazor/Components/Segmented/Segmented.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Segmented/SegmentedItem.cs b/src/BootstrapBlazor/Components/Segmented/SegmentedItem.cs index 811b393e6..7e4b189da 100644 --- a/src/BootstrapBlazor/Components/Segmented/SegmentedItem.cs +++ b/src/BootstrapBlazor/Components/Segmented/SegmentedItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Segmented/SegmentedOption.cs b/src/BootstrapBlazor/Components/Segmented/SegmentedOption.cs index 986d7a073..7480b13cd 100644 --- a/src/BootstrapBlazor/Components/Segmented/SegmentedOption.cs +++ b/src/BootstrapBlazor/Components/Segmented/SegmentedOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Select/ISelect.cs b/src/BootstrapBlazor/Components/Select/ISelect.cs index e60240e7a..b32b198d9 100644 --- a/src/BootstrapBlazor/Components/Select/ISelect.cs +++ b/src/BootstrapBlazor/Components/Select/ISelect.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Select/ISelectObjectContext.cs b/src/BootstrapBlazor/Components/Select/ISelectObjectContext.cs index 347061c62..d7f5dd039 100644 --- a/src/BootstrapBlazor/Components/Select/ISelectObjectContext.cs +++ b/src/BootstrapBlazor/Components/Select/ISelectObjectContext.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Select/InternalSelectObjectContext.cs b/src/BootstrapBlazor/Components/Select/InternalSelectObjectContext.cs index c7ef47764..a12958863 100644 --- a/src/BootstrapBlazor/Components/Select/InternalSelectObjectContext.cs +++ b/src/BootstrapBlazor/Components/Select/InternalSelectObjectContext.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Select/MultiSelect.razor.cs b/src/BootstrapBlazor/Components/Select/MultiSelect.razor.cs index 10f2559a0..d230e4979 100644 --- a/src/BootstrapBlazor/Components/Select/MultiSelect.razor.cs +++ b/src/BootstrapBlazor/Components/Select/MultiSelect.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; using System.Collections; diff --git a/src/BootstrapBlazor/Components/Select/PopoverSelectBase.cs b/src/BootstrapBlazor/Components/Select/PopoverSelectBase.cs index a0f4cc639..8e9642fc9 100644 --- a/src/BootstrapBlazor/Components/Select/PopoverSelectBase.cs +++ b/src/BootstrapBlazor/Components/Select/PopoverSelectBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Select/Select.razor.cs b/src/BootstrapBlazor/Components/Select/Select.razor.cs index 339cffc3e..a3cd07972 100644 --- a/src/BootstrapBlazor/Components/Select/Select.razor.cs +++ b/src/BootstrapBlazor/Components/Select/Select.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web.Virtualization; using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Select/SelectBase.cs b/src/BootstrapBlazor/Components/Select/SelectBase.cs index d9a678295..2c403a8e4 100644 --- a/src/BootstrapBlazor/Components/Select/SelectBase.cs +++ b/src/BootstrapBlazor/Components/Select/SelectBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Select/SelectObject.razor.cs b/src/BootstrapBlazor/Components/Select/SelectObject.razor.cs index 0e6583ed3..79a90b5e8 100644 --- a/src/BootstrapBlazor/Components/Select/SelectObject.razor.cs +++ b/src/BootstrapBlazor/Components/Select/SelectObject.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Select/SelectOption.cs b/src/BootstrapBlazor/Components/Select/SelectOption.cs index 8e7b059cf..4841fb76b 100644 --- a/src/BootstrapBlazor/Components/Select/SelectOption.cs +++ b/src/BootstrapBlazor/Components/Select/SelectOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Select/SelectTable.razor.cs b/src/BootstrapBlazor/Components/Select/SelectTable.razor.cs index 37a26da8d..878388fea 100644 --- a/src/BootstrapBlazor/Components/Select/SelectTable.razor.cs +++ b/src/BootstrapBlazor/Components/Select/SelectTable.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Select/SelectTree.razor.cs b/src/BootstrapBlazor/Components/Select/SelectTree.razor.cs index cac73f09b..3d9c97131 100644 --- a/src/BootstrapBlazor/Components/Select/SelectTree.razor.cs +++ b/src/BootstrapBlazor/Components/Select/SelectTree.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Select/SingleSelectBase.cs b/src/BootstrapBlazor/Components/Select/SingleSelectBase.cs index c9b8a141f..f95a0e207 100644 --- a/src/BootstrapBlazor/Components/Select/SingleSelectBase.cs +++ b/src/BootstrapBlazor/Components/Select/SingleSelectBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Select/VirtualizeQueryOption.cs b/src/BootstrapBlazor/Components/Select/VirtualizeQueryOption.cs index 42dc73d4b..0f4fa59c0 100644 --- a/src/BootstrapBlazor/Components/Select/VirtualizeQueryOption.cs +++ b/src/BootstrapBlazor/Components/Select/VirtualizeQueryOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Skeleton/SkeletonAvatar.razor.cs b/src/BootstrapBlazor/Components/Skeleton/SkeletonAvatar.razor.cs index db6729eb8..a7eaed5b3 100644 --- a/src/BootstrapBlazor/Components/Skeleton/SkeletonAvatar.razor.cs +++ b/src/BootstrapBlazor/Components/Skeleton/SkeletonAvatar.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Skeleton/SkeletonBase.cs b/src/BootstrapBlazor/Components/Skeleton/SkeletonBase.cs index b3b6a02cb..0a5a5bc84 100644 --- a/src/BootstrapBlazor/Components/Skeleton/SkeletonBase.cs +++ b/src/BootstrapBlazor/Components/Skeleton/SkeletonBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Skeleton/SkeletonTable.razor.cs b/src/BootstrapBlazor/Components/Skeleton/SkeletonTable.razor.cs index 7b6a31840..c15cad68c 100644 --- a/src/BootstrapBlazor/Components/Skeleton/SkeletonTable.razor.cs +++ b/src/BootstrapBlazor/Components/Skeleton/SkeletonTable.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Skeleton/SkeletonTree.razor.cs b/src/BootstrapBlazor/Components/Skeleton/SkeletonTree.razor.cs index a0f3101fe..a1addaf17 100644 --- a/src/BootstrapBlazor/Components/Skeleton/SkeletonTree.razor.cs +++ b/src/BootstrapBlazor/Components/Skeleton/SkeletonTree.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Slider/Slider.razor.cs b/src/BootstrapBlazor/Components/Slider/Slider.razor.cs index 4f0c6f656..203969ee8 100644 --- a/src/BootstrapBlazor/Components/Slider/Slider.razor.cs +++ b/src/BootstrapBlazor/Components/Slider/Slider.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Speech/IRecognizerProvider.cs b/src/BootstrapBlazor/Components/Speech/IRecognizerProvider.cs index f07e960bb..7173fe86b 100644 --- a/src/BootstrapBlazor/Components/Speech/IRecognizerProvider.cs +++ b/src/BootstrapBlazor/Components/Speech/IRecognizerProvider.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Speech/ISynthesizerProvider.cs b/src/BootstrapBlazor/Components/Speech/ISynthesizerProvider.cs index b8917c94e..32fad8a68 100644 --- a/src/BootstrapBlazor/Components/Speech/ISynthesizerProvider.cs +++ b/src/BootstrapBlazor/Components/Speech/ISynthesizerProvider.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Speech/RecognizerOption.cs b/src/BootstrapBlazor/Components/Speech/RecognizerOption.cs index 9a9b50618..f461eec13 100644 --- a/src/BootstrapBlazor/Components/Speech/RecognizerOption.cs +++ b/src/BootstrapBlazor/Components/Speech/RecognizerOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Speech/RecognizerService.cs b/src/BootstrapBlazor/Components/Speech/RecognizerService.cs index 3ace83da6..34bd97b2c 100644 --- a/src/BootstrapBlazor/Components/Speech/RecognizerService.cs +++ b/src/BootstrapBlazor/Components/Speech/RecognizerService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Speech/SpeechWave.razor.cs b/src/BootstrapBlazor/Components/Speech/SpeechWave.razor.cs index 3fff8c55f..fef4793a5 100644 --- a/src/BootstrapBlazor/Components/Speech/SpeechWave.razor.cs +++ b/src/BootstrapBlazor/Components/Speech/SpeechWave.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Speech/SynthesizerOption.cs b/src/BootstrapBlazor/Components/Speech/SynthesizerOption.cs index 1a92585fc..ab1bc055c 100644 --- a/src/BootstrapBlazor/Components/Speech/SynthesizerOption.cs +++ b/src/BootstrapBlazor/Components/Speech/SynthesizerOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Speech/SynthesizerService.cs b/src/BootstrapBlazor/Components/Speech/SynthesizerService.cs index 6a197c34d..0b33eff87 100644 --- a/src/BootstrapBlazor/Components/Speech/SynthesizerService.cs +++ b/src/BootstrapBlazor/Components/Speech/SynthesizerService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Spinner/Spinner.razor.cs b/src/BootstrapBlazor/Components/Spinner/Spinner.razor.cs index bda4b962b..f0337f89e 100644 --- a/src/BootstrapBlazor/Components/Spinner/Spinner.razor.cs +++ b/src/BootstrapBlazor/Components/Spinner/Spinner.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Split/Split.razor.cs b/src/BootstrapBlazor/Components/Split/Split.razor.cs index 15e1e19c3..dcf06b7c3 100644 --- a/src/BootstrapBlazor/Components/Split/Split.razor.cs +++ b/src/BootstrapBlazor/Components/Split/Split.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Split/SplitterResizedEventArgs.cs b/src/BootstrapBlazor/Components/Split/SplitterResizedEventArgs.cs index 40ef1bf0c..18abaa3ea 100644 --- a/src/BootstrapBlazor/Components/Split/SplitterResizedEventArgs.cs +++ b/src/BootstrapBlazor/Components/Split/SplitterResizedEventArgs.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Stack/Stack.razor.cs b/src/BootstrapBlazor/Components/Stack/Stack.razor.cs index 125776f7f..ff4d78210 100644 --- a/src/BootstrapBlazor/Components/Stack/Stack.razor.cs +++ b/src/BootstrapBlazor/Components/Stack/Stack.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Stack/StackItem.cs b/src/BootstrapBlazor/Components/Stack/StackItem.cs index 9bebed446..f3a9c6f1c 100644 --- a/src/BootstrapBlazor/Components/Stack/StackItem.cs +++ b/src/BootstrapBlazor/Components/Stack/StackItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; diff --git a/src/BootstrapBlazor/Components/Step/Step.razor.cs b/src/BootstrapBlazor/Components/Step/Step.razor.cs index 6a6745885..9c7c4c34d 100644 --- a/src/BootstrapBlazor/Components/Step/Step.razor.cs +++ b/src/BootstrapBlazor/Components/Step/Step.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Step/StepItem.cs b/src/BootstrapBlazor/Components/Step/StepItem.cs index 81f856e63..42f9525dc 100644 --- a/src/BootstrapBlazor/Components/Step/StepItem.cs +++ b/src/BootstrapBlazor/Components/Step/StepItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Step/StepOption.cs b/src/BootstrapBlazor/Components/Step/StepOption.cs index e39ef3cdd..3a55e0e6f 100644 --- a/src/BootstrapBlazor/Components/Step/StepOption.cs +++ b/src/BootstrapBlazor/Components/Step/StepOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/SweetAlert/SwalOption.cs b/src/BootstrapBlazor/Components/SweetAlert/SwalOption.cs index f97ab72ed..c627551cf 100644 --- a/src/BootstrapBlazor/Components/SweetAlert/SwalOption.cs +++ b/src/BootstrapBlazor/Components/SweetAlert/SwalOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/SweetAlert/SwalService.cs b/src/BootstrapBlazor/Components/SweetAlert/SwalService.cs index 1b8d2b43a..04ad18054 100644 --- a/src/BootstrapBlazor/Components/SweetAlert/SwalService.cs +++ b/src/BootstrapBlazor/Components/SweetAlert/SwalService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/SweetAlert/SweetAlert.razor.cs b/src/BootstrapBlazor/Components/SweetAlert/SweetAlert.razor.cs index 1e593337d..0ab45a866 100644 --- a/src/BootstrapBlazor/Components/SweetAlert/SweetAlert.razor.cs +++ b/src/BootstrapBlazor/Components/SweetAlert/SweetAlert.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/SweetAlert/SweetAlertBody.razor.cs b/src/BootstrapBlazor/Components/SweetAlert/SweetAlertBody.razor.cs index a22bcddd7..ddd70d549 100644 --- a/src/BootstrapBlazor/Components/SweetAlert/SweetAlertBody.razor.cs +++ b/src/BootstrapBlazor/Components/SweetAlert/SweetAlertBody.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/SweetAlert/SweetContext.cs b/src/BootstrapBlazor/Components/SweetAlert/SweetContext.cs index ee94580b0..88941d12c 100644 --- a/src/BootstrapBlazor/Components/SweetAlert/SweetContext.cs +++ b/src/BootstrapBlazor/Components/SweetAlert/SweetContext.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Switch/NullSwitch.razor.cs b/src/BootstrapBlazor/Components/Switch/NullSwitch.razor.cs index b3793c97e..9f1470954 100644 --- a/src/BootstrapBlazor/Components/Switch/NullSwitch.razor.cs +++ b/src/BootstrapBlazor/Components/Switch/NullSwitch.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Switch/Switch.razor.cs b/src/BootstrapBlazor/Components/Switch/Switch.razor.cs index 58c493dba..4c35cad94 100644 --- a/src/BootstrapBlazor/Components/Switch/Switch.razor.cs +++ b/src/BootstrapBlazor/Components/Switch/Switch.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Tab/BootstrapBlazorAuthorizeView.cs b/src/BootstrapBlazor/Components/Tab/BootstrapBlazorAuthorizeView.cs index 01b83611c..70963f88c 100644 --- a/src/BootstrapBlazor/Components/Tab/BootstrapBlazorAuthorizeView.cs +++ b/src/BootstrapBlazor/Components/Tab/BootstrapBlazorAuthorizeView.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Components.Authorization; diff --git a/src/BootstrapBlazor/Components/Tab/Route/RouteConstraint.cs b/src/BootstrapBlazor/Components/Tab/Route/RouteConstraint.cs index 7139243ab..6839828c4 100644 --- a/src/BootstrapBlazor/Components/Tab/Route/RouteConstraint.cs +++ b/src/BootstrapBlazor/Components/Tab/Route/RouteConstraint.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace Microsoft.AspNetCore.Components.Routing; diff --git a/src/BootstrapBlazor/Components/Tab/Route/RouteContext.cs b/src/BootstrapBlazor/Components/Tab/Route/RouteContext.cs index 685b87a85..d4adb736c 100644 --- a/src/BootstrapBlazor/Components/Tab/Route/RouteContext.cs +++ b/src/BootstrapBlazor/Components/Tab/Route/RouteContext.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace Microsoft.AspNetCore.Components.Routing; diff --git a/src/BootstrapBlazor/Components/Tab/Route/RouteEntry.cs b/src/BootstrapBlazor/Components/Tab/Route/RouteEntry.cs index b14a2c3e3..e368bc61a 100644 --- a/src/BootstrapBlazor/Components/Tab/Route/RouteEntry.cs +++ b/src/BootstrapBlazor/Components/Tab/Route/RouteEntry.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone #nullable disable warnings diff --git a/src/BootstrapBlazor/Components/Tab/Route/RouteKey.cs b/src/BootstrapBlazor/Components/Tab/Route/RouteKey.cs index d35d2c2aa..dd6aee74b 100644 --- a/src/BootstrapBlazor/Components/Tab/Route/RouteKey.cs +++ b/src/BootstrapBlazor/Components/Tab/Route/RouteKey.cs @@ -1,5 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Reflection; diff --git a/src/BootstrapBlazor/Components/Tab/Route/RouteTable.cs b/src/BootstrapBlazor/Components/Tab/Route/RouteTable.cs index c2f6018ec..7ebac5ca2 100644 --- a/src/BootstrapBlazor/Components/Tab/Route/RouteTable.cs +++ b/src/BootstrapBlazor/Components/Tab/Route/RouteTable.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace Microsoft.AspNetCore.Components.Routing; diff --git a/src/BootstrapBlazor/Components/Tab/Route/RouteTableFactory.cs b/src/BootstrapBlazor/Components/Tab/Route/RouteTableFactory.cs index ab6c3b17d..db083437b 100644 --- a/src/BootstrapBlazor/Components/Tab/Route/RouteTableFactory.cs +++ b/src/BootstrapBlazor/Components/Tab/Route/RouteTableFactory.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Concurrent; using System.Reflection; diff --git a/src/BootstrapBlazor/Components/Tab/Route/RouteTemplate.cs b/src/BootstrapBlazor/Components/Tab/Route/RouteTemplate.cs index bd07dc010..b9d217591 100644 --- a/src/BootstrapBlazor/Components/Tab/Route/RouteTemplate.cs +++ b/src/BootstrapBlazor/Components/Tab/Route/RouteTemplate.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Diagnostics; diff --git a/src/BootstrapBlazor/Components/Tab/Route/StringSegmentAccumulator.cs b/src/BootstrapBlazor/Components/Tab/Route/StringSegmentAccumulator.cs index b1e4cd8fd..37f9410b7 100644 --- a/src/BootstrapBlazor/Components/Tab/Route/StringSegmentAccumulator.cs +++ b/src/BootstrapBlazor/Components/Tab/Route/StringSegmentAccumulator.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace Microsoft.AspNetCore.Components.Routing; diff --git a/src/BootstrapBlazor/Components/Tab/Route/TemplateParser.cs b/src/BootstrapBlazor/Components/Tab/Route/TemplateParser.cs index a0ed229c5..5b26ddaa7 100644 --- a/src/BootstrapBlazor/Components/Tab/Route/TemplateParser.cs +++ b/src/BootstrapBlazor/Components/Tab/Route/TemplateParser.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace Microsoft.AspNetCore.Components.Routing; diff --git a/src/BootstrapBlazor/Components/Tab/Route/TemplateSegment.cs b/src/BootstrapBlazor/Components/Tab/Route/TemplateSegment.cs index 93f2ab7a9..5afcbe462 100644 --- a/src/BootstrapBlazor/Components/Tab/Route/TemplateSegment.cs +++ b/src/BootstrapBlazor/Components/Tab/Route/TemplateSegment.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace Microsoft.AspNetCore.Components.Routing; diff --git a/src/BootstrapBlazor/Components/Tab/Route/UrlValueConstraint.cs b/src/BootstrapBlazor/Components/Tab/Route/UrlValueConstraint.cs index 5ed244204..7bd3fd64a 100644 --- a/src/BootstrapBlazor/Components/Tab/Route/UrlValueConstraint.cs +++ b/src/BootstrapBlazor/Components/Tab/Route/UrlValueConstraint.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Concurrent; using System.Globalization; diff --git a/src/BootstrapBlazor/Components/Tab/Tab.razor.cs b/src/BootstrapBlazor/Components/Tab/Tab.razor.cs index 5c4d179c7..2247bca1b 100644 --- a/src/BootstrapBlazor/Components/Tab/Tab.razor.cs +++ b/src/BootstrapBlazor/Components/Tab/Tab.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@live.ca). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; using System.Collections.Concurrent; diff --git a/src/BootstrapBlazor/Components/Tab/TabItem.cs b/src/BootstrapBlazor/Components/Tab/TabItem.cs index 35fd027d2..eb378cb43 100644 --- a/src/BootstrapBlazor/Components/Tab/TabItem.cs +++ b/src/BootstrapBlazor/Components/Tab/TabItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Tab/TabLink.razor.cs b/src/BootstrapBlazor/Components/Tab/TabLink.razor.cs index e0b7d80db..fae78b219 100644 --- a/src/BootstrapBlazor/Components/Tab/TabLink.razor.cs +++ b/src/BootstrapBlazor/Components/Tab/TabLink.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/ColumnVisibleItem.cs b/src/BootstrapBlazor/Components/Table/ColumnVisibleItem.cs index f196d4420..5a3b57319 100644 --- a/src/BootstrapBlazor/Components/Table/ColumnVisibleItem.cs +++ b/src/BootstrapBlazor/Components/Table/ColumnVisibleItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/ColumnWidth.cs b/src/BootstrapBlazor/Components/Table/ColumnWidth.cs index e6b8f8bd4..e007f618d 100644 --- a/src/BootstrapBlazor/Components/Table/ColumnWidth.cs +++ b/src/BootstrapBlazor/Components/Table/ColumnWidth.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/IColumnCollection.cs b/src/BootstrapBlazor/Components/Table/IColumnCollection.cs index 35b0a28c8..56aede7fb 100644 --- a/src/BootstrapBlazor/Components/Table/IColumnCollection.cs +++ b/src/BootstrapBlazor/Components/Table/IColumnCollection.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/ITable.cs b/src/BootstrapBlazor/Components/Table/ITable.cs index cd7bd2e9a..69fcb7529 100644 --- a/src/BootstrapBlazor/Components/Table/ITable.cs +++ b/src/BootstrapBlazor/Components/Table/ITable.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/ITableCellButton.cs b/src/BootstrapBlazor/Components/Table/ITableCellButton.cs index 53eff9c01..0c9bdf7cd 100644 --- a/src/BootstrapBlazor/Components/Table/ITableCellButton.cs +++ b/src/BootstrapBlazor/Components/Table/ITableCellButton.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/ITableCellComponent.cs b/src/BootstrapBlazor/Components/Table/ITableCellComponent.cs index 5ba3bab7e..2657a29f2 100644 --- a/src/BootstrapBlazor/Components/Table/ITableCellComponent.cs +++ b/src/BootstrapBlazor/Components/Table/ITableCellComponent.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/ITableColumn.cs b/src/BootstrapBlazor/Components/Table/ITableColumn.cs index 7a46ff089..b4aeee4a9 100644 --- a/src/BootstrapBlazor/Components/Table/ITableColumn.cs +++ b/src/BootstrapBlazor/Components/Table/ITableColumn.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/ITableEditDialogOption.cs b/src/BootstrapBlazor/Components/Table/ITableEditDialogOption.cs index acce43b82..2de2fdf42 100644 --- a/src/BootstrapBlazor/Components/Table/ITableEditDialogOption.cs +++ b/src/BootstrapBlazor/Components/Table/ITableEditDialogOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; diff --git a/src/BootstrapBlazor/Components/Table/ITableExportContext.cs b/src/BootstrapBlazor/Components/Table/ITableExportContext.cs index fb94ee6ec..91ac6b7c4 100644 --- a/src/BootstrapBlazor/Components/Table/ITableExportContext.cs +++ b/src/BootstrapBlazor/Components/Table/ITableExportContext.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/ITableExportDataContext.cs b/src/BootstrapBlazor/Components/Table/ITableExportDataContext.cs index b9fe73a05..242b19d22 100644 --- a/src/BootstrapBlazor/Components/Table/ITableExportDataContext.cs +++ b/src/BootstrapBlazor/Components/Table/ITableExportDataContext.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/ITableSearchModel.cs b/src/BootstrapBlazor/Components/Table/ITableSearchModel.cs index f30d6098a..e84d77fb6 100644 --- a/src/BootstrapBlazor/Components/Table/ITableSearchModel.cs +++ b/src/BootstrapBlazor/Components/Table/ITableSearchModel.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/ITableToolbarButton.cs b/src/BootstrapBlazor/Components/Table/ITableToolbarButton.cs index a0ea76f7b..56c39e1b9 100644 --- a/src/BootstrapBlazor/Components/Table/ITableToolbarButton.cs +++ b/src/BootstrapBlazor/Components/Table/ITableToolbarButton.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/IToolbarComponent.cs b/src/BootstrapBlazor/Components/Table/IToolbarComponent.cs index ce54ab6dd..2f3d6dd3e 100644 --- a/src/BootstrapBlazor/Components/Table/IToolbarComponent.cs +++ b/src/BootstrapBlazor/Components/Table/IToolbarComponent.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/InternalTableColumn.cs b/src/BootstrapBlazor/Components/Table/InternalTableColumn.cs index 73a847b57..33ea0f81d 100644 --- a/src/BootstrapBlazor/Components/Table/InternalTableColumn.cs +++ b/src/BootstrapBlazor/Components/Table/InternalTableColumn.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/ItemChangedType.cs b/src/BootstrapBlazor/Components/Table/ItemChangedType.cs index eb5523bd3..298130243 100644 --- a/src/BootstrapBlazor/Components/Table/ItemChangedType.cs +++ b/src/BootstrapBlazor/Components/Table/ItemChangedType.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/Table.razor.Checkbox.cs b/src/BootstrapBlazor/Components/Table/Table.razor.Checkbox.cs index 446088d05..11793f657 100644 --- a/src/BootstrapBlazor/Components/Table/Table.razor.Checkbox.cs +++ b/src/BootstrapBlazor/Components/Table/Table.razor.Checkbox.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/Table.razor.Edit.cs b/src/BootstrapBlazor/Components/Table/Table.razor.Edit.cs index b59fef919..ffd0ac842 100644 --- a/src/BootstrapBlazor/Components/Table/Table.razor.Edit.cs +++ b/src/BootstrapBlazor/Components/Table/Table.razor.Edit.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; diff --git a/src/BootstrapBlazor/Components/Table/Table.razor.Localization.cs b/src/BootstrapBlazor/Components/Table/Table.razor.Localization.cs index 41c18f528..0da172217 100644 --- a/src/BootstrapBlazor/Components/Table/Table.razor.Localization.cs +++ b/src/BootstrapBlazor/Components/Table/Table.razor.Localization.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Table/Table.razor.Pagination.cs b/src/BootstrapBlazor/Components/Table/Table.razor.Pagination.cs index 0d61648d3..ae0311ac5 100644 --- a/src/BootstrapBlazor/Components/Table/Table.razor.Pagination.cs +++ b/src/BootstrapBlazor/Components/Table/Table.razor.Pagination.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/Table.razor.Search.cs b/src/BootstrapBlazor/Components/Table/Table.razor.Search.cs index 5598899dc..69b419797 100644 --- a/src/BootstrapBlazor/Components/Table/Table.razor.Search.cs +++ b/src/BootstrapBlazor/Components/Table/Table.razor.Search.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; using System.Reflection; diff --git a/src/BootstrapBlazor/Components/Table/Table.razor.Sort.cs b/src/BootstrapBlazor/Components/Table/Table.razor.Sort.cs index dc747239c..f5813333e 100644 --- a/src/BootstrapBlazor/Components/Table/Table.razor.Sort.cs +++ b/src/BootstrapBlazor/Components/Table/Table.razor.Sort.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Concurrent; diff --git a/src/BootstrapBlazor/Components/Table/Table.razor.Toolbar.cs b/src/BootstrapBlazor/Components/Table/Table.razor.Toolbar.cs index efc1c7c7d..5dbb44b2e 100644 --- a/src/BootstrapBlazor/Components/Table/Table.razor.Toolbar.cs +++ b/src/BootstrapBlazor/Components/Table/Table.razor.Toolbar.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; diff --git a/src/BootstrapBlazor/Components/Table/Table.razor.TreeNode.cs b/src/BootstrapBlazor/Components/Table/Table.razor.TreeNode.cs index 6494f4eed..86b54b8e9 100644 --- a/src/BootstrapBlazor/Components/Table/Table.razor.TreeNode.cs +++ b/src/BootstrapBlazor/Components/Table/Table.razor.TreeNode.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/Table.razor.cs b/src/BootstrapBlazor/Components/Table/Table.razor.cs index 010f55aea..1167f574e 100644 --- a/src/BootstrapBlazor/Components/Table/Table.razor.cs +++ b/src/BootstrapBlazor/Components/Table/Table.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; using Microsoft.AspNetCore.Components.Web.Virtualization; diff --git a/src/BootstrapBlazor/Components/Table/TableAdvancedSortDialog.razor.cs b/src/BootstrapBlazor/Components/Table/TableAdvancedSortDialog.razor.cs index 91a1b0095..198179153 100644 --- a/src/BootstrapBlazor/Components/Table/TableAdvancedSortDialog.razor.cs +++ b/src/BootstrapBlazor/Components/Table/TableAdvancedSortDialog.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Table/TableCellArgs.cs b/src/BootstrapBlazor/Components/Table/TableCellArgs.cs index 1c5325840..e40b58990 100644 --- a/src/BootstrapBlazor/Components/Table/TableCellArgs.cs +++ b/src/BootstrapBlazor/Components/Table/TableCellArgs.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/TableCellButton.cs b/src/BootstrapBlazor/Components/Table/TableCellButton.cs index 8bce71463..e8c9e535a 100644 --- a/src/BootstrapBlazor/Components/Table/TableCellButton.cs +++ b/src/BootstrapBlazor/Components/Table/TableCellButton.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/TableCellButtonArgs.cs b/src/BootstrapBlazor/Components/Table/TableCellButtonArgs.cs index fbf3e9123..1364f34e9 100644 --- a/src/BootstrapBlazor/Components/Table/TableCellButtonArgs.cs +++ b/src/BootstrapBlazor/Components/Table/TableCellButtonArgs.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/TableCellComponent.cs b/src/BootstrapBlazor/Components/Table/TableCellComponent.cs index c0828ec45..091297a8b 100644 --- a/src/BootstrapBlazor/Components/Table/TableCellComponent.cs +++ b/src/BootstrapBlazor/Components/Table/TableCellComponent.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/TableCellPopConfirmButton.cs b/src/BootstrapBlazor/Components/Table/TableCellPopConfirmButton.cs index c89d190c7..a4defbe84 100644 --- a/src/BootstrapBlazor/Components/Table/TableCellPopConfirmButton.cs +++ b/src/BootstrapBlazor/Components/Table/TableCellPopConfirmButton.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Table/TableColumn.cs b/src/BootstrapBlazor/Components/Table/TableColumn.cs index 37e809598..a9707008c 100644 --- a/src/BootstrapBlazor/Components/Table/TableColumn.cs +++ b/src/BootstrapBlazor/Components/Table/TableColumn.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; using System.Linq.Expressions; diff --git a/src/BootstrapBlazor/Components/Table/TableColumnContext.cs b/src/BootstrapBlazor/Components/Table/TableColumnContext.cs index e2ce14e2d..b0a5de8b6 100644 --- a/src/BootstrapBlazor/Components/Table/TableColumnContext.cs +++ b/src/BootstrapBlazor/Components/Table/TableColumnContext.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/TableEditDrawerOption.cs b/src/BootstrapBlazor/Components/Table/TableEditDrawerOption.cs index d27d06482..eee718a03 100644 --- a/src/BootstrapBlazor/Components/Table/TableEditDrawerOption.cs +++ b/src/BootstrapBlazor/Components/Table/TableEditDrawerOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; diff --git a/src/BootstrapBlazor/Components/Table/TableExportContext.cs b/src/BootstrapBlazor/Components/Table/TableExportContext.cs index 29e21c190..e3644dccb 100644 --- a/src/BootstrapBlazor/Components/Table/TableExportContext.cs +++ b/src/BootstrapBlazor/Components/Table/TableExportContext.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/TableExportDataContext.cs b/src/BootstrapBlazor/Components/Table/TableExportDataContext.cs index ad371dd73..fe3e9be12 100644 --- a/src/BootstrapBlazor/Components/Table/TableExportDataContext.cs +++ b/src/BootstrapBlazor/Components/Table/TableExportDataContext.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/TableExtensionButton.razor.cs b/src/BootstrapBlazor/Components/Table/TableExtensionButton.razor.cs index 2d5f95ce0..edaea6600 100644 --- a/src/BootstrapBlazor/Components/Table/TableExtensionButton.razor.cs +++ b/src/BootstrapBlazor/Components/Table/TableExtensionButton.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/TableFooterCell.razor.cs b/src/BootstrapBlazor/Components/Table/TableFooterCell.razor.cs index b2dd0cc2e..17d44c8d1 100644 --- a/src/BootstrapBlazor/Components/Table/TableFooterCell.razor.cs +++ b/src/BootstrapBlazor/Components/Table/TableFooterCell.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Linq.Expressions; using System.Reflection; diff --git a/src/BootstrapBlazor/Components/Table/TableRowContext.cs b/src/BootstrapBlazor/Components/Table/TableRowContext.cs index a22c47d04..5bcd4592f 100644 --- a/src/BootstrapBlazor/Components/Table/TableRowContext.cs +++ b/src/BootstrapBlazor/Components/Table/TableRowContext.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/TableSize.cs b/src/BootstrapBlazor/Components/Table/TableSize.cs index f97c146fa..633c5acaa 100644 --- a/src/BootstrapBlazor/Components/Table/TableSize.cs +++ b/src/BootstrapBlazor/Components/Table/TableSize.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/TableSortItem.cs b/src/BootstrapBlazor/Components/Table/TableSortItem.cs index 4523e5c8c..df0a3dc01 100644 --- a/src/BootstrapBlazor/Components/Table/TableSortItem.cs +++ b/src/BootstrapBlazor/Components/Table/TableSortItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/TableTemplateColumn.cs b/src/BootstrapBlazor/Components/Table/TableTemplateColumn.cs index 4e9a8558f..21ab1a399 100644 --- a/src/BootstrapBlazor/Components/Table/TableTemplateColumn.cs +++ b/src/BootstrapBlazor/Components/Table/TableTemplateColumn.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/TableToolbar.razor.cs b/src/BootstrapBlazor/Components/Table/TableToolbar.razor.cs index 0d8516e46..737b72b0f 100644 --- a/src/BootstrapBlazor/Components/Table/TableToolbar.razor.cs +++ b/src/BootstrapBlazor/Components/Table/TableToolbar.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Concurrent; diff --git a/src/BootstrapBlazor/Components/Table/TableToolbarButton.cs b/src/BootstrapBlazor/Components/Table/TableToolbarButton.cs index 4d9410e37..b5d8857f4 100644 --- a/src/BootstrapBlazor/Components/Table/TableToolbarButton.cs +++ b/src/BootstrapBlazor/Components/Table/TableToolbarButton.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/TableToolbarComponent.cs b/src/BootstrapBlazor/Components/Table/TableToolbarComponent.cs index 909a88127..5909c7764 100644 --- a/src/BootstrapBlazor/Components/Table/TableToolbarComponent.cs +++ b/src/BootstrapBlazor/Components/Table/TableToolbarComponent.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Table/TableToolbarPopConfirmButton.cs b/src/BootstrapBlazor/Components/Table/TableToolbarPopConfirmButton.cs index 66b417c8d..81302b5f1 100644 --- a/src/BootstrapBlazor/Components/Table/TableToolbarPopConfirmButton.cs +++ b/src/BootstrapBlazor/Components/Table/TableToolbarPopConfirmButton.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Tag/Tag.razor.cs b/src/BootstrapBlazor/Components/Tag/Tag.razor.cs index 6b55b55f4..9aa7bb8a8 100644 --- a/src/BootstrapBlazor/Components/Tag/Tag.razor.cs +++ b/src/BootstrapBlazor/Components/Tag/Tag.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Textarea/Textarea.razor.cs b/src/BootstrapBlazor/Components/Textarea/Textarea.razor.cs index 6303b1d91..4f192d754 100644 --- a/src/BootstrapBlazor/Components/Textarea/Textarea.razor.cs +++ b/src/BootstrapBlazor/Components/Textarea/Textarea.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/ThemeProvider/ThemeProvider.razor.cs b/src/BootstrapBlazor/Components/ThemeProvider/ThemeProvider.razor.cs index 9c5c428a7..a94776499 100644 --- a/src/BootstrapBlazor/Components/ThemeProvider/ThemeProvider.razor.cs +++ b/src/BootstrapBlazor/Components/ThemeProvider/ThemeProvider.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/ThemeProvider/ThemeValue.cs b/src/BootstrapBlazor/Components/ThemeProvider/ThemeValue.cs index 56b3a992e..cf7906e89 100644 --- a/src/BootstrapBlazor/Components/ThemeProvider/ThemeValue.cs +++ b/src/BootstrapBlazor/Components/ThemeProvider/ThemeValue.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using BootstrapBlazor.Core.Converter; diff --git a/src/BootstrapBlazor/Components/TimePicker/TimePicker.razor.cs b/src/BootstrapBlazor/Components/TimePicker/TimePicker.razor.cs index f1188a252..e6d48595e 100644 --- a/src/BootstrapBlazor/Components/TimePicker/TimePicker.razor.cs +++ b/src/BootstrapBlazor/Components/TimePicker/TimePicker.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/TimePicker/TimePickerCell.razor.cs b/src/BootstrapBlazor/Components/TimePicker/TimePickerCell.razor.cs index dfc2cc0d1..f7b96910f 100644 --- a/src/BootstrapBlazor/Components/TimePicker/TimePickerCell.razor.cs +++ b/src/BootstrapBlazor/Components/TimePicker/TimePickerCell.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Timeline/Timeline.razor.cs b/src/BootstrapBlazor/Components/Timeline/Timeline.razor.cs index 9a18daf29..ee865c161 100644 --- a/src/BootstrapBlazor/Components/Timeline/Timeline.razor.cs +++ b/src/BootstrapBlazor/Components/Timeline/Timeline.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Timeline/TimelineItem.cs b/src/BootstrapBlazor/Components/Timeline/TimelineItem.cs index 2713b2f7d..ee392bbe7 100644 --- a/src/BootstrapBlazor/Components/Timeline/TimelineItem.cs +++ b/src/BootstrapBlazor/Components/Timeline/TimelineItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Timer/Timer.razor.cs b/src/BootstrapBlazor/Components/Timer/Timer.razor.cs index 88b852871..e6449af01 100644 --- a/src/BootstrapBlazor/Components/Timer/Timer.razor.cs +++ b/src/BootstrapBlazor/Components/Timer/Timer.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Title/Title.cs b/src/BootstrapBlazor/Components/Title/Title.cs index 66d5ef4ef..13c1ebee2 100644 --- a/src/BootstrapBlazor/Components/Title/Title.cs +++ b/src/BootstrapBlazor/Components/Title/Title.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Title/TitleOption.cs b/src/BootstrapBlazor/Components/Title/TitleOption.cs index 6fbf8859d..2e98aeaa6 100644 --- a/src/BootstrapBlazor/Components/Title/TitleOption.cs +++ b/src/BootstrapBlazor/Components/Title/TitleOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Title/TitleService.cs b/src/BootstrapBlazor/Components/Title/TitleService.cs index b8fc0626a..ef007d29e 100644 --- a/src/BootstrapBlazor/Components/Title/TitleService.cs +++ b/src/BootstrapBlazor/Components/Title/TitleService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Toast/Toast.razor.cs b/src/BootstrapBlazor/Components/Toast/Toast.razor.cs index 3946a2049..353d02ca2 100644 --- a/src/BootstrapBlazor/Components/Toast/Toast.razor.cs +++ b/src/BootstrapBlazor/Components/Toast/Toast.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Toast/ToastContainer.razor.cs b/src/BootstrapBlazor/Components/Toast/ToastContainer.razor.cs index 2d9ca11cf..d8abd0d6c 100644 --- a/src/BootstrapBlazor/Components/Toast/ToastContainer.razor.cs +++ b/src/BootstrapBlazor/Components/Toast/ToastContainer.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Toast/ToastOption.cs b/src/BootstrapBlazor/Components/Toast/ToastOption.cs index b2f4ec003..040606726 100644 --- a/src/BootstrapBlazor/Components/Toast/ToastOption.cs +++ b/src/BootstrapBlazor/Components/Toast/ToastOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Toast/ToastService.cs b/src/BootstrapBlazor/Components/Toast/ToastService.cs index 976e864af..82aa9902b 100644 --- a/src/BootstrapBlazor/Components/Toast/ToastService.cs +++ b/src/BootstrapBlazor/Components/Toast/ToastService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Toggle/Toggle.razor.cs b/src/BootstrapBlazor/Components/Toggle/Toggle.razor.cs index ab2cf7ca6..c1ee0530a 100644 --- a/src/BootstrapBlazor/Components/Toggle/Toggle.razor.cs +++ b/src/BootstrapBlazor/Components/Toggle/Toggle.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Toggle/ToggleBase.cs b/src/BootstrapBlazor/Components/Toggle/ToggleBase.cs index ad198a373..7626a10b4 100644 --- a/src/BootstrapBlazor/Components/Toggle/ToggleBase.cs +++ b/src/BootstrapBlazor/Components/Toggle/ToggleBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Tooltip/ITooltip.cs b/src/BootstrapBlazor/Components/Tooltip/ITooltip.cs index 0e6179280..8fcbcbdf2 100644 --- a/src/BootstrapBlazor/Components/Tooltip/ITooltip.cs +++ b/src/BootstrapBlazor/Components/Tooltip/ITooltip.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Tooltip/Tooltip.razor.cs b/src/BootstrapBlazor/Components/Tooltip/Tooltip.razor.cs index a5d52bed5..9f15dd9ed 100644 --- a/src/BootstrapBlazor/Components/Tooltip/Tooltip.razor.cs +++ b/src/BootstrapBlazor/Components/Tooltip/Tooltip.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Tooltip/TooltipWrapperBase.cs b/src/BootstrapBlazor/Components/Tooltip/TooltipWrapperBase.cs index e7f8d5dcd..c556a5891 100644 --- a/src/BootstrapBlazor/Components/Tooltip/TooltipWrapperBase.cs +++ b/src/BootstrapBlazor/Components/Tooltip/TooltipWrapperBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Transfer/Transfer.razor.cs b/src/BootstrapBlazor/Components/Transfer/Transfer.razor.cs index b37ea928c..a569730d3 100644 --- a/src/BootstrapBlazor/Components/Transfer/Transfer.razor.cs +++ b/src/BootstrapBlazor/Components/Transfer/Transfer.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; using System.Reflection; diff --git a/src/BootstrapBlazor/Components/Transfer/TransferPanel.razor.cs b/src/BootstrapBlazor/Components/Transfer/TransferPanel.razor.cs index 782f942f7..946ba4e59 100644 --- a/src/BootstrapBlazor/Components/Transfer/TransferPanel.razor.cs +++ b/src/BootstrapBlazor/Components/Transfer/TransferPanel.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Transition/Transition.razor.cs b/src/BootstrapBlazor/Components/Transition/Transition.razor.cs index f3f73c21f..cac1ccde9 100644 --- a/src/BootstrapBlazor/Components/Transition/Transition.razor.cs +++ b/src/BootstrapBlazor/Components/Transition/Transition.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Tree/Tree.razor.cs b/src/BootstrapBlazor/Components/Tree/Tree.razor.cs index 5f3bbfdd9..358fb0db0 100644 --- a/src/BootstrapBlazor/Components/Tree/Tree.razor.cs +++ b/src/BootstrapBlazor/Components/Tree/Tree.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Tree/TreeItem.cs b/src/BootstrapBlazor/Components/Tree/TreeItem.cs index 3a67faf08..16fabccd0 100644 --- a/src/BootstrapBlazor/Components/Tree/TreeItem.cs +++ b/src/BootstrapBlazor/Components/Tree/TreeItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/TreeView/TreeView.razor.cs b/src/BootstrapBlazor/Components/TreeView/TreeView.razor.cs index 162a1c434..29ea6a889 100644 --- a/src/BootstrapBlazor/Components/TreeView/TreeView.razor.cs +++ b/src/BootstrapBlazor/Components/TreeView/TreeView.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/TreeView/TreeViewItem.cs b/src/BootstrapBlazor/Components/TreeView/TreeViewItem.cs index 50f2f44cf..d84bc7a0c 100644 --- a/src/BootstrapBlazor/Components/TreeView/TreeViewItem.cs +++ b/src/BootstrapBlazor/Components/TreeView/TreeViewItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Upload/AvatarUpload.razor.cs b/src/BootstrapBlazor/Components/Upload/AvatarUpload.razor.cs index ca0d79c6e..50282a343 100644 --- a/src/BootstrapBlazor/Components/Upload/AvatarUpload.razor.cs +++ b/src/BootstrapBlazor/Components/Upload/AvatarUpload.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; diff --git a/src/BootstrapBlazor/Components/Upload/ButtonUpload.razor.cs b/src/BootstrapBlazor/Components/Upload/ButtonUpload.razor.cs index 8969c9963..44e9f3eb0 100644 --- a/src/BootstrapBlazor/Components/Upload/ButtonUpload.razor.cs +++ b/src/BootstrapBlazor/Components/Upload/ButtonUpload.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Upload/ButtonUploadBase.cs b/src/BootstrapBlazor/Components/Upload/ButtonUploadBase.cs index 2678415e6..2bb04f766 100644 --- a/src/BootstrapBlazor/Components/Upload/ButtonUploadBase.cs +++ b/src/BootstrapBlazor/Components/Upload/ButtonUploadBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; diff --git a/src/BootstrapBlazor/Components/Upload/CardUpload.razor.cs b/src/BootstrapBlazor/Components/Upload/CardUpload.razor.cs index 4b1461b66..90b847dab 100644 --- a/src/BootstrapBlazor/Components/Upload/CardUpload.razor.cs +++ b/src/BootstrapBlazor/Components/Upload/CardUpload.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Upload/IUpload.cs b/src/BootstrapBlazor/Components/Upload/IUpload.cs index 1a65c74c9..5ba6fad51 100644 --- a/src/BootstrapBlazor/Components/Upload/IUpload.cs +++ b/src/BootstrapBlazor/Components/Upload/IUpload.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Upload/InputUpload.razor.cs b/src/BootstrapBlazor/Components/Upload/InputUpload.razor.cs index 126864181..e2ac77027 100644 --- a/src/BootstrapBlazor/Components/Upload/InputUpload.razor.cs +++ b/src/BootstrapBlazor/Components/Upload/InputUpload.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Upload/MultipleUploadBase.cs b/src/BootstrapBlazor/Components/Upload/MultipleUploadBase.cs index ffd31a4b7..eef0a2756 100644 --- a/src/BootstrapBlazor/Components/Upload/MultipleUploadBase.cs +++ b/src/BootstrapBlazor/Components/Upload/MultipleUploadBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Upload/SingleUploadBase.cs b/src/BootstrapBlazor/Components/Upload/SingleUploadBase.cs index 4d8d334cd..88620c634 100644 --- a/src/BootstrapBlazor/Components/Upload/SingleUploadBase.cs +++ b/src/BootstrapBlazor/Components/Upload/SingleUploadBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Upload/UploadBase.cs b/src/BootstrapBlazor/Components/Upload/UploadBase.cs index f160c6eef..ef87d2eac 100644 --- a/src/BootstrapBlazor/Components/Upload/UploadBase.cs +++ b/src/BootstrapBlazor/Components/Upload/UploadBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; diff --git a/src/BootstrapBlazor/Components/Upload/UploadFile.cs b/src/BootstrapBlazor/Components/Upload/UploadFile.cs index 1ae6ec66f..edd334c75 100644 --- a/src/BootstrapBlazor/Components/Upload/UploadFile.cs +++ b/src/BootstrapBlazor/Components/Upload/UploadFile.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; diff --git a/src/BootstrapBlazor/Components/Validate/IValidateCollection.cs b/src/BootstrapBlazor/Components/Validate/IValidateCollection.cs index e500017b5..0dae3b16d 100644 --- a/src/BootstrapBlazor/Components/Validate/IValidateCollection.cs +++ b/src/BootstrapBlazor/Components/Validate/IValidateCollection.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Validate/IValidateComponent.cs b/src/BootstrapBlazor/Components/Validate/IValidateComponent.cs index 68d3d8d5e..90781e89a 100644 --- a/src/BootstrapBlazor/Components/Validate/IValidateComponent.cs +++ b/src/BootstrapBlazor/Components/Validate/IValidateComponent.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Validate/ValidateBase.cs b/src/BootstrapBlazor/Components/Validate/ValidateBase.cs index 397df3641..556fe3647 100644 --- a/src/BootstrapBlazor/Components/Validate/ValidateBase.cs +++ b/src/BootstrapBlazor/Components/Validate/ValidateBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/ValidateForm/BootstrapBlazorDataAnnotationsValidator.cs b/src/BootstrapBlazor/Components/ValidateForm/BootstrapBlazorDataAnnotationsValidator.cs index f63737d9d..8ff9f18b2 100644 --- a/src/BootstrapBlazor/Components/ValidateForm/BootstrapBlazorDataAnnotationsValidator.cs +++ b/src/BootstrapBlazor/Components/ValidateForm/BootstrapBlazorDataAnnotationsValidator.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; diff --git a/src/BootstrapBlazor/Components/ValidateForm/ValidateForm.razor.cs b/src/BootstrapBlazor/Components/ValidateForm/ValidateForm.razor.cs index f80666335..03a16e811 100644 --- a/src/BootstrapBlazor/Components/ValidateForm/ValidateForm.razor.cs +++ b/src/BootstrapBlazor/Components/ValidateForm/ValidateForm.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Components/Waterfall/Waterfall.razor.cs b/src/BootstrapBlazor/Components/Waterfall/Waterfall.razor.cs index f4ed5456c..24b1fed44 100644 --- a/src/BootstrapBlazor/Components/Waterfall/Waterfall.razor.cs +++ b/src/BootstrapBlazor/Components/Waterfall/Waterfall.razor.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/Waterfall/WaterfallItem.cs b/src/BootstrapBlazor/Components/Waterfall/WaterfallItem.cs index aea29a5cf..bf337dcc5 100644 --- a/src/BootstrapBlazor/Components/Waterfall/WaterfallItem.cs +++ b/src/BootstrapBlazor/Components/Waterfall/WaterfallItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/WebSpeech/Recognition/WebSpeechRecognition.cs b/src/BootstrapBlazor/Components/WebSpeech/Recognition/WebSpeechRecognition.cs index 830ff34b1..e2dc059f7 100644 --- a/src/BootstrapBlazor/Components/WebSpeech/Recognition/WebSpeechRecognition.cs +++ b/src/BootstrapBlazor/Components/WebSpeech/Recognition/WebSpeechRecognition.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/WebSpeech/Recognition/WebSpeechRecognitionError.cs b/src/BootstrapBlazor/Components/WebSpeech/Recognition/WebSpeechRecognitionError.cs index 4ed358f5f..5dc6034f2 100644 --- a/src/BootstrapBlazor/Components/WebSpeech/Recognition/WebSpeechRecognitionError.cs +++ b/src/BootstrapBlazor/Components/WebSpeech/Recognition/WebSpeechRecognitionError.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/WebSpeech/Recognition/WebSpeechRecognitionEvent.cs b/src/BootstrapBlazor/Components/WebSpeech/Recognition/WebSpeechRecognitionEvent.cs index 09d99b96e..dbfe33395 100644 --- a/src/BootstrapBlazor/Components/WebSpeech/Recognition/WebSpeechRecognitionEvent.cs +++ b/src/BootstrapBlazor/Components/WebSpeech/Recognition/WebSpeechRecognitionEvent.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/WebSpeech/Recognition/WebSpeechRecognitionOption.cs b/src/BootstrapBlazor/Components/WebSpeech/Recognition/WebSpeechRecognitionOption.cs index d014c023b..6ec98eac8 100644 --- a/src/BootstrapBlazor/Components/WebSpeech/Recognition/WebSpeechRecognitionOption.cs +++ b/src/BootstrapBlazor/Components/WebSpeech/Recognition/WebSpeechRecognitionOption.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Components/WebSpeech/Synthesizer/WebSpeechSynthesisError.cs b/src/BootstrapBlazor/Components/WebSpeech/Synthesizer/WebSpeechSynthesisError.cs index bd86814c2..0e777d095 100644 --- a/src/BootstrapBlazor/Components/WebSpeech/Synthesizer/WebSpeechSynthesisError.cs +++ b/src/BootstrapBlazor/Components/WebSpeech/Synthesizer/WebSpeechSynthesisError.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/WebSpeech/Synthesizer/WebSpeechSynthesisUtterance.cs b/src/BootstrapBlazor/Components/WebSpeech/Synthesizer/WebSpeechSynthesisUtterance.cs index 1b3d71482..20bba13ee 100644 --- a/src/BootstrapBlazor/Components/WebSpeech/Synthesizer/WebSpeechSynthesisUtterance.cs +++ b/src/BootstrapBlazor/Components/WebSpeech/Synthesizer/WebSpeechSynthesisUtterance.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Components/WebSpeech/Synthesizer/WebSpeechSynthesisVoice.cs b/src/BootstrapBlazor/Components/WebSpeech/Synthesizer/WebSpeechSynthesisVoice.cs index e5ddbc562..328d6a033 100644 --- a/src/BootstrapBlazor/Components/WebSpeech/Synthesizer/WebSpeechSynthesisVoice.cs +++ b/src/BootstrapBlazor/Components/WebSpeech/Synthesizer/WebSpeechSynthesisVoice.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/WebSpeech/Synthesizer/WebSpeechSynthesizer.cs b/src/BootstrapBlazor/Components/WebSpeech/Synthesizer/WebSpeechSynthesizer.cs index 92b93b970..b50466c47 100644 --- a/src/BootstrapBlazor/Components/WebSpeech/Synthesizer/WebSpeechSynthesizer.cs +++ b/src/BootstrapBlazor/Components/WebSpeech/Synthesizer/WebSpeechSynthesizer.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Components/WebSpeech/WebSpeechService.cs b/src/BootstrapBlazor/Components/WebSpeech/WebSpeechService.cs index 7fc16e9de..cca0f0351 100644 --- a/src/BootstrapBlazor/Components/WebSpeech/WebSpeechService.cs +++ b/src/BootstrapBlazor/Components/WebSpeech/WebSpeechService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Logging; diff --git a/src/BootstrapBlazor/Converter/JsonDescriptionEnumConverter.cs b/src/BootstrapBlazor/Converter/JsonDescriptionEnumConverter.cs index 2959ec9d2..9a3cae52c 100644 --- a/src/BootstrapBlazor/Converter/JsonDescriptionEnumConverter.cs +++ b/src/BootstrapBlazor/Converter/JsonDescriptionEnumConverter.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json; using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Converter/JsonEnumConverter.cs b/src/BootstrapBlazor/Converter/JsonEnumConverter.cs index d5e4fb35c..afcaf8ed7 100644 --- a/src/BootstrapBlazor/Converter/JsonEnumConverter.cs +++ b/src/BootstrapBlazor/Converter/JsonEnumConverter.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json; using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Dynamic/DataTableDynamicContext.cs b/src/BootstrapBlazor/Dynamic/DataTableDynamicContext.cs index 5a72341c8..187674547 100644 --- a/src/BootstrapBlazor/Dynamic/DataTableDynamicContext.cs +++ b/src/BootstrapBlazor/Dynamic/DataTableDynamicContext.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Concurrent; using System.Data; diff --git a/src/BootstrapBlazor/Dynamic/DataTableDynamicObject.cs b/src/BootstrapBlazor/Dynamic/DataTableDynamicObject.cs index 1fee467a6..5458f8186 100644 --- a/src/BootstrapBlazor/Dynamic/DataTableDynamicObject.cs +++ b/src/BootstrapBlazor/Dynamic/DataTableDynamicObject.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Data; diff --git a/src/BootstrapBlazor/Dynamic/DynamicColumnsObject.cs b/src/BootstrapBlazor/Dynamic/DynamicColumnsObject.cs index 394154afc..76177a396 100644 --- a/src/BootstrapBlazor/Dynamic/DynamicColumnsObject.cs +++ b/src/BootstrapBlazor/Dynamic/DynamicColumnsObject.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Dynamic/DynamicItemChangedType.cs b/src/BootstrapBlazor/Dynamic/DynamicItemChangedType.cs index a1955f4cc..b65b65ec4 100644 --- a/src/BootstrapBlazor/Dynamic/DynamicItemChangedType.cs +++ b/src/BootstrapBlazor/Dynamic/DynamicItemChangedType.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Dynamic/DynamicObject.cs b/src/BootstrapBlazor/Dynamic/DynamicObject.cs index 1a21c0156..dc2b1c0bc 100644 --- a/src/BootstrapBlazor/Dynamic/DynamicObject.cs +++ b/src/BootstrapBlazor/Dynamic/DynamicObject.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Dynamic/DynamicObjectContext.cs b/src/BootstrapBlazor/Dynamic/DynamicObjectContext.cs index 4159f31ed..881b46a34 100644 --- a/src/BootstrapBlazor/Dynamic/DynamicObjectContext.cs +++ b/src/BootstrapBlazor/Dynamic/DynamicObjectContext.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Concurrent; using System.Reflection; diff --git a/src/BootstrapBlazor/Dynamic/DynamicObjectContextArgs.cs b/src/BootstrapBlazor/Dynamic/DynamicObjectContextArgs.cs index eb211baab..eabce1224 100644 --- a/src/BootstrapBlazor/Dynamic/DynamicObjectContextArgs.cs +++ b/src/BootstrapBlazor/Dynamic/DynamicObjectContextArgs.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Dynamic/IDynamicColumnsObject.cs b/src/BootstrapBlazor/Dynamic/IDynamicColumnsObject.cs index 2b1872d92..9539b5105 100644 --- a/src/BootstrapBlazor/Dynamic/IDynamicColumnsObject.cs +++ b/src/BootstrapBlazor/Dynamic/IDynamicColumnsObject.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Dynamic/IDynamicObject.cs b/src/BootstrapBlazor/Dynamic/IDynamicObject.cs index d311adfca..207037e62 100644 --- a/src/BootstrapBlazor/Dynamic/IDynamicObject.cs +++ b/src/BootstrapBlazor/Dynamic/IDynamicObject.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Dynamic/IDynamicObjectContext.cs b/src/BootstrapBlazor/Dynamic/IDynamicObjectContext.cs index 7a6014b59..85e1b0c25 100644 --- a/src/BootstrapBlazor/Dynamic/IDynamicObjectContext.cs +++ b/src/BootstrapBlazor/Dynamic/IDynamicObjectContext.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/AggregateType.cs b/src/BootstrapBlazor/Enums/AggregateType.cs index cfddf46d2..cbf4c2822 100644 --- a/src/BootstrapBlazor/Enums/AggregateType.cs +++ b/src/BootstrapBlazor/Enums/AggregateType.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/Alignment.cs b/src/BootstrapBlazor/Enums/Alignment.cs index 15324b481..dc8f1bfa8 100644 --- a/src/BootstrapBlazor/Enums/Alignment.cs +++ b/src/BootstrapBlazor/Enums/Alignment.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/BreakPoint.cs b/src/BootstrapBlazor/Enums/BreakPoint.cs index 0fb8b6043..914190b83 100644 --- a/src/BootstrapBlazor/Enums/BreakPoint.cs +++ b/src/BootstrapBlazor/Enums/BreakPoint.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Enums/ButtonStyle.cs b/src/BootstrapBlazor/Enums/ButtonStyle.cs index 6ac60d1a1..b6a04ce17 100644 --- a/src/BootstrapBlazor/Enums/ButtonStyle.cs +++ b/src/BootstrapBlazor/Enums/ButtonStyle.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/ButtonType.cs b/src/BootstrapBlazor/Enums/ButtonType.cs index 012326dc1..f8607c422 100644 --- a/src/BootstrapBlazor/Enums/ButtonType.cs +++ b/src/BootstrapBlazor/Enums/ButtonType.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/CalendarType.cs b/src/BootstrapBlazor/Enums/CalendarType.cs index 87fa124e6..e385e5e82 100644 --- a/src/BootstrapBlazor/Enums/CalendarType.cs +++ b/src/BootstrapBlazor/Enums/CalendarType.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/CarouselPlayMode.cs b/src/BootstrapBlazor/Enums/CarouselPlayMode.cs index c5836046a..4ac019838 100644 --- a/src/BootstrapBlazor/Enums/CarouselPlayMode.cs +++ b/src/BootstrapBlazor/Enums/CarouselPlayMode.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/CheckboxState.cs b/src/BootstrapBlazor/Enums/CheckboxState.cs index 31f195ae2..50bc785d8 100644 --- a/src/BootstrapBlazor/Enums/CheckboxState.cs +++ b/src/BootstrapBlazor/Enums/CheckboxState.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/Color.cs b/src/BootstrapBlazor/Enums/Color.cs index 52e5d1218..8e9cb36df 100644 --- a/src/BootstrapBlazor/Enums/Color.cs +++ b/src/BootstrapBlazor/Enums/Color.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/ComponentIcons.cs b/src/BootstrapBlazor/Enums/ComponentIcons.cs index 277a9253e..5fb6ca2df 100644 --- a/src/BootstrapBlazor/Enums/ComponentIcons.cs +++ b/src/BootstrapBlazor/Enums/ComponentIcons.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/DOMEvents.cs b/src/BootstrapBlazor/Enums/DOMEvents.cs index e2ca2f5b3..b2f451023 100644 --- a/src/BootstrapBlazor/Enums/DOMEvents.cs +++ b/src/BootstrapBlazor/Enums/DOMEvents.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; using System.Text.Json; diff --git a/src/BootstrapBlazor/Enums/DatePickerViewMode.cs b/src/BootstrapBlazor/Enums/DatePickerViewMode.cs index f286c45e6..1896cfdb5 100644 --- a/src/BootstrapBlazor/Enums/DatePickerViewMode.cs +++ b/src/BootstrapBlazor/Enums/DatePickerViewMode.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/DateTimeRangeRenderMode.cs b/src/BootstrapBlazor/Enums/DateTimeRangeRenderMode.cs index d134fd4a9..a835f2cad 100644 --- a/src/BootstrapBlazor/Enums/DateTimeRangeRenderMode.cs +++ b/src/BootstrapBlazor/Enums/DateTimeRangeRenderMode.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/DialMode.cs b/src/BootstrapBlazor/Enums/DialMode.cs index 6a0dc504a..219cea10b 100644 --- a/src/BootstrapBlazor/Enums/DialMode.cs +++ b/src/BootstrapBlazor/Enums/DialMode.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/Direction.cs b/src/BootstrapBlazor/Enums/Direction.cs index 13d7e39da..f78a694ac 100644 --- a/src/BootstrapBlazor/Enums/Direction.cs +++ b/src/BootstrapBlazor/Enums/Direction.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/EditMode.cs b/src/BootstrapBlazor/Enums/EditMode.cs index fade6aee2..f9edcbbb5 100644 --- a/src/BootstrapBlazor/Enums/EditMode.cs +++ b/src/BootstrapBlazor/Enums/EditMode.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/FilterAction.cs b/src/BootstrapBlazor/Enums/FilterAction.cs index 3ed11bab3..d84f81506 100644 --- a/src/BootstrapBlazor/Enums/FilterAction.cs +++ b/src/BootstrapBlazor/Enums/FilterAction.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/FilterLogic.cs b/src/BootstrapBlazor/Enums/FilterLogic.cs index dc18545bd..6327dbe2e 100644 --- a/src/BootstrapBlazor/Enums/FilterLogic.cs +++ b/src/BootstrapBlazor/Enums/FilterLogic.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/FlipClockViewMode.cs b/src/BootstrapBlazor/Enums/FlipClockViewMode.cs index 899bbef74..7db9959f8 100644 --- a/src/BootstrapBlazor/Enums/FlipClockViewMode.cs +++ b/src/BootstrapBlazor/Enums/FlipClockViewMode.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/FullScreenSize.cs b/src/BootstrapBlazor/Enums/FullScreenSize.cs index 3f50fe9fb..5b376c2f1 100644 --- a/src/BootstrapBlazor/Enums/FullScreenSize.cs +++ b/src/BootstrapBlazor/Enums/FullScreenSize.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/HorizontalAlignment.cs b/src/BootstrapBlazor/Enums/HorizontalAlignment.cs index 82f50ff54..68e88a126 100644 --- a/src/BootstrapBlazor/Enums/HorizontalAlignment.cs +++ b/src/BootstrapBlazor/Enums/HorizontalAlignment.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/InsertRowMode.cs b/src/BootstrapBlazor/Enums/InsertRowMode.cs index e3280a2ea..3697de104 100644 --- a/src/BootstrapBlazor/Enums/InsertRowMode.cs +++ b/src/BootstrapBlazor/Enums/InsertRowMode.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/ItemsPerRow.cs b/src/BootstrapBlazor/Enums/ItemsPerRow.cs index 2656c08e8..9228861b4 100644 --- a/src/BootstrapBlazor/Enums/ItemsPerRow.cs +++ b/src/BootstrapBlazor/Enums/ItemsPerRow.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/MarqueeDirection.cs b/src/BootstrapBlazor/Enums/MarqueeDirection.cs index 2e999f77b..8be8b6ad3 100644 --- a/src/BootstrapBlazor/Enums/MarqueeDirection.cs +++ b/src/BootstrapBlazor/Enums/MarqueeDirection.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/MessageShowMode.cs b/src/BootstrapBlazor/Enums/MessageShowMode.cs index 23d07fde7..214c08c84 100644 --- a/src/BootstrapBlazor/Enums/MessageShowMode.cs +++ b/src/BootstrapBlazor/Enums/MessageShowMode.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/ObjectFitMode.cs b/src/BootstrapBlazor/Enums/ObjectFitMode.cs index b2fe808a9..3e37f879b 100644 --- a/src/BootstrapBlazor/Enums/ObjectFitMode.cs +++ b/src/BootstrapBlazor/Enums/ObjectFitMode.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/Placement.cs b/src/BootstrapBlazor/Enums/Placement.cs index 985b868c4..9664c54e6 100644 --- a/src/BootstrapBlazor/Enums/Placement.cs +++ b/src/BootstrapBlazor/Enums/Placement.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/PopoverType.cs b/src/BootstrapBlazor/Enums/PopoverType.cs index 56d510c10..ad769f0ea 100644 --- a/src/BootstrapBlazor/Enums/PopoverType.cs +++ b/src/BootstrapBlazor/Enums/PopoverType.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/RecognizerStatus.cs b/src/BootstrapBlazor/Enums/RecognizerStatus.cs index 1ad920c3a..73664aa4c 100644 --- a/src/BootstrapBlazor/Enums/RecognizerStatus.cs +++ b/src/BootstrapBlazor/Enums/RecognizerStatus.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Enums/RowType.cs b/src/BootstrapBlazor/Enums/RowType.cs index c7debf9d1..2e779b7fe 100644 --- a/src/BootstrapBlazor/Enums/RowType.cs +++ b/src/BootstrapBlazor/Enums/RowType.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/ScrollMode.cs b/src/BootstrapBlazor/Enums/ScrollMode.cs index 9ab7d017c..4976a0dd8 100644 --- a/src/BootstrapBlazor/Enums/ScrollMode.cs +++ b/src/BootstrapBlazor/Enums/ScrollMode.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/ScrollToViewAlign.cs b/src/BootstrapBlazor/Enums/ScrollToViewAlign.cs index 2fdf2c10b..0dcd0c2c8 100644 --- a/src/BootstrapBlazor/Enums/ScrollToViewAlign.cs +++ b/src/BootstrapBlazor/Enums/ScrollToViewAlign.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/SearchMode.cs b/src/BootstrapBlazor/Enums/SearchMode.cs index f1e755569..94dc1c0f6 100644 --- a/src/BootstrapBlazor/Enums/SearchMode.cs +++ b/src/BootstrapBlazor/Enums/SearchMode.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/Size.cs b/src/BootstrapBlazor/Enums/Size.cs index 652346ae5..33ac7c126 100644 --- a/src/BootstrapBlazor/Enums/Size.cs +++ b/src/BootstrapBlazor/Enums/Size.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/SortOrder.cs b/src/BootstrapBlazor/Enums/SortOrder.cs index d80d067b2..60894cffd 100644 --- a/src/BootstrapBlazor/Enums/SortOrder.cs +++ b/src/BootstrapBlazor/Enums/SortOrder.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/SpinnerType.cs b/src/BootstrapBlazor/Enums/SpinnerType.cs index d9ef55d20..9be57104c 100644 --- a/src/BootstrapBlazor/Enums/SpinnerType.cs +++ b/src/BootstrapBlazor/Enums/SpinnerType.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/StackAlignItems .cs b/src/BootstrapBlazor/Enums/StackAlignItems .cs index 5ec9e8996..b6e6a9820 100644 --- a/src/BootstrapBlazor/Enums/StackAlignItems .cs +++ b/src/BootstrapBlazor/Enums/StackAlignItems .cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/StackJustify.cs b/src/BootstrapBlazor/Enums/StackJustify.cs index 4ad580a9c..47fc70cc2 100644 --- a/src/BootstrapBlazor/Enums/StackJustify.cs +++ b/src/BootstrapBlazor/Enums/StackJustify.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/StepStatus.cs b/src/BootstrapBlazor/Enums/StepStatus.cs index 7ab62ea16..5e99e7a92 100644 --- a/src/BootstrapBlazor/Enums/StepStatus.cs +++ b/src/BootstrapBlazor/Enums/StepStatus.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/SwalCategory.cs b/src/BootstrapBlazor/Enums/SwalCategory.cs index 24ba321d3..17bb94a53 100644 --- a/src/BootstrapBlazor/Enums/SwalCategory.cs +++ b/src/BootstrapBlazor/Enums/SwalCategory.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/SynthesizerStatus.cs b/src/BootstrapBlazor/Enums/SynthesizerStatus.cs index 22d111382..e58c046d4 100644 --- a/src/BootstrapBlazor/Enums/SynthesizerStatus.cs +++ b/src/BootstrapBlazor/Enums/SynthesizerStatus.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Enums/TableExportType.cs b/src/BootstrapBlazor/Enums/TableExportType.cs index 8e0570cde..34c90659a 100644 --- a/src/BootstrapBlazor/Enums/TableExportType.cs +++ b/src/BootstrapBlazor/Enums/TableExportType.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/TableHeaderStyle.cs b/src/BootstrapBlazor/Enums/TableHeaderStyle.cs index 40e3727ef..1a795c4a3 100644 --- a/src/BootstrapBlazor/Enums/TableHeaderStyle.cs +++ b/src/BootstrapBlazor/Enums/TableHeaderStyle.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/TableRenderModel.cs b/src/BootstrapBlazor/Enums/TableRenderModel.cs index 058b0f5de..781053203 100644 --- a/src/BootstrapBlazor/Enums/TableRenderModel.cs +++ b/src/BootstrapBlazor/Enums/TableRenderModel.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/TimePickerCellViewModel.cs b/src/BootstrapBlazor/Enums/TimePickerCellViewModel.cs index 9d75e4507..a67541383 100644 --- a/src/BootstrapBlazor/Enums/TimePickerCellViewModel.cs +++ b/src/BootstrapBlazor/Enums/TimePickerCellViewModel.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/ToastCategory.cs b/src/BootstrapBlazor/Enums/ToastCategory.cs index a24896ab9..5a0d1ba88 100644 --- a/src/BootstrapBlazor/Enums/ToastCategory.cs +++ b/src/BootstrapBlazor/Enums/ToastCategory.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/TransitionType.cs b/src/BootstrapBlazor/Enums/TransitionType.cs index 46188ed56..3f6eaf6f1 100644 --- a/src/BootstrapBlazor/Enums/TransitionType.cs +++ b/src/BootstrapBlazor/Enums/TransitionType.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Enums/UploadStyle.cs b/src/BootstrapBlazor/Enums/UploadStyle.cs index 1bb2d7de2..5acd9e5e5 100644 --- a/src/BootstrapBlazor/Enums/UploadStyle.cs +++ b/src/BootstrapBlazor/Enums/UploadStyle.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Enums/WebClientDeviceType.cs b/src/BootstrapBlazor/Enums/WebClientDeviceType.cs index 577c48e3c..b01899d6b 100644 --- a/src/BootstrapBlazor/Enums/WebClientDeviceType.cs +++ b/src/BootstrapBlazor/Enums/WebClientDeviceType.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/AssemblyExtensions.cs b/src/BootstrapBlazor/Extensions/AssemblyExtensions.cs index 3bda9634d..d5b31f26a 100644 --- a/src/BootstrapBlazor/Extensions/AssemblyExtensions.cs +++ b/src/BootstrapBlazor/Extensions/AssemblyExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Reflection; diff --git a/src/BootstrapBlazor/Extensions/BootstrapBlazorEditContextDataAnnotationsExtensions.cs b/src/BootstrapBlazor/Extensions/BootstrapBlazorEditContextDataAnnotationsExtensions.cs index b7db4dcfc..07bda8879 100644 --- a/src/BootstrapBlazor/Extensions/BootstrapBlazorEditContextDataAnnotationsExtensions.cs +++ b/src/BootstrapBlazor/Extensions/BootstrapBlazorEditContextDataAnnotationsExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; diff --git a/src/BootstrapBlazor/Extensions/BootstrapBlazorOptionsExtensions.cs b/src/BootstrapBlazor/Extensions/BootstrapBlazorOptionsExtensions.cs index 1224db8b1..b65488117 100644 --- a/src/BootstrapBlazor/Extensions/BootstrapBlazorOptionsExtensions.cs +++ b/src/BootstrapBlazor/Extensions/BootstrapBlazorOptionsExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/BootstrapBlazorServiceCollectionExtensions.cs b/src/BootstrapBlazor/Extensions/BootstrapBlazorServiceCollectionExtensions.cs index 19475fa14..20ab76134 100644 --- a/src/BootstrapBlazor/Extensions/BootstrapBlazorServiceCollectionExtensions.cs +++ b/src/BootstrapBlazor/Extensions/BootstrapBlazorServiceCollectionExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection.Extensions; diff --git a/src/BootstrapBlazor/Extensions/BootstrapModuleAutoLoaderAttributeExtensions.cs b/src/BootstrapBlazor/Extensions/BootstrapModuleAutoLoaderAttributeExtensions.cs index eea0868db..a65d4917a 100644 --- a/src/BootstrapBlazor/Extensions/BootstrapModuleAutoLoaderAttributeExtensions.cs +++ b/src/BootstrapBlazor/Extensions/BootstrapModuleAutoLoaderAttributeExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/ConfigurationExtensions.cs b/src/BootstrapBlazor/Extensions/ConfigurationExtensions.cs index 993478784..b976a0d25 100644 --- a/src/BootstrapBlazor/Extensions/ConfigurationExtensions.cs +++ b/src/BootstrapBlazor/Extensions/ConfigurationExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection.Extensions; diff --git a/src/BootstrapBlazor/Extensions/ConsoleItemMessageExtensions.cs b/src/BootstrapBlazor/Extensions/ConsoleItemMessageExtensions.cs index a95f4eba0..6530361f8 100644 --- a/src/BootstrapBlazor/Extensions/ConsoleItemMessageExtensions.cs +++ b/src/BootstrapBlazor/Extensions/ConsoleItemMessageExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/DateTimeExtensions.cs b/src/BootstrapBlazor/Extensions/DateTimeExtensions.cs index 985757d4a..a93bf5fda 100644 --- a/src/BootstrapBlazor/Extensions/DateTimeExtensions.cs +++ b/src/BootstrapBlazor/Extensions/DateTimeExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Globalization; diff --git a/src/BootstrapBlazor/Extensions/DialogServiceExtensions.cs b/src/BootstrapBlazor/Extensions/DialogServiceExtensions.cs index 5999e29e0..fdf05f4e3 100644 --- a/src/BootstrapBlazor/Extensions/DialogServiceExtensions.cs +++ b/src/BootstrapBlazor/Extensions/DialogServiceExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/DirectoryInfoExtensions.cs b/src/BootstrapBlazor/Extensions/DirectoryInfoExtensions.cs index 76b5ccf6a..64663a4c3 100644 --- a/src/BootstrapBlazor/Extensions/DirectoryInfoExtensions.cs +++ b/src/BootstrapBlazor/Extensions/DirectoryInfoExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/DownloadServiceExtensions.cs b/src/BootstrapBlazor/Extensions/DownloadServiceExtensions.cs index 8d786786f..164eeec97 100644 --- a/src/BootstrapBlazor/Extensions/DownloadServiceExtensions.cs +++ b/src/BootstrapBlazor/Extensions/DownloadServiceExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.IO.Compression; diff --git a/src/BootstrapBlazor/Extensions/DrawerExtensions.cs b/src/BootstrapBlazor/Extensions/DrawerExtensions.cs index 115e84358..7d0d63ea5 100644 --- a/src/BootstrapBlazor/Extensions/DrawerExtensions.cs +++ b/src/BootstrapBlazor/Extensions/DrawerExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/DrawerServiceExtensions.cs b/src/BootstrapBlazor/Extensions/DrawerServiceExtensions.cs index 3fbcb5571..9db04b0bd 100644 --- a/src/BootstrapBlazor/Extensions/DrawerServiceExtensions.cs +++ b/src/BootstrapBlazor/Extensions/DrawerServiceExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/DynamicObjectContextExtensions.cs b/src/BootstrapBlazor/Extensions/DynamicObjectContextExtensions.cs index b1a2132dc..3cfa3f88a 100644 --- a/src/BootstrapBlazor/Extensions/DynamicObjectContextExtensions.cs +++ b/src/BootstrapBlazor/Extensions/DynamicObjectContextExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; using System.Reflection; diff --git a/src/BootstrapBlazor/Extensions/EnumExtensions.cs b/src/BootstrapBlazor/Extensions/EnumExtensions.cs index ea07d191b..b3b4402d5 100644 --- a/src/BootstrapBlazor/Extensions/EnumExtensions.cs +++ b/src/BootstrapBlazor/Extensions/EnumExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; using System.Reflection; diff --git a/src/BootstrapBlazor/Extensions/ExceptionExtensions.cs b/src/BootstrapBlazor/Extensions/ExceptionExtensions.cs index 0935b8490..b97cbc66e 100644 --- a/src/BootstrapBlazor/Extensions/ExceptionExtensions.cs +++ b/src/BootstrapBlazor/Extensions/ExceptionExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Specialized; using System.Text; diff --git a/src/BootstrapBlazor/Extensions/ExpandableNodeExtensions.cs b/src/BootstrapBlazor/Extensions/ExpandableNodeExtensions.cs index f103ee55d..0165c0aff 100644 --- a/src/BootstrapBlazor/Extensions/ExpandableNodeExtensions.cs +++ b/src/BootstrapBlazor/Extensions/ExpandableNodeExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/FieldIdentifierExtensions.cs b/src/BootstrapBlazor/Extensions/FieldIdentifierExtensions.cs index e4b3d104e..a9c8793cb 100644 --- a/src/BootstrapBlazor/Extensions/FieldIdentifierExtensions.cs +++ b/src/BootstrapBlazor/Extensions/FieldIdentifierExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; diff --git a/src/BootstrapBlazor/Extensions/FullScreenServiceExtensions.cs b/src/BootstrapBlazor/Extensions/FullScreenServiceExtensions.cs index 94675adc1..22dacc589 100644 --- a/src/BootstrapBlazor/Extensions/FullScreenServiceExtensions.cs +++ b/src/BootstrapBlazor/Extensions/FullScreenServiceExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/IBluetoothDeviceExtensions.cs b/src/BootstrapBlazor/Extensions/IBluetoothDeviceExtensions.cs index c27f5d139..6108b589b 100644 --- a/src/BootstrapBlazor/Extensions/IBluetoothDeviceExtensions.cs +++ b/src/BootstrapBlazor/Extensions/IBluetoothDeviceExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/ICacheEntryExtensions.cs b/src/BootstrapBlazor/Extensions/ICacheEntryExtensions.cs index 1a4ba4796..d9617ac5e 100644 --- a/src/BootstrapBlazor/Extensions/ICacheEntryExtensions.cs +++ b/src/BootstrapBlazor/Extensions/ICacheEntryExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Caching.Memory; diff --git a/src/BootstrapBlazor/Extensions/IEditorItemExtensions.cs b/src/BootstrapBlazor/Extensions/IEditorItemExtensions.cs index f72de6aa6..29b815707 100644 --- a/src/BootstrapBlazor/Extensions/IEditorItemExtensions.cs +++ b/src/BootstrapBlazor/Extensions/IEditorItemExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Reflection; diff --git a/src/BootstrapBlazor/Extensions/IIconThemeExtensions.cs b/src/BootstrapBlazor/Extensions/IIconThemeExtensions.cs index 9acd9ebfa..4c28a23ec 100644 --- a/src/BootstrapBlazor/Extensions/IIconThemeExtensions.cs +++ b/src/BootstrapBlazor/Extensions/IIconThemeExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/IModelEqualityComparerExtensions.cs b/src/BootstrapBlazor/Extensions/IModelEqualityComparerExtensions.cs index 6a2d5d16f..4d8dc593a 100644 --- a/src/BootstrapBlazor/Extensions/IModelEqualityComparerExtensions.cs +++ b/src/BootstrapBlazor/Extensions/IModelEqualityComparerExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/IQueryableExtensions.cs b/src/BootstrapBlazor/Extensions/IQueryableExtensions.cs index b06ddbbe5..a22ce8d74 100644 --- a/src/BootstrapBlazor/Extensions/IQueryableExtensions.cs +++ b/src/BootstrapBlazor/Extensions/IQueryableExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Linq.Expressions; diff --git a/src/BootstrapBlazor/Extensions/IStringLocalizerExtensions.cs b/src/BootstrapBlazor/Extensions/IStringLocalizerExtensions.cs index 3c9724be9..4f87f4855 100644 --- a/src/BootstrapBlazor/Extensions/IStringLocalizerExtensions.cs +++ b/src/BootstrapBlazor/Extensions/IStringLocalizerExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Extensions/ITableColumnExtensions.cs b/src/BootstrapBlazor/Extensions/ITableColumnExtensions.cs index db8b2a6ed..112f6e6cd 100644 --- a/src/BootstrapBlazor/Extensions/ITableColumnExtensions.cs +++ b/src/BootstrapBlazor/Extensions/ITableColumnExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Globalization; diff --git a/src/BootstrapBlazor/Extensions/JSModuleExtensions.cs b/src/BootstrapBlazor/Extensions/JSModuleExtensions.cs index ed2b5ab37..ac7c6c86f 100644 --- a/src/BootstrapBlazor/Extensions/JSModuleExtensions.cs +++ b/src/BootstrapBlazor/Extensions/JSModuleExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/LambdaExtensions.cs b/src/BootstrapBlazor/Extensions/LambdaExtensions.cs index dcd585456..91339bf3b 100644 --- a/src/BootstrapBlazor/Extensions/LambdaExtensions.cs +++ b/src/BootstrapBlazor/Extensions/LambdaExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.CSharp.RuntimeBinder; using System.Dynamic; diff --git a/src/BootstrapBlazor/Extensions/LocalizationOptionsExtensions.cs b/src/BootstrapBlazor/Extensions/LocalizationOptionsExtensions.cs index 59f4c94ff..95ebc85b3 100644 --- a/src/BootstrapBlazor/Extensions/LocalizationOptionsExtensions.cs +++ b/src/BootstrapBlazor/Extensions/LocalizationOptionsExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Primitives; diff --git a/src/BootstrapBlazor/Extensions/MaskServiceExtensions.cs b/src/BootstrapBlazor/Extensions/MaskServiceExtensions.cs index 99f7462db..9afdd8e22 100644 --- a/src/BootstrapBlazor/Extensions/MaskServiceExtensions.cs +++ b/src/BootstrapBlazor/Extensions/MaskServiceExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/MenuItemExtensions.cs b/src/BootstrapBlazor/Extensions/MenuItemExtensions.cs index b323cfbcf..b63ef5c94 100644 --- a/src/BootstrapBlazor/Extensions/MenuItemExtensions.cs +++ b/src/BootstrapBlazor/Extensions/MenuItemExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/NavigationManagerExtensions.cs b/src/BootstrapBlazor/Extensions/NavigationManagerExtensions.cs index 276a07817..32cba25db 100644 --- a/src/BootstrapBlazor/Extensions/NavigationManagerExtensions.cs +++ b/src/BootstrapBlazor/Extensions/NavigationManagerExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.DependencyInjection; diff --git a/src/BootstrapBlazor/Extensions/ObjectExtensions.cs b/src/BootstrapBlazor/Extensions/ObjectExtensions.cs index c5bca1534..738701145 100644 --- a/src/BootstrapBlazor/Extensions/ObjectExtensions.cs +++ b/src/BootstrapBlazor/Extensions/ObjectExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Globalization; using System.Reflection; diff --git a/src/BootstrapBlazor/Extensions/PrintServiceExtensions.cs b/src/BootstrapBlazor/Extensions/PrintServiceExtensions.cs index eccba605c..2ed5541e9 100644 --- a/src/BootstrapBlazor/Extensions/PrintServiceExtensions.cs +++ b/src/BootstrapBlazor/Extensions/PrintServiceExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/PropertyInfoExtensions.cs b/src/BootstrapBlazor/Extensions/PropertyInfoExtensions.cs index 529bdca33..9def7ceb7 100644 --- a/src/BootstrapBlazor/Extensions/PropertyInfoExtensions.cs +++ b/src/BootstrapBlazor/Extensions/PropertyInfoExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Reflection; diff --git a/src/BootstrapBlazor/Extensions/QueryPageOptionsExtensions.cs b/src/BootstrapBlazor/Extensions/QueryPageOptionsExtensions.cs index 9eb3bb0b9..7e29e5cc1 100644 --- a/src/BootstrapBlazor/Extensions/QueryPageOptionsExtensions.cs +++ b/src/BootstrapBlazor/Extensions/QueryPageOptionsExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Linq.Expressions; diff --git a/src/BootstrapBlazor/Extensions/SwalExtensions.cs b/src/BootstrapBlazor/Extensions/SwalExtensions.cs index fe61557d6..4a30d1308 100644 --- a/src/BootstrapBlazor/Extensions/SwalExtensions.cs +++ b/src/BootstrapBlazor/Extensions/SwalExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/TableEditDialogOptionExtensions.cs b/src/BootstrapBlazor/Extensions/TableEditDialogOptionExtensions.cs index 9e9fbf128..7aaa08a4b 100644 --- a/src/BootstrapBlazor/Extensions/TableEditDialogOptionExtensions.cs +++ b/src/BootstrapBlazor/Extensions/TableEditDialogOptionExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; diff --git a/src/BootstrapBlazor/Extensions/ToastServiceExtensions.cs b/src/BootstrapBlazor/Extensions/ToastServiceExtensions.cs index 61165f036..5c85c3410 100644 --- a/src/BootstrapBlazor/Extensions/ToastServiceExtensions.cs +++ b/src/BootstrapBlazor/Extensions/ToastServiceExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/TreeItemExtensions.cs b/src/BootstrapBlazor/Extensions/TreeItemExtensions.cs index b442e311f..22258b9f3 100644 --- a/src/BootstrapBlazor/Extensions/TreeItemExtensions.cs +++ b/src/BootstrapBlazor/Extensions/TreeItemExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Extensions/TypeExtensions.cs b/src/BootstrapBlazor/Extensions/TypeExtensions.cs index d175ff26f..7b8cec049 100644 --- a/src/BootstrapBlazor/Extensions/TypeExtensions.cs +++ b/src/BootstrapBlazor/Extensions/TypeExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Components.Authorization; diff --git a/src/BootstrapBlazor/Extensions/UploadFileExtensions.cs b/src/BootstrapBlazor/Extensions/UploadFileExtensions.cs index 5d69544f8..54d84ac82 100644 --- a/src/BootstrapBlazor/Extensions/UploadFileExtensions.cs +++ b/src/BootstrapBlazor/Extensions/UploadFileExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; diff --git a/src/BootstrapBlazor/Extensions/ValidateContextExtensions.cs b/src/BootstrapBlazor/Extensions/ValidateContextExtensions.cs index b793c8789..3e36021fc 100644 --- a/src/BootstrapBlazor/Extensions/ValidateContextExtensions.cs +++ b/src/BootstrapBlazor/Extensions/ValidateContextExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.DependencyInjection; using System.Reflection; diff --git a/src/BootstrapBlazor/Localization/ILocalizationMissingItemHandler.cs b/src/BootstrapBlazor/Localization/ILocalizationMissingItemHandler.cs index f0ef50d62..467817b75 100644 --- a/src/BootstrapBlazor/Localization/ILocalizationMissingItemHandler.cs +++ b/src/BootstrapBlazor/Localization/ILocalizationMissingItemHandler.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Localization/ILocalizationResolve.cs b/src/BootstrapBlazor/Localization/ILocalizationResolve.cs index 1cb875f94..45746951a 100644 --- a/src/BootstrapBlazor/Localization/ILocalizationResolve.cs +++ b/src/BootstrapBlazor/Localization/ILocalizationResolve.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Localization/Json/JsonLocalizationOptions.cs b/src/BootstrapBlazor/Localization/Json/JsonLocalizationOptions.cs index e599ff3b8..2136e06fc 100644 --- a/src/BootstrapBlazor/Localization/Json/JsonLocalizationOptions.cs +++ b/src/BootstrapBlazor/Localization/Json/JsonLocalizationOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; using System.Reflection; diff --git a/src/BootstrapBlazor/Localization/Json/JsonLocalizationServiceCollectionExtensions.cs b/src/BootstrapBlazor/Localization/Json/JsonLocalizationServiceCollectionExtensions.cs index 041ccd4a7..e170195a4 100644 --- a/src/BootstrapBlazor/Localization/Json/JsonLocalizationServiceCollectionExtensions.cs +++ b/src/BootstrapBlazor/Localization/Json/JsonLocalizationServiceCollectionExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.DependencyInjection.Extensions; using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Localization/Json/JsonStringLocalizer.cs b/src/BootstrapBlazor/Localization/Json/JsonStringLocalizer.cs index 85273c19b..750d19f0a 100644 --- a/src/BootstrapBlazor/Localization/Json/JsonStringLocalizer.cs +++ b/src/BootstrapBlazor/Localization/Json/JsonStringLocalizer.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; using Microsoft.Extensions.Logging; diff --git a/src/BootstrapBlazor/Localization/Json/JsonStringLocalizerFactory.cs b/src/BootstrapBlazor/Localization/Json/JsonStringLocalizerFactory.cs index dab292495..6c6a2e4e9 100644 --- a/src/BootstrapBlazor/Localization/Json/JsonStringLocalizerFactory.cs +++ b/src/BootstrapBlazor/Localization/Json/JsonStringLocalizerFactory.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; using Microsoft.Extensions.Logging; diff --git a/src/BootstrapBlazor/Localization/Json/StringLocalizer.cs b/src/BootstrapBlazor/Localization/Json/StringLocalizer.cs index e60794969..87fb980eb 100644 --- a/src/BootstrapBlazor/Localization/Json/StringLocalizer.cs +++ b/src/BootstrapBlazor/Localization/Json/StringLocalizer.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Localization/NullLocalizationMissingItemHandler.cs b/src/BootstrapBlazor/Localization/NullLocalizationMissingItemHandler.cs index 8abeff9dc..eeccf0578 100644 --- a/src/BootstrapBlazor/Localization/NullLocalizationMissingItemHandler.cs +++ b/src/BootstrapBlazor/Localization/NullLocalizationMissingItemHandler.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Localization/NullLocalizationResolve.cs b/src/BootstrapBlazor/Localization/NullLocalizationResolve.cs index 0dd1d8732..5d7539a56 100644 --- a/src/BootstrapBlazor/Localization/NullLocalizationResolve.cs +++ b/src/BootstrapBlazor/Localization/NullLocalizationResolve.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Misc/DispatchEntry.cs b/src/BootstrapBlazor/Misc/DispatchEntry.cs index d43075d01..6545f237a 100644 --- a/src/BootstrapBlazor/Misc/DispatchEntry.cs +++ b/src/BootstrapBlazor/Misc/DispatchEntry.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Misc/ExpandableNodeCache.cs b/src/BootstrapBlazor/Misc/ExpandableNodeCache.cs index 75bb7fb95..d951ca045 100644 --- a/src/BootstrapBlazor/Misc/ExpandableNodeCache.cs +++ b/src/BootstrapBlazor/Misc/ExpandableNodeCache.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Misc/ICheckableNode.cs b/src/BootstrapBlazor/Misc/ICheckableNode.cs index 3af6b3c3b..0f62d0a49 100644 --- a/src/BootstrapBlazor/Misc/ICheckableNode.cs +++ b/src/BootstrapBlazor/Misc/ICheckableNode.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Misc/IExpandableNode.cs b/src/BootstrapBlazor/Misc/IExpandableNode.cs index 2aa3e290f..62c97b5a8 100644 --- a/src/BootstrapBlazor/Misc/IExpandableNode.cs +++ b/src/BootstrapBlazor/Misc/IExpandableNode.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Misc/IModelEqualityComparer.cs b/src/BootstrapBlazor/Misc/IModelEqualityComparer.cs index 603cee889..01285fcc9 100644 --- a/src/BootstrapBlazor/Misc/IModelEqualityComparer.cs +++ b/src/BootstrapBlazor/Misc/IModelEqualityComparer.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Misc/IPopoverBaseComponent.cs b/src/BootstrapBlazor/Misc/IPopoverBaseComponent.cs index 583cdad8c..1c5cc2685 100644 --- a/src/BootstrapBlazor/Misc/IPopoverBaseComponent.cs +++ b/src/BootstrapBlazor/Misc/IPopoverBaseComponent.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Misc/Internal/ComponentProperties.cs b/src/BootstrapBlazor/Misc/Internal/ComponentProperties.cs index 6fe115f45..d305d0629 100644 --- a/src/BootstrapBlazor/Misc/Internal/ComponentProperties.cs +++ b/src/BootstrapBlazor/Misc/Internal/ComponentProperties.cs @@ -1,5 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone #if NET6_0_OR_GREATER using System.Collections.Concurrent; diff --git a/src/BootstrapBlazor/Misc/Internal/LinkerFlags.cs b/src/BootstrapBlazor/Misc/Internal/LinkerFlags.cs index 445546b74..7981ea8d8 100644 --- a/src/BootstrapBlazor/Misc/Internal/LinkerFlags.cs +++ b/src/BootstrapBlazor/Misc/Internal/LinkerFlags.cs @@ -1,5 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone #if NET6_0_OR_GREATER namespace Microsoft.AspNetCore.Internal; diff --git a/src/BootstrapBlazor/Misc/Internal/MemberAssignment.cs b/src/BootstrapBlazor/Misc/Internal/MemberAssignment.cs index a9464f7ec..009836b93 100644 --- a/src/BootstrapBlazor/Misc/Internal/MemberAssignment.cs +++ b/src/BootstrapBlazor/Misc/Internal/MemberAssignment.cs @@ -1,5 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone #if NET6_0_OR_GREATER using System.Reflection; diff --git a/src/BootstrapBlazor/Misc/Internal/PropertySetter.cs b/src/BootstrapBlazor/Misc/Internal/PropertySetter.cs index 4216ab660..ecee4f7a9 100644 --- a/src/BootstrapBlazor/Misc/Internal/PropertySetter.cs +++ b/src/BootstrapBlazor/Misc/Internal/PropertySetter.cs @@ -1,5 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone #if NET6_0_OR_GREATER using System.Reflection; diff --git a/src/BootstrapBlazor/Misc/Internal/QueryParameterNameComparer.cs b/src/BootstrapBlazor/Misc/Internal/QueryParameterNameComparer.cs index fb94d3104..ccf03e3af 100644 --- a/src/BootstrapBlazor/Misc/Internal/QueryParameterNameComparer.cs +++ b/src/BootstrapBlazor/Misc/Internal/QueryParameterNameComparer.cs @@ -1,5 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone #if NET6_0_OR_GREATER namespace Microsoft.AspNetCore.Components.Routing; diff --git a/src/BootstrapBlazor/Misc/Internal/QueryParameterValueSupplier.cs b/src/BootstrapBlazor/Misc/Internal/QueryParameterValueSupplier.cs index 6ee4f278c..36a0fac6d 100644 --- a/src/BootstrapBlazor/Misc/Internal/QueryParameterValueSupplier.cs +++ b/src/BootstrapBlazor/Misc/Internal/QueryParameterValueSupplier.cs @@ -1,5 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone #if NET6_0_OR_GREATER using System.Buffers; diff --git a/src/BootstrapBlazor/Misc/Internal/QueryStringEnumerable.cs b/src/BootstrapBlazor/Misc/Internal/QueryStringEnumerable.cs index a479bfd51..4b94a7180 100644 --- a/src/BootstrapBlazor/Misc/Internal/QueryStringEnumerable.cs +++ b/src/BootstrapBlazor/Misc/Internal/QueryStringEnumerable.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone #if NET6_0_OR_GREATER namespace Microsoft.AspNetCore.Internal; diff --git a/src/BootstrapBlazor/Misc/ModelComparer.cs b/src/BootstrapBlazor/Misc/ModelComparer.cs index 08f70f91a..c864b5442 100644 --- a/src/BootstrapBlazor/Misc/ModelComparer.cs +++ b/src/BootstrapBlazor/Misc/ModelComparer.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Misc/NodeBase.cs b/src/BootstrapBlazor/Misc/NodeBase.cs index 5eff60f5b..c9378e36d 100644 --- a/src/BootstrapBlazor/Misc/NodeBase.cs +++ b/src/BootstrapBlazor/Misc/NodeBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Misc/NodeItem.cs b/src/BootstrapBlazor/Misc/NodeItem.cs index ddf0f3294..9609943ea 100644 --- a/src/BootstrapBlazor/Misc/NodeItem.cs +++ b/src/BootstrapBlazor/Misc/NodeItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Misc/QueryData.cs b/src/BootstrapBlazor/Misc/QueryData.cs index 89f3ead38..609ab4073 100644 --- a/src/BootstrapBlazor/Misc/QueryData.cs +++ b/src/BootstrapBlazor/Misc/QueryData.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Misc/SelectedItem.cs b/src/BootstrapBlazor/Misc/SelectedItem.cs index 88fcb0baf..f57316ea9 100644 --- a/src/BootstrapBlazor/Misc/SelectedItem.cs +++ b/src/BootstrapBlazor/Misc/SelectedItem.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Misc/TableTreeNode.cs b/src/BootstrapBlazor/Misc/TableTreeNode.cs index ebabd92a1..839a85e0a 100644 --- a/src/BootstrapBlazor/Misc/TableTreeNode.cs +++ b/src/BootstrapBlazor/Misc/TableTreeNode.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Misc/TreeNodeBase.cs b/src/BootstrapBlazor/Misc/TreeNodeBase.cs index 388a3cdb2..11216f6f7 100644 --- a/src/BootstrapBlazor/Misc/TreeNodeBase.cs +++ b/src/BootstrapBlazor/Misc/TreeNodeBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Misc/TreeNodeCache.cs b/src/BootstrapBlazor/Misc/TreeNodeCache.cs index c59f6a31a..9945904fa 100644 --- a/src/BootstrapBlazor/Misc/TreeNodeCache.cs +++ b/src/BootstrapBlazor/Misc/TreeNodeCache.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Options/ArchiveOptions.cs b/src/BootstrapBlazor/Options/ArchiveOptions.cs index 6d27f953d..2beba340e 100644 --- a/src/BootstrapBlazor/Options/ArchiveOptions.cs +++ b/src/BootstrapBlazor/Options/ArchiveOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.IO.Compression; using System.Text; diff --git a/src/BootstrapBlazor/Options/BootstrapBlazorOptions.cs b/src/BootstrapBlazor/Options/BootstrapBlazorOptions.cs index 6c37413db..3a7e6acb5 100644 --- a/src/BootstrapBlazor/Options/BootstrapBlazorOptions.cs +++ b/src/BootstrapBlazor/Options/BootstrapBlazorOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Globalization; diff --git a/src/BootstrapBlazor/Options/ConfigureOptions.cs b/src/BootstrapBlazor/Options/ConfigureOptions.cs index cf73a0b61..02e4b4415 100644 --- a/src/BootstrapBlazor/Options/ConfigureOptions.cs +++ b/src/BootstrapBlazor/Options/ConfigureOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Configuration; diff --git a/src/BootstrapBlazor/Options/ConnectionHubOptions.cs b/src/BootstrapBlazor/Options/ConnectionHubOptions.cs index a0c1170f3..04ac39dcd 100644 --- a/src/BootstrapBlazor/Options/ConnectionHubOptions.cs +++ b/src/BootstrapBlazor/Options/ConnectionHubOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Options/Constants.cs b/src/BootstrapBlazor/Options/Constants.cs index 0057292ef..4bc38b3d8 100644 --- a/src/BootstrapBlazor/Options/Constants.cs +++ b/src/BootstrapBlazor/Options/Constants.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Options/ContextMenuOptions.cs b/src/BootstrapBlazor/Options/ContextMenuOptions.cs index 107aed804..1477f1783 100644 --- a/src/BootstrapBlazor/Options/ContextMenuOptions.cs +++ b/src/BootstrapBlazor/Options/ContextMenuOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Options/ExportPdfButtonOptions.cs b/src/BootstrapBlazor/Options/ExportPdfButtonOptions.cs index c95b46b20..5cdbb0436 100644 --- a/src/BootstrapBlazor/Options/ExportPdfButtonOptions.cs +++ b/src/BootstrapBlazor/Options/ExportPdfButtonOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Options/IconThemeOptions.cs b/src/BootstrapBlazor/Options/IconThemeOptions.cs index 28384ab84..3ef6ce4b1 100644 --- a/src/BootstrapBlazor/Options/IconThemeOptions.cs +++ b/src/BootstrapBlazor/Options/IconThemeOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Options/QueryPageOptions.cs b/src/BootstrapBlazor/Options/QueryPageOptions.cs index e5cb6ee94..752bd5d8e 100644 --- a/src/BootstrapBlazor/Options/QueryPageOptions.cs +++ b/src/BootstrapBlazor/Options/QueryPageOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Options/ScrollIntoViewOptions.cs b/src/BootstrapBlazor/Options/ScrollIntoViewOptions.cs index 3d5a193de..a8ca0d7b2 100644 --- a/src/BootstrapBlazor/Options/ScrollIntoViewOptions.cs +++ b/src/BootstrapBlazor/Options/ScrollIntoViewOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using BootstrapBlazor.Core.Converter; diff --git a/src/BootstrapBlazor/Options/ScrollOptions.cs b/src/BootstrapBlazor/Options/ScrollOptions.cs index dfcf0d29f..4f6fbe566 100644 --- a/src/BootstrapBlazor/Options/ScrollOptions.cs +++ b/src/BootstrapBlazor/Options/ScrollOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Options/StepSettings.cs b/src/BootstrapBlazor/Options/StepSettings.cs index 5e15a9164..47f53f220 100644 --- a/src/BootstrapBlazor/Options/StepSettings.cs +++ b/src/BootstrapBlazor/Options/StepSettings.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Options/TabItemMenuBindOptions.cs b/src/BootstrapBlazor/Options/TabItemMenuBindOptions.cs index 773214edf..504dfc426 100644 --- a/src/BootstrapBlazor/Options/TabItemMenuBindOptions.cs +++ b/src/BootstrapBlazor/Options/TabItemMenuBindOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Options/TabItemTextOptions.cs b/src/BootstrapBlazor/Options/TabItemTextOptions.cs index 6b2a693eb..922439d01 100644 --- a/src/BootstrapBlazor/Options/TabItemTextOptions.cs +++ b/src/BootstrapBlazor/Options/TabItemTextOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Options/TableExportOptions.cs b/src/BootstrapBlazor/Options/TableExportOptions.cs index d98e3fb51..8c22cf088 100644 --- a/src/BootstrapBlazor/Options/TableExportOptions.cs +++ b/src/BootstrapBlazor/Options/TableExportOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; diff --git a/src/BootstrapBlazor/Options/TableSettings.cs b/src/BootstrapBlazor/Options/TableSettings.cs index 9e1843319..1004b2bd2 100644 --- a/src/BootstrapBlazor/Options/TableSettings.cs +++ b/src/BootstrapBlazor/Options/TableSettings.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Options/ThrottleOptions.cs b/src/BootstrapBlazor/Options/ThrottleOptions.cs index 1d45b155c..98c422fec 100644 --- a/src/BootstrapBlazor/Options/ThrottleOptions.cs +++ b/src/BootstrapBlazor/Options/ThrottleOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Options/WebClientOptions.cs b/src/BootstrapBlazor/Options/WebClientOptions.cs index dee5e1f23..e18c2f631 100644 --- a/src/BootstrapBlazor/Options/WebClientOptions.cs +++ b/src/BootstrapBlazor/Options/WebClientOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Router/AttributeAuthorizeDataCache.cs b/src/BootstrapBlazor/Router/AttributeAuthorizeDataCache.cs index 6ec41a782..1cd8b602a 100644 --- a/src/BootstrapBlazor/Router/AttributeAuthorizeDataCache.cs +++ b/src/BootstrapBlazor/Router/AttributeAuthorizeDataCache.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Authorization; using System.Collections.Concurrent; diff --git a/src/BootstrapBlazor/Router/RouteContext.cs b/src/BootstrapBlazor/Router/RouteContext.cs index da0ced0c1..185d481c3 100644 --- a/src/BootstrapBlazor/Router/RouteContext.cs +++ b/src/BootstrapBlazor/Router/RouteContext.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Router/RouteTableFactory.cs b/src/BootstrapBlazor/Router/RouteTableFactory.cs index 566fcaddb..3c015514b 100644 --- a/src/BootstrapBlazor/Router/RouteTableFactory.cs +++ b/src/BootstrapBlazor/Router/RouteTableFactory.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Reflection; diff --git a/src/BootstrapBlazor/Services/Bluetooth/BluetoothDevice.cs b/src/BootstrapBlazor/Services/Bluetooth/BluetoothDevice.cs index 6141e88e3..a3a606e60 100644 --- a/src/BootstrapBlazor/Services/Bluetooth/BluetoothDevice.cs +++ b/src/BootstrapBlazor/Services/Bluetooth/BluetoothDevice.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/Bluetooth/BluetoothFilter.cs b/src/BootstrapBlazor/Services/Bluetooth/BluetoothFilter.cs index 7c46c59c1..20cc682a8 100644 --- a/src/BootstrapBlazor/Services/Bluetooth/BluetoothFilter.cs +++ b/src/BootstrapBlazor/Services/Bluetooth/BluetoothFilter.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Services/Bluetooth/BluetoothManufacturerDataFilter.cs b/src/BootstrapBlazor/Services/Bluetooth/BluetoothManufacturerDataFilter.cs index 39f0eb5d4..d2daba7e8 100644 --- a/src/BootstrapBlazor/Services/Bluetooth/BluetoothManufacturerDataFilter.cs +++ b/src/BootstrapBlazor/Services/Bluetooth/BluetoothManufacturerDataFilter.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Services/Bluetooth/BluetoothRequestOptions.cs b/src/BootstrapBlazor/Services/Bluetooth/BluetoothRequestOptions.cs index 015d90e77..97226b4e4 100644 --- a/src/BootstrapBlazor/Services/Bluetooth/BluetoothRequestOptions.cs +++ b/src/BootstrapBlazor/Services/Bluetooth/BluetoothRequestOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Services/Bluetooth/BluetoothServiceDataFilter.cs b/src/BootstrapBlazor/Services/Bluetooth/BluetoothServiceDataFilter.cs index 4179124e5..5c7ca8fa3 100644 --- a/src/BootstrapBlazor/Services/Bluetooth/BluetoothServiceDataFilter.cs +++ b/src/BootstrapBlazor/Services/Bluetooth/BluetoothServiceDataFilter.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Services/Bluetooth/DefaultBluetoothService.cs b/src/BootstrapBlazor/Services/Bluetooth/DefaultBluetoothService.cs index 7ae91f8bc..e09f85d79 100644 --- a/src/BootstrapBlazor/Services/Bluetooth/DefaultBluetoothService.cs +++ b/src/BootstrapBlazor/Services/Bluetooth/DefaultBluetoothService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/Bluetooth/IBluetoothDevice.cs b/src/BootstrapBlazor/Services/Bluetooth/IBluetoothDevice.cs index 2dfd74f0b..fd19d430a 100644 --- a/src/BootstrapBlazor/Services/Bluetooth/IBluetoothDevice.cs +++ b/src/BootstrapBlazor/Services/Bluetooth/IBluetoothDevice.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/Bluetooth/IBluetoothService.cs b/src/BootstrapBlazor/Services/Bluetooth/IBluetoothService.cs index ed4c8a767..c72ba7384 100644 --- a/src/BootstrapBlazor/Services/Bluetooth/IBluetoothService.cs +++ b/src/BootstrapBlazor/Services/Bluetooth/IBluetoothService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/BootstrapServiceBase.cs b/src/BootstrapBlazor/Services/BootstrapServiceBase.cs index 9379e74e7..87a1eeed5 100644 --- a/src/BootstrapBlazor/Services/BootstrapServiceBase.cs +++ b/src/BootstrapBlazor/Services/BootstrapServiceBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/CacheManager.cs b/src/BootstrapBlazor/Services/CacheManager.cs index 4de20929f..12866ebae 100644 --- a/src/BootstrapBlazor/Services/CacheManager.cs +++ b/src/BootstrapBlazor/Services/CacheManager.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Caching.Memory; using Microsoft.Extensions.Configuration; diff --git a/src/BootstrapBlazor/Services/ComponentHtmlRenderer.cs b/src/BootstrapBlazor/Services/ComponentHtmlRenderer.cs index 42e9b905e..c7f3b876d 100644 --- a/src/BootstrapBlazor/Services/ComponentHtmlRenderer.cs +++ b/src/BootstrapBlazor/Services/ComponentHtmlRenderer.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; using Microsoft.Extensions.Logging; diff --git a/src/BootstrapBlazor/Services/DataServiceBase.cs b/src/BootstrapBlazor/Services/DataServiceBase.cs index f08579e90..8457a63e9 100644 --- a/src/BootstrapBlazor/Services/DataServiceBase.cs +++ b/src/BootstrapBlazor/Services/DataServiceBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/DefaultBrowserFingerService.cs b/src/BootstrapBlazor/Services/DefaultBrowserFingerService.cs index 271195420..4649328f7 100644 --- a/src/BootstrapBlazor/Services/DefaultBrowserFingerService.cs +++ b/src/BootstrapBlazor/Services/DefaultBrowserFingerService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Concurrent; diff --git a/src/BootstrapBlazor/Services/DefaultCalendarFestivals.cs b/src/BootstrapBlazor/Services/DefaultCalendarFestivals.cs index b6aacfcac..844af647c 100644 --- a/src/BootstrapBlazor/Services/DefaultCalendarFestivals.cs +++ b/src/BootstrapBlazor/Services/DefaultCalendarFestivals.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/DefaultCalendarHolidayss.cs b/src/BootstrapBlazor/Services/DefaultCalendarHolidayss.cs index c08959976..554a10ce7 100644 --- a/src/BootstrapBlazor/Services/DefaultCalendarHolidayss.cs +++ b/src/BootstrapBlazor/Services/DefaultCalendarHolidayss.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/DefaultConnectionService.cs b/src/BootstrapBlazor/Services/DefaultConnectionService.cs index c14cfcb3c..eddce6b24 100644 --- a/src/BootstrapBlazor/Services/DefaultConnectionService.cs +++ b/src/BootstrapBlazor/Services/DefaultConnectionService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Concurrent; diff --git a/src/BootstrapBlazor/Services/DefaultDispatchService.cs b/src/BootstrapBlazor/Services/DefaultDispatchService.cs index 336154ab6..c06e579cc 100644 --- a/src/BootstrapBlazor/Services/DefaultDispatchService.cs +++ b/src/BootstrapBlazor/Services/DefaultDispatchService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/DefaultGeoLocationService.cs b/src/BootstrapBlazor/Services/DefaultGeoLocationService.cs index bd2233c24..739f921b6 100644 --- a/src/BootstrapBlazor/Services/DefaultGeoLocationService.cs +++ b/src/BootstrapBlazor/Services/DefaultGeoLocationService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/DefaultHtml2PdfService.cs b/src/BootstrapBlazor/Services/DefaultHtml2PdfService.cs index 99331d3bc..aee8de4af 100644 --- a/src/BootstrapBlazor/Services/DefaultHtml2PdfService.cs +++ b/src/BootstrapBlazor/Services/DefaultHtml2PdfService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/DefaultIconTheme.cs b/src/BootstrapBlazor/Services/DefaultIconTheme.cs index 954534a96..f5e193e54 100644 --- a/src/BootstrapBlazor/Services/DefaultIconTheme.cs +++ b/src/BootstrapBlazor/Services/DefaultIconTheme.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/DefaultIdGenerator.cs b/src/BootstrapBlazor/Services/DefaultIdGenerator.cs index 0952d3cb0..051a84d56 100644 --- a/src/BootstrapBlazor/Services/DefaultIdGenerator.cs +++ b/src/BootstrapBlazor/Services/DefaultIdGenerator.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/DefaultJSVersionService.cs b/src/BootstrapBlazor/Services/DefaultJSVersionService.cs index 09e881ad7..7743aca9a 100644 --- a/src/BootstrapBlazor/Services/DefaultJSVersionService.cs +++ b/src/BootstrapBlazor/Services/DefaultJSVersionService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Diagnostics; diff --git a/src/BootstrapBlazor/Services/DefaultTableExport.cs b/src/BootstrapBlazor/Services/DefaultTableExport.cs index ad8f53fa6..3ab3cb2c4 100644 --- a/src/BootstrapBlazor/Services/DefaultTableExport.cs +++ b/src/BootstrapBlazor/Services/DefaultTableExport.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/DefaultThemeProvider.cs b/src/BootstrapBlazor/Services/DefaultThemeProvider.cs index 6c86ae53c..9fddf9c6b 100644 --- a/src/BootstrapBlazor/Services/DefaultThemeProvider.cs +++ b/src/BootstrapBlazor/Services/DefaultThemeProvider.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/DefaultThrottleDispatcherFactory.cs b/src/BootstrapBlazor/Services/DefaultThrottleDispatcherFactory.cs index dc1eb40bf..24ca5c76a 100644 --- a/src/BootstrapBlazor/Services/DefaultThrottleDispatcherFactory.cs +++ b/src/BootstrapBlazor/Services/DefaultThrottleDispatcherFactory.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Concurrent; diff --git a/src/BootstrapBlazor/Services/DefaultZipArchiveService.cs b/src/BootstrapBlazor/Services/DefaultZipArchiveService.cs index 1df0aecd1..e872ab3ee 100644 --- a/src/BootstrapBlazor/Services/DefaultZipArchiveService.cs +++ b/src/BootstrapBlazor/Services/DefaultZipArchiveService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.IO.Compression; using System.Text; diff --git a/src/BootstrapBlazor/Services/IBrowserFingerService.cs b/src/BootstrapBlazor/Services/IBrowserFingerService.cs index 934e57b9d..1b36b6ce6 100644 --- a/src/BootstrapBlazor/Services/IBrowserFingerService.cs +++ b/src/BootstrapBlazor/Services/IBrowserFingerService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/ICacheManager.cs b/src/BootstrapBlazor/Services/ICacheManager.cs index 39948cf6c..b32a0bfb9 100644 --- a/src/BootstrapBlazor/Services/ICacheManager.cs +++ b/src/BootstrapBlazor/Services/ICacheManager.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Caching.Memory; diff --git a/src/BootstrapBlazor/Services/ICalendarFestivals.cs b/src/BootstrapBlazor/Services/ICalendarFestivals.cs index c2a773e68..d9c4dd18a 100644 --- a/src/BootstrapBlazor/Services/ICalendarFestivals.cs +++ b/src/BootstrapBlazor/Services/ICalendarFestivals.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/ICalendarHolidays.cs b/src/BootstrapBlazor/Services/ICalendarHolidays.cs index 518884553..e30ee6175 100644 --- a/src/BootstrapBlazor/Services/ICalendarHolidays.cs +++ b/src/BootstrapBlazor/Services/ICalendarHolidays.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IComponentHtmlRenderer.cs b/src/BootstrapBlazor/Services/IComponentHtmlRenderer.cs index 4e964e9eb..ee210e056 100644 --- a/src/BootstrapBlazor/Services/IComponentHtmlRenderer.cs +++ b/src/BootstrapBlazor/Services/IComponentHtmlRenderer.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IComponentIdGenerator.cs b/src/BootstrapBlazor/Services/IComponentIdGenerator.cs index da437fb66..f1251b865 100644 --- a/src/BootstrapBlazor/Services/IComponentIdGenerator.cs +++ b/src/BootstrapBlazor/Services/IComponentIdGenerator.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IConnectionService.cs b/src/BootstrapBlazor/Services/IConnectionService.cs index e7673329d..ec37ea942 100644 --- a/src/BootstrapBlazor/Services/IConnectionService.cs +++ b/src/BootstrapBlazor/Services/IConnectionService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IDataService.cs b/src/BootstrapBlazor/Services/IDataService.cs index c230e9810..9f88340cd 100644 --- a/src/BootstrapBlazor/Services/IDataService.cs +++ b/src/BootstrapBlazor/Services/IDataService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IDispatchService.cs b/src/BootstrapBlazor/Services/IDispatchService.cs index 243c8568f..cf0e376e0 100644 --- a/src/BootstrapBlazor/Services/IDispatchService.cs +++ b/src/BootstrapBlazor/Services/IDispatchService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IEntityFrameworkCoreDataService.cs b/src/BootstrapBlazor/Services/IEntityFrameworkCoreDataService.cs index 1a92e0cb3..ab8639a39 100644 --- a/src/BootstrapBlazor/Services/IEntityFrameworkCoreDataService.cs +++ b/src/BootstrapBlazor/Services/IEntityFrameworkCoreDataService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IExportPdf.cs b/src/BootstrapBlazor/Services/IExportPdf.cs index ee40e3df4..49cc72e23 100644 --- a/src/BootstrapBlazor/Services/IExportPdf.cs +++ b/src/BootstrapBlazor/Services/IExportPdf.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IGeoLocationService.cs b/src/BootstrapBlazor/Services/IGeoLocationService.cs index c739003ea..8b03adfbf 100644 --- a/src/BootstrapBlazor/Services/IGeoLocationService.cs +++ b/src/BootstrapBlazor/Services/IGeoLocationService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IHtml2Pdf.cs b/src/BootstrapBlazor/Services/IHtml2Pdf.cs index 796f715c4..77693f7c8 100644 --- a/src/BootstrapBlazor/Services/IHtml2Pdf.cs +++ b/src/BootstrapBlazor/Services/IHtml2Pdf.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IIconTheme.cs b/src/BootstrapBlazor/Services/IIconTheme.cs index 9df9c1a2d..7b9b27e49 100644 --- a/src/BootstrapBlazor/Services/IIconTheme.cs +++ b/src/BootstrapBlazor/Services/IIconTheme.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/ILookupService.cs b/src/BootstrapBlazor/Services/ILookupService.cs index 6dc333ad4..c684b490b 100644 --- a/src/BootstrapBlazor/Services/ILookupService.cs +++ b/src/BootstrapBlazor/Services/ILookupService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IPLocator/BaiduIpLocatorProvider.cs b/src/BootstrapBlazor/Services/IPLocator/BaiduIpLocatorProvider.cs index b9da184dc..61c46866f 100644 --- a/src/BootstrapBlazor/Services/IPLocator/BaiduIpLocatorProvider.cs +++ b/src/BootstrapBlazor/Services/IPLocator/BaiduIpLocatorProvider.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Logging; using System.Net.Http.Json; diff --git a/src/BootstrapBlazor/Services/IPLocator/BaiduIpLocatorProviderV2.cs b/src/BootstrapBlazor/Services/IPLocator/BaiduIpLocatorProviderV2.cs index 7df3e67de..f20cac775 100644 --- a/src/BootstrapBlazor/Services/IPLocator/BaiduIpLocatorProviderV2.cs +++ b/src/BootstrapBlazor/Services/IPLocator/BaiduIpLocatorProviderV2.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Logging; using System.Net.Http.Json; diff --git a/src/BootstrapBlazor/Services/IPLocator/DefaultIPLocatorProvider.cs b/src/BootstrapBlazor/Services/IPLocator/DefaultIPLocatorProvider.cs index 6f2145582..d32ae7cfd 100644 --- a/src/BootstrapBlazor/Services/IPLocator/DefaultIPLocatorProvider.cs +++ b/src/BootstrapBlazor/Services/IPLocator/DefaultIPLocatorProvider.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Caching.Memory; diff --git a/src/BootstrapBlazor/Services/IPLocator/DefaultIpLocatorFactory.cs b/src/BootstrapBlazor/Services/IPLocator/DefaultIpLocatorFactory.cs index 6a5cbf90c..675b07ccf 100644 --- a/src/BootstrapBlazor/Services/IPLocator/DefaultIpLocatorFactory.cs +++ b/src/BootstrapBlazor/Services/IPLocator/DefaultIpLocatorFactory.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.DependencyInjection; diff --git a/src/BootstrapBlazor/Services/IPLocator/IIpLocatorFactory.cs b/src/BootstrapBlazor/Services/IPLocator/IIpLocatorFactory.cs index 7fad7e2ca..9d96f3b86 100644 --- a/src/BootstrapBlazor/Services/IPLocator/IIpLocatorFactory.cs +++ b/src/BootstrapBlazor/Services/IPLocator/IIpLocatorFactory.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IPLocator/IIpLocatorProvider.cs b/src/BootstrapBlazor/Services/IPLocator/IIpLocatorProvider.cs index cb7fb320d..5c3862de6 100644 --- a/src/BootstrapBlazor/Services/IPLocator/IIpLocatorProvider.cs +++ b/src/BootstrapBlazor/Services/IPLocator/IIpLocatorProvider.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IPLocator/IpLocatorOptions.cs b/src/BootstrapBlazor/Services/IPLocator/IpLocatorOptions.cs index 32fc57ced..0ce126b09 100644 --- a/src/BootstrapBlazor/Services/IPLocator/IpLocatorOptions.cs +++ b/src/BootstrapBlazor/Services/IPLocator/IpLocatorOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IPLocator/JuHeIpLocatorProvider.cs b/src/BootstrapBlazor/Services/IPLocator/JuHeIpLocatorProvider.cs index bbbfedd48..7a6dcab39 100644 --- a/src/BootstrapBlazor/Services/IPLocator/JuHeIpLocatorProvider.cs +++ b/src/BootstrapBlazor/Services/IPLocator/JuHeIpLocatorProvider.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Logging; diff --git a/src/BootstrapBlazor/Services/IRootComponentGenerator.cs b/src/BootstrapBlazor/Services/IRootComponentGenerator.cs index 4fe99966a..486f142d8 100644 --- a/src/BootstrapBlazor/Services/IRootComponentGenerator.cs +++ b/src/BootstrapBlazor/Services/IRootComponentGenerator.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/ITableExcelExport.cs b/src/BootstrapBlazor/Services/ITableExcelExport.cs index bbe5e14be..4b0ca30b1 100644 --- a/src/BootstrapBlazor/Services/ITableExcelExport.cs +++ b/src/BootstrapBlazor/Services/ITableExcelExport.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/ITableExport.cs b/src/BootstrapBlazor/Services/ITableExport.cs index 1b7f1bfc2..4376ae6e9 100644 --- a/src/BootstrapBlazor/Services/ITableExport.cs +++ b/src/BootstrapBlazor/Services/ITableExport.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/ITablePdfExport.cs b/src/BootstrapBlazor/Services/ITablePdfExport.cs index 342b52c9e..e7c378888 100644 --- a/src/BootstrapBlazor/Services/ITablePdfExport.cs +++ b/src/BootstrapBlazor/Services/ITablePdfExport.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IThemeProvider.cs b/src/BootstrapBlazor/Services/IThemeProvider.cs index e05eb659c..f2c0fc03b 100644 --- a/src/BootstrapBlazor/Services/IThemeProvider.cs +++ b/src/BootstrapBlazor/Services/IThemeProvider.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IThrottleDispatcherFactory.cs b/src/BootstrapBlazor/Services/IThrottleDispatcherFactory.cs index b3e1d87d9..1c3b79af3 100644 --- a/src/BootstrapBlazor/Services/IThrottleDispatcherFactory.cs +++ b/src/BootstrapBlazor/Services/IThrottleDispatcherFactory.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IVersionService.cs b/src/BootstrapBlazor/Services/IVersionService.cs index 47d9238e3..9f3f7c66a 100644 --- a/src/BootstrapBlazor/Services/IVersionService.cs +++ b/src/BootstrapBlazor/Services/IVersionService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/IZipArchiveService.cs b/src/BootstrapBlazor/Services/IZipArchiveService.cs index 528ed83ed..2514f9b6c 100644 --- a/src/BootstrapBlazor/Services/IZipArchiveService.cs +++ b/src/BootstrapBlazor/Services/IZipArchiveService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.IO.Compression; using System.Text; diff --git a/src/BootstrapBlazor/Services/Internal/HtmlRenderer.cs b/src/BootstrapBlazor/Services/Internal/HtmlRenderer.cs index df309133f..89e6a3f3f 100644 --- a/src/BootstrapBlazor/Services/Internal/HtmlRenderer.cs +++ b/src/BootstrapBlazor/Services/Internal/HtmlRenderer.cs @@ -1,5 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone #if !NET8_0_OR_GREATER using Microsoft.AspNetCore.Components.HtmlRendering.Infrastructure; diff --git a/src/BootstrapBlazor/Services/Internal/HtmlRootComponent.cs b/src/BootstrapBlazor/Services/Internal/HtmlRootComponent.cs index 31b13f46c..0cbb38eea 100644 --- a/src/BootstrapBlazor/Services/Internal/HtmlRootComponent.cs +++ b/src/BootstrapBlazor/Services/Internal/HtmlRootComponent.cs @@ -1,5 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone #if !NET8_0_OR_GREATER using Microsoft.AspNetCore.Components.HtmlRendering.Infrastructure; diff --git a/src/BootstrapBlazor/Services/Internal/StaticHtmlRenderer.HtmlWriting.cs b/src/BootstrapBlazor/Services/Internal/StaticHtmlRenderer.HtmlWriting.cs index ba3a5a578..947f7d980 100644 --- a/src/BootstrapBlazor/Services/Internal/StaticHtmlRenderer.HtmlWriting.cs +++ b/src/BootstrapBlazor/Services/Internal/StaticHtmlRenderer.HtmlWriting.cs @@ -1,5 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone #if !NET8_0_OR_GREATER using System.Diagnostics; diff --git a/src/BootstrapBlazor/Services/Internal/StaticHtmlRenderer.cs b/src/BootstrapBlazor/Services/Internal/StaticHtmlRenderer.cs index c9f907528..bffa9b0a3 100644 --- a/src/BootstrapBlazor/Services/Internal/StaticHtmlRenderer.cs +++ b/src/BootstrapBlazor/Services/Internal/StaticHtmlRenderer.cs @@ -1,5 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone #if !NET8_0_OR_GREATER using Microsoft.AspNetCore.Components.RenderTree; diff --git a/src/BootstrapBlazor/Services/LookupServiceBase.cs b/src/BootstrapBlazor/Services/LookupServiceBase.cs index 088d4e4b1..8b6395835 100644 --- a/src/BootstrapBlazor/Services/LookupServiceBase.cs +++ b/src/BootstrapBlazor/Services/LookupServiceBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/NotificationService.cs b/src/BootstrapBlazor/Services/NotificationService.cs index e485765b3..98d4ea6b0 100644 --- a/src/BootstrapBlazor/Services/NotificationService.cs +++ b/src/BootstrapBlazor/Services/NotificationService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Caching.Memory; diff --git a/src/BootstrapBlazor/Services/NullLookupService.cs b/src/BootstrapBlazor/Services/NullLookupService.cs index c8f535611..a9ddb62c8 100644 --- a/src/BootstrapBlazor/Services/NullLookupService.cs +++ b/src/BootstrapBlazor/Services/NullLookupService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/Serial/AutoFrameBreakType.cs b/src/BootstrapBlazor/Services/Serial/AutoFrameBreakType.cs index 84b63e986..6123bf34f 100644 --- a/src/BootstrapBlazor/Services/Serial/AutoFrameBreakType.cs +++ b/src/BootstrapBlazor/Services/Serial/AutoFrameBreakType.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/Serial/DefaultSerialService.cs b/src/BootstrapBlazor/Services/Serial/DefaultSerialService.cs index c8a5f7b95..8173e8547 100644 --- a/src/BootstrapBlazor/Services/Serial/DefaultSerialService.cs +++ b/src/BootstrapBlazor/Services/Serial/DefaultSerialService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/Serial/ISerialPort.cs b/src/BootstrapBlazor/Services/Serial/ISerialPort.cs index c64f1b2ac..72e273158 100644 --- a/src/BootstrapBlazor/Services/Serial/ISerialPort.cs +++ b/src/BootstrapBlazor/Services/Serial/ISerialPort.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/Serial/ISerialService.cs b/src/BootstrapBlazor/Services/Serial/ISerialService.cs index 570f37da4..ca7753acb 100644 --- a/src/BootstrapBlazor/Services/Serial/ISerialService.cs +++ b/src/BootstrapBlazor/Services/Serial/ISerialService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/Serial/SerialPort.cs b/src/BootstrapBlazor/Services/Serial/SerialPort.cs index ab99feaa4..53a81430f 100644 --- a/src/BootstrapBlazor/Services/Serial/SerialPort.cs +++ b/src/BootstrapBlazor/Services/Serial/SerialPort.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/Serial/SerialPortFlowControlType.cs b/src/BootstrapBlazor/Services/Serial/SerialPortFlowControlType.cs index d4960ce4a..9b7051de1 100644 --- a/src/BootstrapBlazor/Services/Serial/SerialPortFlowControlType.cs +++ b/src/BootstrapBlazor/Services/Serial/SerialPortFlowControlType.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using BootstrapBlazor.Core.Converter; diff --git a/src/BootstrapBlazor/Services/Serial/SerialPortOptions.cs b/src/BootstrapBlazor/Services/Serial/SerialPortOptions.cs index f0c67de46..7698183aa 100644 --- a/src/BootstrapBlazor/Services/Serial/SerialPortOptions.cs +++ b/src/BootstrapBlazor/Services/Serial/SerialPortOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Services/Serial/SerialPortParityType.cs b/src/BootstrapBlazor/Services/Serial/SerialPortParityType.cs index d46e52145..6a2d632c2 100644 --- a/src/BootstrapBlazor/Services/Serial/SerialPortParityType.cs +++ b/src/BootstrapBlazor/Services/Serial/SerialPortParityType.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using BootstrapBlazor.Core.Converter; diff --git a/src/BootstrapBlazor/Services/Serial/SerialPortSignals.cs b/src/BootstrapBlazor/Services/Serial/SerialPortSignals.cs index 1fdf6e98d..7078e7266 100644 --- a/src/BootstrapBlazor/Services/Serial/SerialPortSignals.cs +++ b/src/BootstrapBlazor/Services/Serial/SerialPortSignals.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Services/Serial/SerialPortSignalsOptions.cs b/src/BootstrapBlazor/Services/Serial/SerialPortSignalsOptions.cs index 6d9e3ae25..1cfd5fa4f 100644 --- a/src/BootstrapBlazor/Services/Serial/SerialPortSignalsOptions.cs +++ b/src/BootstrapBlazor/Services/Serial/SerialPortSignalsOptions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Services/Serial/SerialPortUsbInfo.cs b/src/BootstrapBlazor/Services/Serial/SerialPortUsbInfo.cs index e911e9298..0620c825f 100644 --- a/src/BootstrapBlazor/Services/Serial/SerialPortUsbInfo.cs +++ b/src/BootstrapBlazor/Services/Serial/SerialPortUsbInfo.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/TableMetadataTypeService.cs b/src/BootstrapBlazor/Services/TableMetadataTypeService.cs index 0d2b0a639..bb2d7b117 100644 --- a/src/BootstrapBlazor/Services/TableMetadataTypeService.cs +++ b/src/BootstrapBlazor/Services/TableMetadataTypeService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections.Concurrent; using System.Reflection; diff --git a/src/BootstrapBlazor/Services/ThrottleDispatcher.cs b/src/BootstrapBlazor/Services/ThrottleDispatcher.cs index 65aa1a11e..01a92d94b 100644 --- a/src/BootstrapBlazor/Services/ThrottleDispatcher.cs +++ b/src/BootstrapBlazor/Services/ThrottleDispatcher.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Services/WebClientService.cs b/src/BootstrapBlazor/Services/WebClientService.cs index 3ae2ecaf5..9b4ad06df 100644 --- a/src/BootstrapBlazor/Services/WebClientService.cs +++ b/src/BootstrapBlazor/Services/WebClientService.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Logging; using System.Text.Json.Serialization; diff --git a/src/BootstrapBlazor/Utils/BootstrapDynamicComponent.cs b/src/BootstrapBlazor/Utils/BootstrapDynamicComponent.cs index 00bbf6518..ed69e327e 100644 --- a/src/BootstrapBlazor/Utils/BootstrapDynamicComponent.cs +++ b/src/BootstrapBlazor/Utils/BootstrapDynamicComponent.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Utils/CssBuilder.cs b/src/BootstrapBlazor/Utils/CssBuilder.cs index 19f2d1160..d0b744099 100644 --- a/src/BootstrapBlazor/Utils/CssBuilder.cs +++ b/src/BootstrapBlazor/Utils/CssBuilder.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Utils/EmitHelper.cs b/src/BootstrapBlazor/Utils/EmitHelper.cs index bf0a7375d..31498980d 100644 --- a/src/BootstrapBlazor/Utils/EmitHelper.cs +++ b/src/BootstrapBlazor/Utils/EmitHelper.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Reflection; using System.Reflection.Emit; diff --git a/src/BootstrapBlazor/Utils/JSModule.cs b/src/BootstrapBlazor/Utils/JSModule.cs index 298e698e8..3996cb7a2 100644 --- a/src/BootstrapBlazor/Utils/JSModule.cs +++ b/src/BootstrapBlazor/Utils/JSModule.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Utils/Offset.cs b/src/BootstrapBlazor/Utils/Offset.cs index 9142c5693..1d96b5cad 100644 --- a/src/BootstrapBlazor/Utils/Offset.cs +++ b/src/BootstrapBlazor/Utils/Offset.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Utils/QueryHelper.cs b/src/BootstrapBlazor/Utils/QueryHelper.cs index ceaac9e08..e75f82e14 100644 --- a/src/BootstrapBlazor/Utils/QueryHelper.cs +++ b/src/BootstrapBlazor/Utils/QueryHelper.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Primitives; using System.Text; diff --git a/src/BootstrapBlazor/Utils/Utility.cs b/src/BootstrapBlazor/Utils/Utility.cs index ec2514a67..9083739f8 100644 --- a/src/BootstrapBlazor/Utils/Utility.cs +++ b/src/BootstrapBlazor/Utils/Utility.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; using Microsoft.Extensions.Localization; diff --git a/src/BootstrapBlazor/Validators/DateTimeRangeRequiredValidator.cs b/src/BootstrapBlazor/Validators/DateTimeRangeRequiredValidator.cs index fc3b083e7..41d979d0c 100644 --- a/src/BootstrapBlazor/Validators/DateTimeRangeRequiredValidator.cs +++ b/src/BootstrapBlazor/Validators/DateTimeRangeRequiredValidator.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Validators/FormItemValidator.cs b/src/BootstrapBlazor/Validators/FormItemValidator.cs index b51266bd3..c648be18d 100644 --- a/src/BootstrapBlazor/Validators/FormItemValidator.cs +++ b/src/BootstrapBlazor/Validators/FormItemValidator.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Validators/IValidator.cs b/src/BootstrapBlazor/Validators/IValidator.cs index 3c8998eb4..6b12ff126 100644 --- a/src/BootstrapBlazor/Validators/IValidator.cs +++ b/src/BootstrapBlazor/Validators/IValidator.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Validators/IValidatorAsync.cs b/src/BootstrapBlazor/Validators/IValidatorAsync.cs index 28ecbf4a4..fc3b67452 100644 --- a/src/BootstrapBlazor/Validators/IValidatorAsync.cs +++ b/src/BootstrapBlazor/Validators/IValidatorAsync.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Validators/MaxValidator.cs b/src/BootstrapBlazor/Validators/MaxValidator.cs index 0ad23f418..c8b665d18 100644 --- a/src/BootstrapBlazor/Validators/MaxValidator.cs +++ b/src/BootstrapBlazor/Validators/MaxValidator.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Globalization; diff --git a/src/BootstrapBlazor/Validators/MinValidator.cs b/src/BootstrapBlazor/Validators/MinValidator.cs index 2860a0f24..2532eac0f 100644 --- a/src/BootstrapBlazor/Validators/MinValidator.cs +++ b/src/BootstrapBlazor/Validators/MinValidator.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Validators/RequiredValidator.cs b/src/BootstrapBlazor/Validators/RequiredValidator.cs index b326c96e3..949574e09 100644 --- a/src/BootstrapBlazor/Validators/RequiredValidator.cs +++ b/src/BootstrapBlazor/Validators/RequiredValidator.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; using Microsoft.Extensions.DependencyInjection; diff --git a/src/BootstrapBlazor/Validators/ValidatorAsyncBase.cs b/src/BootstrapBlazor/Validators/ValidatorAsyncBase.cs index a3856aaf4..8644c50bf 100644 --- a/src/BootstrapBlazor/Validators/ValidatorAsyncBase.cs +++ b/src/BootstrapBlazor/Validators/ValidatorAsyncBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/Validators/ValidatorBase.cs b/src/BootstrapBlazor/Validators/ValidatorBase.cs index 3c69d83a6..71b83754b 100644 --- a/src/BootstrapBlazor/Validators/ValidatorBase.cs +++ b/src/BootstrapBlazor/Validators/ValidatorBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace BootstrapBlazor.Components; diff --git a/src/BootstrapBlazor/readme.md b/src/BootstrapBlazor/readme.md index 0b76589e9..95d8d37f6 100644 --- a/src/BootstrapBlazor/readme.md +++ b/src/BootstrapBlazor/readme.md @@ -1,6 +1,8 @@ # Bootstrap Blazor Component -## A set of enterprise-class UI components based on Bootstrap and Blazor. +## an enterprise-level UI component library based on Bootstrap and Blazor. + +

This project is part of the .NET Foundation and operates under their code of conduct.

[![License](https://img.shields.io/github/license/dotnetcore/bootstrapblazor.svg?logo=git&logoColor=red)](https://github.com/dotnetcore/BootstrapBlazor/blob/main/LICENSE) [![Github build](https://img.shields.io/github/actions/workflow/status/dotnetcore/BootstrapBlazor/build.yml?branch=main&?label=main&logo=github)](https://github.com/dotnetcore/BootstrapBlazor/actions?query=workflow%3A%22Build+Project%22+branch%3Amain) diff --git a/test/UniTest.Sass/GlobalUsings.cs b/test/UniTest.Sass/GlobalUsings.cs index 6f9dcdf6b..da99320fb 100644 --- a/test/UniTest.Sass/GlobalUsings.cs +++ b/test/UniTest.Sass/GlobalUsings.cs @@ -1,5 +1,6 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone global using Xunit; \ No newline at end of file diff --git a/test/UniTest.Sass/VariableTest.cs b/test/UniTest.Sass/VariableTest.cs index 7ce53e749..542d1421b 100644 --- a/test/UniTest.Sass/VariableTest.cs +++ b/test/UniTest.Sass/VariableTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.RegularExpressions; diff --git a/test/UniTestSvgIcon/UnitTest.cs b/test/UniTestSvgIcon/UnitTest.cs index 03feacf09..d84fd3dbd 100644 --- a/test/UniTestSvgIcon/UnitTest.cs +++ b/test/UniTestSvgIcon/UnitTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using BootstrapBlazor.Components; using Microsoft.Extensions.DependencyInjection; diff --git a/test/UnitTest.Localization/BootstrapBlazorEnTestBase.cs b/test/UnitTest.Localization/BootstrapBlazorEnTestBase.cs index 37217b89f..66e5213a6 100644 --- a/test/UnitTest.Localization/BootstrapBlazorEnTestBase.cs +++ b/test/UnitTest.Localization/BootstrapBlazorEnTestBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Localization; diff --git a/test/UnitTest.Localization/BootstrapBlazorZhTestBase .cs b/test/UnitTest.Localization/BootstrapBlazorZhTestBase .cs index 1bfa99b8e..7468980dc 100644 --- a/test/UnitTest.Localization/BootstrapBlazorZhTestBase .cs +++ b/test/UnitTest.Localization/BootstrapBlazorZhTestBase .cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Localization; diff --git a/test/UnitTest.Localization/CollectionOrder/DisplayNameOrder.cs b/test/UnitTest.Localization/CollectionOrder/DisplayNameOrder.cs index 775a18b98..50fc68340 100644 --- a/test/UnitTest.Localization/CollectionOrder/DisplayNameOrder.cs +++ b/test/UnitTest.Localization/CollectionOrder/DisplayNameOrder.cs @@ -1,5 +1,6 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone [assembly: CollectionBehavior(DisableTestParallelization = true)] diff --git a/test/UnitTest.Localization/LocalizerEnTest.cs b/test/UnitTest.Localization/LocalizerEnTest.cs index e5da1b68e..b12faa912 100644 --- a/test/UnitTest.Localization/LocalizerEnTest.cs +++ b/test/UnitTest.Localization/LocalizerEnTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using BootstrapBlazor.Server.Data; using Microsoft.Extensions.Localization; diff --git a/test/UnitTest.Localization/LocalizerZhTest.cs b/test/UnitTest.Localization/LocalizerZhTest.cs index 5eaf04b48..fb71aa128 100644 --- a/test/UnitTest.Localization/LocalizerZhTest.cs +++ b/test/UnitTest.Localization/LocalizerZhTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using BootstrapBlazor.Server.Data; using Microsoft.Extensions.Localization; diff --git a/test/UnitTest/Attributes/AutoGenerateClassTest.cs b/test/UnitTest/Attributes/AutoGenerateClassTest.cs index 39ac48329..06a827157 100644 --- a/test/UnitTest/Attributes/AutoGenerateClassTest.cs +++ b/test/UnitTest/Attributes/AutoGenerateClassTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Attributes; diff --git a/test/UnitTest/Components/AjaxTest.cs b/test/UnitTest/Components/AjaxTest.cs index 3ac314a7f..7e30ad088 100644 --- a/test/UnitTest/Components/AjaxTest.cs +++ b/test/UnitTest/Components/AjaxTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/AlertTest.cs b/test/UnitTest/Components/AlertTest.cs index 99e550820..2fdf7cd26 100644 --- a/test/UnitTest/Components/AlertTest.cs +++ b/test/UnitTest/Components/AlertTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/AnchorLinkTest.cs b/test/UnitTest/Components/AnchorLinkTest.cs index 220c59fe9..833a36719 100644 --- a/test/UnitTest/Components/AnchorLinkTest.cs +++ b/test/UnitTest/Components/AnchorLinkTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/AnchorTest.cs b/test/UnitTest/Components/AnchorTest.cs index 8da8c58d7..2d07d950f 100644 --- a/test/UnitTest/Components/AnchorTest.cs +++ b/test/UnitTest/Components/AnchorTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/AuthorizeViewTest.cs b/test/UnitTest/Components/AuthorizeViewTest.cs index 473d8df7b..20b72f782 100644 --- a/test/UnitTest/Components/AuthorizeViewTest.cs +++ b/test/UnitTest/Components/AuthorizeViewTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Bunit.TestDoubles; using Microsoft.AspNetCore.Components.Authorization; diff --git a/test/UnitTest/Components/AutoCompleteTest.cs b/test/UnitTest/Components/AutoCompleteTest.cs index 5487061b8..ee8c7a27c 100644 --- a/test/UnitTest/Components/AutoCompleteTest.cs +++ b/test/UnitTest/Components/AutoCompleteTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; diff --git a/test/UnitTest/Components/AutoFillTest.cs b/test/UnitTest/Components/AutoFillTest.cs index 48c43d2ac..e4366b05e 100644 --- a/test/UnitTest/Components/AutoFillTest.cs +++ b/test/UnitTest/Components/AutoFillTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; using Microsoft.Extensions.Localization; diff --git a/test/UnitTest/Components/AutoRedirectTest.cs b/test/UnitTest/Components/AutoRedirectTest.cs index 981fd9075..cc8a6bbba 100644 --- a/test/UnitTest/Components/AutoRedirectTest.cs +++ b/test/UnitTest/Components/AutoRedirectTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/AvatarTest.cs b/test/UnitTest/Components/AvatarTest.cs index 716887496..cb3e0b77e 100644 --- a/test/UnitTest/Components/AvatarTest.cs +++ b/test/UnitTest/Components/AvatarTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/BadgeTest.cs b/test/UnitTest/Components/BadgeTest.cs index f20ef27d6..22ab7abbc 100644 --- a/test/UnitTest/Components/BadgeTest.cs +++ b/test/UnitTest/Components/BadgeTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/BlockTest.cs b/test/UnitTest/Components/BlockTest.cs index 09707d91b..587235046 100644 --- a/test/UnitTest/Components/BlockTest.cs +++ b/test/UnitTest/Components/BlockTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/BootstrapBlazorRootTest.cs b/test/UnitTest/Components/BootstrapBlazorRootTest.cs index c6fe96361..53c330ee5 100644 --- a/test/UnitTest/Components/BootstrapBlazorRootTest.cs +++ b/test/UnitTest/Components/BootstrapBlazorRootTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone //using HarmonyLib; diff --git a/test/UnitTest/Components/BootstrapModuleComponentBaseTest.cs b/test/UnitTest/Components/BootstrapModuleComponentBaseTest.cs index 75ef72699..c7227618a 100644 --- a/test/UnitTest/Components/BootstrapModuleComponentBaseTest.cs +++ b/test/UnitTest/Components/BootstrapModuleComponentBaseTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.JSInterop; diff --git a/test/UnitTest/Components/BreadcrumbsTest.cs b/test/UnitTest/Components/BreadcrumbsTest.cs index 238f8deec..e72cfa98a 100644 --- a/test/UnitTest/Components/BreadcrumbsTest.cs +++ b/test/UnitTest/Components/BreadcrumbsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/BrowserNotificationTest.cs b/test/UnitTest/Components/BrowserNotificationTest.cs index f3a976b31..49c7638cb 100644 --- a/test/UnitTest/Components/BrowserNotificationTest.cs +++ b/test/UnitTest/Components/BrowserNotificationTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/ButtonTest.cs b/test/UnitTest/Components/ButtonTest.cs index fb1be0132..3f1b3c6bf 100644 --- a/test/UnitTest/Components/ButtonTest.cs +++ b/test/UnitTest/Components/ButtonTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; using Microsoft.Extensions.Localization; diff --git a/test/UnitTest/Components/CalendarTest.cs b/test/UnitTest/Components/CalendarTest.cs index 92d9ed684..8af4ce3dc 100644 --- a/test/UnitTest/Components/CalendarTest.cs +++ b/test/UnitTest/Components/CalendarTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/CameraTest.cs b/test/UnitTest/Components/CameraTest.cs index 811008d0a..ba5ae1428 100644 --- a/test/UnitTest/Components/CameraTest.cs +++ b/test/UnitTest/Components/CameraTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.JSInterop; using UnitTest.Mock; diff --git a/test/UnitTest/Components/CaptchaTest.cs b/test/UnitTest/Components/CaptchaTest.cs index 8ed4bab05..148afb45b 100644 --- a/test/UnitTest/Components/CaptchaTest.cs +++ b/test/UnitTest/Components/CaptchaTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; public class CaptchaTest : BootstrapBlazorTestBase diff --git a/test/UnitTest/Components/CardTest.cs b/test/UnitTest/Components/CardTest.cs index 939fe38ec..e6a82d64a 100644 --- a/test/UnitTest/Components/CardTest.cs +++ b/test/UnitTest/Components/CardTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/CarouselTest.cs b/test/UnitTest/Components/CarouselTest.cs index 4110d5aa2..b2cefa953 100644 --- a/test/UnitTest/Components/CarouselTest.cs +++ b/test/UnitTest/Components/CarouselTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/CascaderTest.cs b/test/UnitTest/Components/CascaderTest.cs index 5e2f6b5e7..0158fa553 100644 --- a/test/UnitTest/Components/CascaderTest.cs +++ b/test/UnitTest/Components/CascaderTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/CheckboxListTest.cs b/test/UnitTest/Components/CheckboxListTest.cs index ef256504c..999fbac81 100644 --- a/test/UnitTest/Components/CheckboxListTest.cs +++ b/test/UnitTest/Components/CheckboxListTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/test/UnitTest/Components/CircleTest.cs b/test/UnitTest/Components/CircleTest.cs index 836cec8f6..73df1ca1e 100644 --- a/test/UnitTest/Components/CircleTest.cs +++ b/test/UnitTest/Components/CircleTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/ClipboardServiceTest.cs b/test/UnitTest/Components/ClipboardServiceTest.cs index 386e12870..cd5f4fda3 100644 --- a/test/UnitTest/Components/ClipboardServiceTest.cs +++ b/test/UnitTest/Components/ClipboardServiceTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; diff --git a/test/UnitTest/Components/ClockPickerTest.cs b/test/UnitTest/Components/ClockPickerTest.cs index 14d87cdf3..63c0503ca 100644 --- a/test/UnitTest/Components/ClockPickerTest.cs +++ b/test/UnitTest/Components/ClockPickerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/CollapseTest.cs b/test/UnitTest/Components/CollapseTest.cs index 085281a84..04b8a1ae9 100644 --- a/test/UnitTest/Components/CollapseTest.cs +++ b/test/UnitTest/Components/CollapseTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/ColorPickerTest.cs b/test/UnitTest/Components/ColorPickerTest.cs index 47a47e494..5faa9d2e9 100644 --- a/test/UnitTest/Components/ColorPickerTest.cs +++ b/test/UnitTest/Components/ColorPickerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/ConsoleLoggerTest.cs b/test/UnitTest/Components/ConsoleLoggerTest.cs index 53ab37dfc..31da1077d 100644 --- a/test/UnitTest/Components/ConsoleLoggerTest.cs +++ b/test/UnitTest/Components/ConsoleLoggerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/ConsoleTest.cs b/test/UnitTest/Components/ConsoleTest.cs index 8792a7cef..ef00230fb 100644 --- a/test/UnitTest/Components/ConsoleTest.cs +++ b/test/UnitTest/Components/ConsoleTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Collections; using Console = BootstrapBlazor.Components.Console; diff --git a/test/UnitTest/Components/ContextMenuTest.cs b/test/UnitTest/Components/ContextMenuTest.cs index ad3274818..5f23e2f59 100644 --- a/test/UnitTest/Components/ContextMenuTest.cs +++ b/test/UnitTest/Components/ContextMenuTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using AngleSharp.Dom; using Microsoft.AspNetCore.Components.Web; diff --git a/test/UnitTest/Components/CountButtonTest.cs b/test/UnitTest/Components/CountButtonTest.cs index d39cfa104..750050a2f 100644 --- a/test/UnitTest/Components/CountButtonTest.cs +++ b/test/UnitTest/Components/CountButtonTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/CountUpTest.cs b/test/UnitTest/Components/CountUpTest.cs index c01bbd50d..05e9304cd 100644 --- a/test/UnitTest/Components/CountUpTest.cs +++ b/test/UnitTest/Components/CountUpTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/DateTimePickerTest.cs b/test/UnitTest/Components/DateTimePickerTest.cs index d4df99cb9..842a8b408 100644 --- a/test/UnitTest/Components/DateTimePickerTest.cs +++ b/test/UnitTest/Components/DateTimePickerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using AngleSharp.Dom; diff --git a/test/UnitTest/Components/DateTimeRangeTest.cs b/test/UnitTest/Components/DateTimeRangeTest.cs index 00535d229..013ef1864 100644 --- a/test/UnitTest/Components/DateTimeRangeTest.cs +++ b/test/UnitTest/Components/DateTimeRangeTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using AngleSharp.Dom; using System.ComponentModel.DataAnnotations; diff --git a/test/UnitTest/Components/DialButtonTest.cs b/test/UnitTest/Components/DialButtonTest.cs index a9d064494..a942f8bdc 100644 --- a/test/UnitTest/Components/DialButtonTest.cs +++ b/test/UnitTest/Components/DialButtonTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/DialogTest.cs b/test/UnitTest/Components/DialogTest.cs index 30845e631..70b0b4542 100644 --- a/test/UnitTest/Components/DialogTest.cs +++ b/test/UnitTest/Components/DialogTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/DisplayTest.cs b/test/UnitTest/Components/DisplayTest.cs index 64e8864c6..8fa9d600d 100644 --- a/test/UnitTest/Components/DisplayTest.cs +++ b/test/UnitTest/Components/DisplayTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Reflection; using System.Web; diff --git a/test/UnitTest/Components/DividerTest.cs b/test/UnitTest/Components/DividerTest.cs index 3ae528927..d906e917b 100644 --- a/test/UnitTest/Components/DividerTest.cs +++ b/test/UnitTest/Components/DividerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/DownloadTest.cs b/test/UnitTest/Components/DownloadTest.cs index 29c6d9f27..b7e1b9716 100644 --- a/test/UnitTest/Components/DownloadTest.cs +++ b/test/UnitTest/Components/DownloadTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.JSInterop; diff --git a/test/UnitTest/Components/DragDropTest.cs b/test/UnitTest/Components/DragDropTest.cs index 49d036f59..2e6e75e35 100644 --- a/test/UnitTest/Components/DragDropTest.cs +++ b/test/UnitTest/Components/DragDropTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/DrawerTest.cs b/test/UnitTest/Components/DrawerTest.cs index b19c3c7ce..aaf8f299d 100644 --- a/test/UnitTest/Components/DrawerTest.cs +++ b/test/UnitTest/Components/DrawerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/DropdownTest.cs b/test/UnitTest/Components/DropdownTest.cs index 83770c8ff..dac0f0cd6 100644 --- a/test/UnitTest/Components/DropdownTest.cs +++ b/test/UnitTest/Components/DropdownTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/DropdownWidgetTest.cs b/test/UnitTest/Components/DropdownWidgetTest.cs index 9bc26dccb..beaa6c309 100644 --- a/test/UnitTest/Components/DropdownWidgetTest.cs +++ b/test/UnitTest/Components/DropdownWidgetTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/EditorFormTest.cs b/test/UnitTest/Components/EditorFormTest.cs index 11beafe53..38e340f47 100644 --- a/test/UnitTest/Components/EditorFormTest.cs +++ b/test/UnitTest/Components/EditorFormTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; using System.ComponentModel.DataAnnotations; diff --git a/test/UnitTest/Components/EmptyTest.cs b/test/UnitTest/Components/EmptyTest.cs index e98887128..bcc750646 100644 --- a/test/UnitTest/Components/EmptyTest.cs +++ b/test/UnitTest/Components/EmptyTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/ErrorHandlerTest.cs b/test/UnitTest/Components/ErrorHandlerTest.cs index bf4075db6..53efee45a 100644 --- a/test/UnitTest/Components/ErrorHandlerTest.cs +++ b/test/UnitTest/Components/ErrorHandlerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; using Microsoft.AspNetCore.Components.Web; diff --git a/test/UnitTest/Components/ErrorLoggerTest.cs b/test/UnitTest/Components/ErrorLoggerTest.cs index b40a74e53..aeaed7e2d 100644 --- a/test/UnitTest/Components/ErrorLoggerTest.cs +++ b/test/UnitTest/Components/ErrorLoggerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; diff --git a/test/UnitTest/Components/ExportPdfButtonTest.cs b/test/UnitTest/Components/ExportPdfButtonTest.cs index 925058ba3..0496503bc 100644 --- a/test/UnitTest/Components/ExportPdfButtonTest.cs +++ b/test/UnitTest/Components/ExportPdfButtonTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text; diff --git a/test/UnitTest/Components/FileIconTest.cs b/test/UnitTest/Components/FileIconTest.cs index ffef5e406..4004124a9 100644 --- a/test/UnitTest/Components/FileIconTest.cs +++ b/test/UnitTest/Components/FileIconTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/FlipClockTest.cs b/test/UnitTest/Components/FlipClockTest.cs index 6f42bbb7f..9af609f14 100644 --- a/test/UnitTest/Components/FlipClockTest.cs +++ b/test/UnitTest/Components/FlipClockTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/FooterTest.cs b/test/UnitTest/Components/FooterTest.cs index d185290da..9c6949245 100644 --- a/test/UnitTest/Components/FooterTest.cs +++ b/test/UnitTest/Components/FooterTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/FullScreenTest.cs b/test/UnitTest/Components/FullScreenTest.cs index 4dba3a877..366470f66 100644 --- a/test/UnitTest/Components/FullScreenTest.cs +++ b/test/UnitTest/Components/FullScreenTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; diff --git a/test/UnitTest/Components/GeolocationTest.cs b/test/UnitTest/Components/GeolocationTest.cs index f40123d9d..f668e71fd 100644 --- a/test/UnitTest/Components/GeolocationTest.cs +++ b/test/UnitTest/Components/GeolocationTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/GoTopTest.cs b/test/UnitTest/Components/GoTopTest.cs index d4d9e19eb..13eebfed0 100644 --- a/test/UnitTest/Components/GoTopTest.cs +++ b/test/UnitTest/Components/GoTopTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Web; diff --git a/test/UnitTest/Components/HandwrittenTest.cs b/test/UnitTest/Components/HandwrittenTest.cs index d4a38cd3f..26d423baa 100644 --- a/test/UnitTest/Components/HandwrittenTest.cs +++ b/test/UnitTest/Components/HandwrittenTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/IFrameTest.cs b/test/UnitTest/Components/IFrameTest.cs index afdbd3924..02504d4c6 100644 --- a/test/UnitTest/Components/IFrameTest.cs +++ b/test/UnitTest/Components/IFrameTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/IconDialogTest.cs b/test/UnitTest/Components/IconDialogTest.cs index 185ca87f9..dfbf83403 100644 --- a/test/UnitTest/Components/IconDialogTest.cs +++ b/test/UnitTest/Components/IconDialogTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/IconTest.cs b/test/UnitTest/Components/IconTest.cs index cad553351..4180bf97c 100644 --- a/test/UnitTest/Components/IconTest.cs +++ b/test/UnitTest/Components/IconTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/ImageTest.cs b/test/UnitTest/Components/ImageTest.cs index a76a0bc60..80405bcb0 100644 --- a/test/UnitTest/Components/ImageTest.cs +++ b/test/UnitTest/Components/ImageTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/InputNumberTest.cs b/test/UnitTest/Components/InputNumberTest.cs index 35494a693..7e164d172 100644 --- a/test/UnitTest/Components/InputNumberTest.cs +++ b/test/UnitTest/Components/InputNumberTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel.DataAnnotations; diff --git a/test/UnitTest/Components/InputTest.cs b/test/UnitTest/Components/InputTest.cs index 517d28627..dfcb86d42 100644 --- a/test/UnitTest/Components/InputTest.cs +++ b/test/UnitTest/Components/InputTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/IntersectionObserverTest.cs b/test/UnitTest/Components/IntersectionObserverTest.cs index e4de8451e..7374f2a80 100644 --- a/test/UnitTest/Components/IntersectionObserverTest.cs +++ b/test/UnitTest/Components/IntersectionObserverTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/IpAddressTest.cs b/test/UnitTest/Components/IpAddressTest.cs index 7c4a7c9c7..55e143cef 100644 --- a/test/UnitTest/Components/IpAddressTest.cs +++ b/test/UnitTest/Components/IpAddressTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/LayoutTest.cs b/test/UnitTest/Components/LayoutTest.cs index bec7553a8..3c23ee786 100644 --- a/test/UnitTest/Components/LayoutTest.cs +++ b/test/UnitTest/Components/LayoutTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Bunit.TestDoubles; using Microsoft.AspNetCore.Components.Authorization; diff --git a/test/UnitTest/Components/LazyLoadTest.cs b/test/UnitTest/Components/LazyLoadTest.cs index 47bc8e0ab..f95166811 100644 --- a/test/UnitTest/Components/LazyLoadTest.cs +++ b/test/UnitTest/Components/LazyLoadTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/LightTest.cs b/test/UnitTest/Components/LightTest.cs index fe0f18a85..f16276d9f 100644 --- a/test/UnitTest/Components/LightTest.cs +++ b/test/UnitTest/Components/LightTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/LinkButtonTest.cs b/test/UnitTest/Components/LinkButtonTest.cs index baafd6bc8..b0e9d77b9 100644 --- a/test/UnitTest/Components/LinkButtonTest.cs +++ b/test/UnitTest/Components/LinkButtonTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/LinkTest.cs b/test/UnitTest/Components/LinkTest.cs index 80f91164b..3f42a2f9f 100644 --- a/test/UnitTest/Components/LinkTest.cs +++ b/test/UnitTest/Components/LinkTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/ListGroupTest.cs b/test/UnitTest/Components/ListGroupTest.cs index 3b3759285..560a6c5df 100644 --- a/test/UnitTest/Components/ListGroupTest.cs +++ b/test/UnitTest/Components/ListGroupTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/ListViewTest.cs b/test/UnitTest/Components/ListViewTest.cs index 4eccf9a9f..3bd7dce8a 100644 --- a/test/UnitTest/Components/ListViewTest.cs +++ b/test/UnitTest/Components/ListViewTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/LogoutLinkTest.cs b/test/UnitTest/Components/LogoutLinkTest.cs index f46d6104a..1c87ef7d1 100644 --- a/test/UnitTest/Components/LogoutLinkTest.cs +++ b/test/UnitTest/Components/LogoutLinkTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/LogoutTest.cs b/test/UnitTest/Components/LogoutTest.cs index 9c76b7188..9e8bf8f63 100644 --- a/test/UnitTest/Components/LogoutTest.cs +++ b/test/UnitTest/Components/LogoutTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/MarqueeTest.cs b/test/UnitTest/Components/MarqueeTest.cs index ec03d556f..c648a9ddc 100644 --- a/test/UnitTest/Components/MarqueeTest.cs +++ b/test/UnitTest/Components/MarqueeTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/MenuTest.cs b/test/UnitTest/Components/MenuTest.cs index 6495c1d0b..f71547c8f 100644 --- a/test/UnitTest/Components/MenuTest.cs +++ b/test/UnitTest/Components/MenuTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Bunit.TestDoubles; using Microsoft.AspNetCore.Components.Routing; diff --git a/test/UnitTest/Components/MessageTest.cs b/test/UnitTest/Components/MessageTest.cs index caa5e4639..4879e4cd5 100644 --- a/test/UnitTest/Components/MessageTest.cs +++ b/test/UnitTest/Components/MessageTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; diff --git a/test/UnitTest/Components/ModalDialogTest.cs b/test/UnitTest/Components/ModalDialogTest.cs index e0540887b..208259b3d 100644 --- a/test/UnitTest/Components/ModalDialogTest.cs +++ b/test/UnitTest/Components/ModalDialogTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Web; diff --git a/test/UnitTest/Components/ModalTest.cs b/test/UnitTest/Components/ModalTest.cs index 2835758d3..327a57c22 100644 --- a/test/UnitTest/Components/ModalTest.cs +++ b/test/UnitTest/Components/ModalTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; diff --git a/test/UnitTest/Components/MultiSelectTest.cs b/test/UnitTest/Components/MultiSelectTest.cs index 1cd2a6be6..3a8e130a3 100644 --- a/test/UnitTest/Components/MultiSelectTest.cs +++ b/test/UnitTest/Components/MultiSelectTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/NavTest.cs b/test/UnitTest/Components/NavTest.cs index 7bf7bcbfe..b14bb7161 100644 --- a/test/UnitTest/Components/NavTest.cs +++ b/test/UnitTest/Components/NavTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Routing; diff --git a/test/UnitTest/Components/NullSwitchTest.cs b/test/UnitTest/Components/NullSwitchTest.cs index 13a92f343..46fd075a6 100644 --- a/test/UnitTest/Components/NullSwitchTest.cs +++ b/test/UnitTest/Components/NullSwitchTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/PaginationTest.cs b/test/UnitTest/Components/PaginationTest.cs index fc17ab92c..6c22b47f6 100644 --- a/test/UnitTest/Components/PaginationTest.cs +++ b/test/UnitTest/Components/PaginationTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/PopConfirmButtonTest.cs b/test/UnitTest/Components/PopConfirmButtonTest.cs index 730a7cd7e..8c5b23768 100644 --- a/test/UnitTest/Components/PopConfirmButtonTest.cs +++ b/test/UnitTest/Components/PopConfirmButtonTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Bunit.Rendering; diff --git a/test/UnitTest/Components/PopoverTest.cs b/test/UnitTest/Components/PopoverTest.cs index 39c3da559..1ddde9aec 100644 --- a/test/UnitTest/Components/PopoverTest.cs +++ b/test/UnitTest/Components/PopoverTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/PrintTest.cs b/test/UnitTest/Components/PrintTest.cs index 4eedbfb21..be184164b 100644 --- a/test/UnitTest/Components/PrintTest.cs +++ b/test/UnitTest/Components/PrintTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/ProgressTest.cs b/test/UnitTest/Components/ProgressTest.cs index 62fb78551..202906be1 100644 --- a/test/UnitTest/Components/ProgressTest.cs +++ b/test/UnitTest/Components/ProgressTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/PulseButtonTest.cs b/test/UnitTest/Components/PulseButtonTest.cs index e0fd23d11..59fee6ad7 100644 --- a/test/UnitTest/Components/PulseButtonTest.cs +++ b/test/UnitTest/Components/PulseButtonTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/QueryBuilderTest.cs b/test/UnitTest/Components/QueryBuilderTest.cs index bde133a48..4486e4936 100644 --- a/test/UnitTest/Components/QueryBuilderTest.cs +++ b/test/UnitTest/Components/QueryBuilderTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/RadioTest.cs b/test/UnitTest/Components/RadioTest.cs index 836da0e2f..3cbc56d27 100644 --- a/test/UnitTest/Components/RadioTest.cs +++ b/test/UnitTest/Components/RadioTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/RateTest.cs b/test/UnitTest/Components/RateTest.cs index d9e933f2e..9f0b8e2c3 100644 --- a/test/UnitTest/Components/RateTest.cs +++ b/test/UnitTest/Components/RateTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/RecognizerTest.cs b/test/UnitTest/Components/RecognizerTest.cs index 53edfcacc..1796223db 100644 --- a/test/UnitTest/Components/RecognizerTest.cs +++ b/test/UnitTest/Components/RecognizerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/ReconnectorTest.cs b/test/UnitTest/Components/ReconnectorTest.cs index 90cfc1abf..d717eb88b 100644 --- a/test/UnitTest/Components/ReconnectorTest.cs +++ b/test/UnitTest/Components/ReconnectorTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; diff --git a/test/UnitTest/Components/RedirectTest.cs b/test/UnitTest/Components/RedirectTest.cs index dcac02cc6..f1dbf5dee 100644 --- a/test/UnitTest/Components/RedirectTest.cs +++ b/test/UnitTest/Components/RedirectTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/RepeaterTest.cs b/test/UnitTest/Components/RepeaterTest.cs index 69e94d12b..ff29bbebc 100644 --- a/test/UnitTest/Components/RepeaterTest.cs +++ b/test/UnitTest/Components/RepeaterTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/ResponsiveTest.cs b/test/UnitTest/Components/ResponsiveTest.cs index 13b8d8165..781c50902 100644 --- a/test/UnitTest/Components/ResponsiveTest.cs +++ b/test/UnitTest/Components/ResponsiveTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/RibbonTabAnchorTest.cs b/test/UnitTest/Components/RibbonTabAnchorTest.cs index c7e2593f9..833ae0119 100644 --- a/test/UnitTest/Components/RibbonTabAnchorTest.cs +++ b/test/UnitTest/Components/RibbonTabAnchorTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Bunit.TestDoubles; diff --git a/test/UnitTest/Components/RibbonTabTest.cs b/test/UnitTest/Components/RibbonTabTest.cs index 2d829990a..be7a5603a 100644 --- a/test/UnitTest/Components/RibbonTabTest.cs +++ b/test/UnitTest/Components/RibbonTabTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; diff --git a/test/UnitTest/Components/RowTest.cs b/test/UnitTest/Components/RowTest.cs index 0b84da5e5..0a94eabe2 100644 --- a/test/UnitTest/Components/RowTest.cs +++ b/test/UnitTest/Components/RowTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/ScriptTest.cs b/test/UnitTest/Components/ScriptTest.cs index 5cd143d18..8182451e4 100644 --- a/test/UnitTest/Components/ScriptTest.cs +++ b/test/UnitTest/Components/ScriptTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/ScrollTest.cs b/test/UnitTest/Components/ScrollTest.cs index 920744e50..9a25ad512 100644 --- a/test/UnitTest/Components/ScrollTest.cs +++ b/test/UnitTest/Components/ScrollTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/SearchTest.cs b/test/UnitTest/Components/SearchTest.cs index 28023c72d..282d3227a 100644 --- a/test/UnitTest/Components/SearchTest.cs +++ b/test/UnitTest/Components/SearchTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/SegmentedTest.cs b/test/UnitTest/Components/SegmentedTest.cs index ad94f5b3a..d4c92a145 100644 --- a/test/UnitTest/Components/SegmentedTest.cs +++ b/test/UnitTest/Components/SegmentedTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using AngleSharp.Dom; diff --git a/test/UnitTest/Components/SelectObjectTest.cs b/test/UnitTest/Components/SelectObjectTest.cs index 409e99ae3..b90bb0296 100644 --- a/test/UnitTest/Components/SelectObjectTest.cs +++ b/test/UnitTest/Components/SelectObjectTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/test/UnitTest/Components/SelectTableTest.cs b/test/UnitTest/Components/SelectTableTest.cs index cfcaaa365..afce16b51 100644 --- a/test/UnitTest/Components/SelectTableTest.cs +++ b/test/UnitTest/Components/SelectTableTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; using Microsoft.Extensions.Localization; diff --git a/test/UnitTest/Components/SelectTest.cs b/test/UnitTest/Components/SelectTest.cs index e6d3fcb77..33e5bf292 100644 --- a/test/UnitTest/Components/SelectTest.cs +++ b/test/UnitTest/Components/SelectTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using AngleSharp.Dom; using AngleSharp.Html.Dom; diff --git a/test/UnitTest/Components/SelectTreeTest.cs b/test/UnitTest/Components/SelectTreeTest.cs index 5a0c58c96..366d92a64 100644 --- a/test/UnitTest/Components/SelectTreeTest.cs +++ b/test/UnitTest/Components/SelectTreeTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/SkeletonTest.cs b/test/UnitTest/Components/SkeletonTest.cs index 5536b3e82..8ca45e737 100644 --- a/test/UnitTest/Components/SkeletonTest.cs +++ b/test/UnitTest/Components/SkeletonTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/SlideButtonTest.cs b/test/UnitTest/Components/SlideButtonTest.cs index 333134847..9bf7337fd 100644 --- a/test/UnitTest/Components/SlideButtonTest.cs +++ b/test/UnitTest/Components/SlideButtonTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/SliderTest.cs b/test/UnitTest/Components/SliderTest.cs index 19f1829e5..bdb020d74 100644 --- a/test/UnitTest/Components/SliderTest.cs +++ b/test/UnitTest/Components/SliderTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel.DataAnnotations; diff --git a/test/UnitTest/Components/SpinnerTest.cs b/test/UnitTest/Components/SpinnerTest.cs index bee396dd9..dee6ed08c 100644 --- a/test/UnitTest/Components/SpinnerTest.cs +++ b/test/UnitTest/Components/SpinnerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/SplitTest.cs b/test/UnitTest/Components/SplitTest.cs index 9eff4ddca..bde4e35c1 100644 --- a/test/UnitTest/Components/SplitTest.cs +++ b/test/UnitTest/Components/SplitTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/StackTest.cs b/test/UnitTest/Components/StackTest.cs index d17c93e2f..dc9a8acfd 100644 --- a/test/UnitTest/Components/StackTest.cs +++ b/test/UnitTest/Components/StackTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/StepTest.cs b/test/UnitTest/Components/StepTest.cs index 28c20d1d5..027f6e750 100644 --- a/test/UnitTest/Components/StepTest.cs +++ b/test/UnitTest/Components/StepTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/SvgIconTest.cs b/test/UnitTest/Components/SvgIconTest.cs index 58dc10ee1..0e050ca82 100644 --- a/test/UnitTest/Components/SvgIconTest.cs +++ b/test/UnitTest/Components/SvgIconTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/SwalTest.cs b/test/UnitTest/Components/SwalTest.cs index 0eafb1a7f..1f742046b 100644 --- a/test/UnitTest/Components/SwalTest.cs +++ b/test/UnitTest/Components/SwalTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/SwitchButtonTest.cs b/test/UnitTest/Components/SwitchButtonTest.cs index ef086e5ec..3ec3d37df 100644 --- a/test/UnitTest/Components/SwitchButtonTest.cs +++ b/test/UnitTest/Components/SwitchButtonTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Web; diff --git a/test/UnitTest/Components/SwitchTest.cs b/test/UnitTest/Components/SwitchTest.cs index b9f4bdb74..5b17d8beb 100644 --- a/test/UnitTest/Components/SwitchTest.cs +++ b/test/UnitTest/Components/SwitchTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/SynthesizerTest.cs b/test/UnitTest/Components/SynthesizerTest.cs index 99fd8d0f0..1094c7381 100644 --- a/test/UnitTest/Components/SynthesizerTest.cs +++ b/test/UnitTest/Components/SynthesizerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TabLinkTest.cs b/test/UnitTest/Components/TabLinkTest.cs index fac72a70f..56b574fd8 100644 --- a/test/UnitTest/Components/TabLinkTest.cs +++ b/test/UnitTest/Components/TabLinkTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TabTest.cs b/test/UnitTest/Components/TabTest.cs index c8633182e..4330fc131 100644 --- a/test/UnitTest/Components/TabTest.cs +++ b/test/UnitTest/Components/TabTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using AngleSharp.Dom; using Bunit.TestDoubles; diff --git a/test/UnitTest/Components/TableBoolFilterTest.cs b/test/UnitTest/Components/TableBoolFilterTest.cs index 0ec0f7e43..f4b10ab80 100644 --- a/test/UnitTest/Components/TableBoolFilterTest.cs +++ b/test/UnitTest/Components/TableBoolFilterTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TableColumnTest.cs b/test/UnitTest/Components/TableColumnTest.cs index 2e42ce621..3c1ad2a7c 100644 --- a/test/UnitTest/Components/TableColumnTest.cs +++ b/test/UnitTest/Components/TableColumnTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TableConfirmTest.cs b/test/UnitTest/Components/TableConfirmTest.cs index 5cb0a7358..2e457ae1e 100644 --- a/test/UnitTest/Components/TableConfirmTest.cs +++ b/test/UnitTest/Components/TableConfirmTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TableDateTimeFilterTest.cs b/test/UnitTest/Components/TableDateTimeFilterTest.cs index b348f91b6..e799bf465 100644 --- a/test/UnitTest/Components/TableDateTimeFilterTest.cs +++ b/test/UnitTest/Components/TableDateTimeFilterTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TableDialogTest.cs b/test/UnitTest/Components/TableDialogTest.cs index 6efecc66c..788a62666 100644 --- a/test/UnitTest/Components/TableDialogTest.cs +++ b/test/UnitTest/Components/TableDialogTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using AngleSharp.Dom; using Microsoft.AspNetCore.Components.Web; diff --git a/test/UnitTest/Components/TableDrawerTest.cs b/test/UnitTest/Components/TableDrawerTest.cs index 64c8ab718..75a63c523 100644 --- a/test/UnitTest/Components/TableDrawerTest.cs +++ b/test/UnitTest/Components/TableDrawerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using AngleSharp.Dom; using Microsoft.Extensions.Localization; diff --git a/test/UnitTest/Components/TableEnumFilterTest.cs b/test/UnitTest/Components/TableEnumFilterTest.cs index e9ec422e1..b79613614 100644 --- a/test/UnitTest/Components/TableEnumFilterTest.cs +++ b/test/UnitTest/Components/TableEnumFilterTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TableExportTest.cs b/test/UnitTest/Components/TableExportTest.cs index 544b3b988..7a4a1240b 100644 --- a/test/UnitTest/Components/TableExportTest.cs +++ b/test/UnitTest/Components/TableExportTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TableFilterTest.cs b/test/UnitTest/Components/TableFilterTest.cs index f5d82fa8a..ddad78b4f 100644 --- a/test/UnitTest/Components/TableFilterTest.cs +++ b/test/UnitTest/Components/TableFilterTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/test/UnitTest/Components/TableFooterCellTest.cs b/test/UnitTest/Components/TableFooterCellTest.cs index c64842910..889ba1a0c 100644 --- a/test/UnitTest/Components/TableFooterCellTest.cs +++ b/test/UnitTest/Components/TableFooterCellTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TableLookupFilterTest.cs b/test/UnitTest/Components/TableLookupFilterTest.cs index 79aa33a10..793ec8b56 100644 --- a/test/UnitTest/Components/TableLookupFilterTest.cs +++ b/test/UnitTest/Components/TableLookupFilterTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TableNumberFilterTest.cs b/test/UnitTest/Components/TableNumberFilterTest.cs index d9af56718..696ebdff7 100644 --- a/test/UnitTest/Components/TableNumberFilterTest.cs +++ b/test/UnitTest/Components/TableNumberFilterTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TableSortDialogTest.cs b/test/UnitTest/Components/TableSortDialogTest.cs index 64c17e37d..c9928b04a 100644 --- a/test/UnitTest/Components/TableSortDialogTest.cs +++ b/test/UnitTest/Components/TableSortDialogTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using AngleSharp.Dom; using Microsoft.Extensions.Localization; diff --git a/test/UnitTest/Components/TableSortItemTest.cs b/test/UnitTest/Components/TableSortItemTest.cs index 4da9e334d..9024b7a86 100644 --- a/test/UnitTest/Components/TableSortItemTest.cs +++ b/test/UnitTest/Components/TableSortItemTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TableStringFilterTest.cs b/test/UnitTest/Components/TableStringFilterTest.cs index 2375acf10..9ebfeb974 100644 --- a/test/UnitTest/Components/TableStringFilterTest.cs +++ b/test/UnitTest/Components/TableStringFilterTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TableTemplateColumnTest.cs b/test/UnitTest/Components/TableTemplateColumnTest.cs index 70e13624b..fd6e3ff4b 100644 --- a/test/UnitTest/Components/TableTemplateColumnTest.cs +++ b/test/UnitTest/Components/TableTemplateColumnTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/test/UnitTest/Components/TableTest.cs b/test/UnitTest/Components/TableTest.cs index 682745b4e..30bc4319e 100644 --- a/test/UnitTest/Components/TableTest.cs +++ b/test/UnitTest/Components/TableTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; using Microsoft.AspNetCore.Components.Web; diff --git a/test/UnitTest/Components/TableTestEFCore.cs b/test/UnitTest/Components/TableTestEFCore.cs index 09e0ae0ba..bd5485615 100644 --- a/test/UnitTest/Components/TableTestEFCore.cs +++ b/test/UnitTest/Components/TableTestEFCore.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.EntityFrameworkCore; diff --git a/test/UnitTest/Components/TableTreeNodeTest.cs b/test/UnitTest/Components/TableTreeNodeTest.cs index 47adf2f85..c33be276f 100644 --- a/test/UnitTest/Components/TableTreeNodeTest.cs +++ b/test/UnitTest/Components/TableTreeNodeTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TagTest.cs b/test/UnitTest/Components/TagTest.cs index 094e6d360..306c1240a 100644 --- a/test/UnitTest/Components/TagTest.cs +++ b/test/UnitTest/Components/TagTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TextareaTest.cs b/test/UnitTest/Components/TextareaTest.cs index 8f8a94edb..a4e552062 100644 --- a/test/UnitTest/Components/TextareaTest.cs +++ b/test/UnitTest/Components/TextareaTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/ThemeProviderTest.cs b/test/UnitTest/Components/ThemeProviderTest.cs index bf9816d58..eb4be4299 100644 --- a/test/UnitTest/Components/ThemeProviderTest.cs +++ b/test/UnitTest/Components/ThemeProviderTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TimePickerPanelTest.cs b/test/UnitTest/Components/TimePickerPanelTest.cs index 328d71faa..e4908cb9b 100644 --- a/test/UnitTest/Components/TimePickerPanelTest.cs +++ b/test/UnitTest/Components/TimePickerPanelTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TimePickerSettingTest.cs b/test/UnitTest/Components/TimePickerSettingTest.cs index cd8ee45dc..0be6bbb68 100644 --- a/test/UnitTest/Components/TimePickerSettingTest.cs +++ b/test/UnitTest/Components/TimePickerSettingTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TimePickerTest.cs b/test/UnitTest/Components/TimePickerTest.cs index 02e523745..1b02032cc 100644 --- a/test/UnitTest/Components/TimePickerTest.cs +++ b/test/UnitTest/Components/TimePickerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TimelineTest.cs b/test/UnitTest/Components/TimelineTest.cs index 6597efc08..804a4b6ce 100644 --- a/test/UnitTest/Components/TimelineTest.cs +++ b/test/UnitTest/Components/TimelineTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TimerTest.cs b/test/UnitTest/Components/TimerTest.cs index 49a2e628c..1365f8d56 100644 --- a/test/UnitTest/Components/TimerTest.cs +++ b/test/UnitTest/Components/TimerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Timer = BootstrapBlazor.Components.Timer; diff --git a/test/UnitTest/Components/TimezoneTest.cs b/test/UnitTest/Components/TimezoneTest.cs index f9b1ba4c9..bd2ccd54f 100644 --- a/test/UnitTest/Components/TimezoneTest.cs +++ b/test/UnitTest/Components/TimezoneTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TitleTest.cs b/test/UnitTest/Components/TitleTest.cs index 1a4c90f18..5fc92666e 100644 --- a/test/UnitTest/Components/TitleTest.cs +++ b/test/UnitTest/Components/TitleTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/ToastTest.cs b/test/UnitTest/Components/ToastTest.cs index 9ca3119a9..c25ab9219 100644 --- a/test/UnitTest/Components/ToastTest.cs +++ b/test/UnitTest/Components/ToastTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Options; diff --git a/test/UnitTest/Components/ToggleTest.cs b/test/UnitTest/Components/ToggleTest.cs index 9f64a794b..e2fa09c10 100644 --- a/test/UnitTest/Components/ToggleTest.cs +++ b/test/UnitTest/Components/ToggleTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TooltipTest.cs b/test/UnitTest/Components/TooltipTest.cs index 516f488c7..d62219e83 100644 --- a/test/UnitTest/Components/TooltipTest.cs +++ b/test/UnitTest/Components/TooltipTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TransferPanelTest.cs b/test/UnitTest/Components/TransferPanelTest.cs index 0a9e0ce08..b1dc65e69 100644 --- a/test/UnitTest/Components/TransferPanelTest.cs +++ b/test/UnitTest/Components/TransferPanelTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TransferTest.cs b/test/UnitTest/Components/TransferTest.cs index d8884caab..871ae58c5 100644 --- a/test/UnitTest/Components/TransferTest.cs +++ b/test/UnitTest/Components/TransferTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/TransitionTest.cs b/test/UnitTest/Components/TransitionTest.cs index cac728dd1..88938b1f7 100644 --- a/test/UnitTest/Components/TransitionTest.cs +++ b/test/UnitTest/Components/TransitionTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using BootstrapBlazor; diff --git a/test/UnitTest/Components/TreeViewTest.cs b/test/UnitTest/Components/TreeViewTest.cs index 6583d421f..fa82416e7 100644 --- a/test/UnitTest/Components/TreeViewTest.cs +++ b/test/UnitTest/Components/TreeViewTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Components/UploadTest.cs b/test/UnitTest/Components/UploadTest.cs index 96b0060d4..a81ccc371 100644 --- a/test/UnitTest/Components/UploadTest.cs +++ b/test/UnitTest/Components/UploadTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; using System.ComponentModel.DataAnnotations; diff --git a/test/UnitTest/Components/ValidateFormTest.cs b/test/UnitTest/Components/ValidateFormTest.cs index 045d0ec0e..e74f5d196 100644 --- a/test/UnitTest/Components/ValidateFormTest.cs +++ b/test/UnitTest/Components/ValidateFormTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; using Microsoft.Extensions.Options; diff --git a/test/UnitTest/Components/ValidateTest.cs b/test/UnitTest/Components/ValidateTest.cs index 5b83c626e..e97fb56b9 100644 --- a/test/UnitTest/Components/ValidateTest.cs +++ b/test/UnitTest/Components/ValidateTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Forms; using System.ComponentModel.DataAnnotations; diff --git a/test/UnitTest/Components/WaterfallTest.cs b/test/UnitTest/Components/WaterfallTest.cs index 024c1bc4b..8161233cf 100644 --- a/test/UnitTest/Components/WaterfallTest.cs +++ b/test/UnitTest/Components/WaterfallTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Components; diff --git a/test/UnitTest/Converters/JsonDescriptionEnumConverterTest.cs b/test/UnitTest/Converters/JsonDescriptionEnumConverterTest.cs index 9671f6806..167ec53ff 100644 --- a/test/UnitTest/Converters/JsonDescriptionEnumConverterTest.cs +++ b/test/UnitTest/Converters/JsonDescriptionEnumConverterTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using BootstrapBlazor.Core.Converter; using System.ComponentModel; diff --git a/test/UnitTest/Core/AuthorizationViewTestBase.cs b/test/UnitTest/Core/AuthorizationViewTestBase.cs index 15c869232..188b245de 100644 --- a/test/UnitTest/Core/AuthorizationViewTestBase.cs +++ b/test/UnitTest/Core/AuthorizationViewTestBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Bunit.TestDoubles; diff --git a/test/UnitTest/Core/BootstrapBlazorTestBase.cs b/test/UnitTest/Core/BootstrapBlazorTestBase.cs index 764de8435..3aac56644 100644 --- a/test/UnitTest/Core/BootstrapBlazorTestBase.cs +++ b/test/UnitTest/Core/BootstrapBlazorTestBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Configuration; diff --git a/test/UnitTest/Core/SpeechTestBase.cs b/test/UnitTest/Core/SpeechTestBase.cs index 053a34b0d..cf204cee1 100644 --- a/test/UnitTest/Core/SpeechTestBase.cs +++ b/test/UnitTest/Core/SpeechTestBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.DependencyInjection.Extensions; diff --git a/test/UnitTest/Core/TableDialogTestBase.cs b/test/UnitTest/Core/TableDialogTestBase.cs index 6a2fe7b95..64a01c400 100644 --- a/test/UnitTest/Core/TableDialogTestBase.cs +++ b/test/UnitTest/Core/TableDialogTestBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; diff --git a/test/UnitTest/Core/TestBase.cs b/test/UnitTest/Core/TestBase.cs index e36cc70f2..1d74c1340 100644 --- a/test/UnitTest/Core/TestBase.cs +++ b/test/UnitTest/Core/TestBase.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Core; diff --git a/test/UnitTest/Dynamic/DataTableDynamicContextTest.cs b/test/UnitTest/Dynamic/DataTableDynamicContextTest.cs index cf707bb92..4b4ce271a 100644 --- a/test/UnitTest/Dynamic/DataTableDynamicContextTest.cs +++ b/test/UnitTest/Dynamic/DataTableDynamicContextTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; using System.ComponentModel.DataAnnotations; diff --git a/test/UnitTest/Dynamic/DynamicColumnsObjectTest.cs b/test/UnitTest/Dynamic/DynamicColumnsObjectTest.cs index 2ae7815a9..4e4833944 100644 --- a/test/UnitTest/Dynamic/DynamicColumnsObjectTest.cs +++ b/test/UnitTest/Dynamic/DynamicColumnsObjectTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Dynamic; diff --git a/test/UnitTest/Emit/TypeTest.cs b/test/UnitTest/Emit/TypeTest.cs index cb6132969..bf706a7e4 100644 --- a/test/UnitTest/Emit/TypeTest.cs +++ b/test/UnitTest/Emit/TypeTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Emit; diff --git a/test/UnitTest/Extensions/AssemblyExtensionsTest.cs b/test/UnitTest/Extensions/AssemblyExtensionsTest.cs index d627a5dfa..0dcc43b17 100644 --- a/test/UnitTest/Extensions/AssemblyExtensionsTest.cs +++ b/test/UnitTest/Extensions/AssemblyExtensionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Reflection; using System.Runtime.Loader; diff --git a/test/UnitTest/Extensions/ConfigurationExtensionsTest.cs b/test/UnitTest/Extensions/ConfigurationExtensionsTest.cs index 4ee2f1776..2a7ec9668 100644 --- a/test/UnitTest/Extensions/ConfigurationExtensionsTest.cs +++ b/test/UnitTest/Extensions/ConfigurationExtensionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Configuration; using System.Reflection; diff --git a/test/UnitTest/Extensions/DateTimeExtensionsTest.cs b/test/UnitTest/Extensions/DateTimeExtensionsTest.cs index 085844a26..0396e3f9e 100644 --- a/test/UnitTest/Extensions/DateTimeExtensionsTest.cs +++ b/test/UnitTest/Extensions/DateTimeExtensionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Extensions; diff --git a/test/UnitTest/Extensions/DirectoryInfoExtensionsTest.cs b/test/UnitTest/Extensions/DirectoryInfoExtensionsTest.cs index 8093942d1..c3a072a9b 100644 --- a/test/UnitTest/Extensions/DirectoryInfoExtensionsTest.cs +++ b/test/UnitTest/Extensions/DirectoryInfoExtensionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Extensions; diff --git a/test/UnitTest/Extensions/EnumExtensionsTest.cs b/test/UnitTest/Extensions/EnumExtensionsTest.cs index 713650dfb..723361dbc 100644 --- a/test/UnitTest/Extensions/EnumExtensionsTest.cs +++ b/test/UnitTest/Extensions/EnumExtensionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Extensions; diff --git a/test/UnitTest/Extensions/FooExtensions.cs b/test/UnitTest/Extensions/FooExtensions.cs index 019a67e8e..f7a1d7e62 100644 --- a/test/UnitTest/Extensions/FooExtensions.cs +++ b/test/UnitTest/Extensions/FooExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Extensions; diff --git a/test/UnitTest/Extensions/IQueryableExtensionsTest.cs b/test/UnitTest/Extensions/IQueryableExtensionsTest.cs index c4a1d1b67..b56c5254c 100644 --- a/test/UnitTest/Extensions/IQueryableExtensionsTest.cs +++ b/test/UnitTest/Extensions/IQueryableExtensionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Extensions; diff --git a/test/UnitTest/Extensions/IServiceCollectionExtensions.cs b/test/UnitTest/Extensions/IServiceCollectionExtensions.cs index b2e645ad9..21639d533 100644 --- a/test/UnitTest/Extensions/IServiceCollectionExtensions.cs +++ b/test/UnitTest/Extensions/IServiceCollectionExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Configuration; diff --git a/test/UnitTest/Extensions/ITableColumnExtensionsTest.cs b/test/UnitTest/Extensions/ITableColumnExtensionsTest.cs index 668250093..dc59dde79 100644 --- a/test/UnitTest/Extensions/ITableColumnExtensionsTest.cs +++ b/test/UnitTest/Extensions/ITableColumnExtensionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Extensions; diff --git a/test/UnitTest/Extensions/JSModuleExtensionsTest.cs b/test/UnitTest/Extensions/JSModuleExtensionsTest.cs index 4a23131bc..c6abb8931 100644 --- a/test/UnitTest/Extensions/JSModuleExtensionsTest.cs +++ b/test/UnitTest/Extensions/JSModuleExtensionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.JSInterop; diff --git a/test/UnitTest/Extensions/JSRuntimeExtensionsTest.cs b/test/UnitTest/Extensions/JSRuntimeExtensionsTest.cs index 59c7a24e0..87ab9b544 100644 --- a/test/UnitTest/Extensions/JSRuntimeExtensionsTest.cs +++ b/test/UnitTest/Extensions/JSRuntimeExtensionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Extensions; diff --git a/test/UnitTest/Extensions/LambadaExtensionsTest.cs b/test/UnitTest/Extensions/LambadaExtensionsTest.cs index 725911582..76415a824 100644 --- a/test/UnitTest/Extensions/LambadaExtensionsTest.cs +++ b/test/UnitTest/Extensions/LambadaExtensionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel.DataAnnotations; using System.Dynamic; diff --git a/test/UnitTest/Extensions/MarkupExtensions.cs b/test/UnitTest/Extensions/MarkupExtensions.cs index 78442ac18..531e2a3a6 100644 --- a/test/UnitTest/Extensions/MarkupExtensions.cs +++ b/test/UnitTest/Extensions/MarkupExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Extensions; diff --git a/test/UnitTest/Extensions/MenuItemExtensionsTest.cs b/test/UnitTest/Extensions/MenuItemExtensionsTest.cs index 023724789..ea70c5cb8 100644 --- a/test/UnitTest/Extensions/MenuItemExtensionsTest.cs +++ b/test/UnitTest/Extensions/MenuItemExtensionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Extensions; diff --git a/test/UnitTest/Extensions/NavigationManagerExtensionsTest.cs b/test/UnitTest/Extensions/NavigationManagerExtensionsTest.cs index f6580907e..ce608e9a7 100644 --- a/test/UnitTest/Extensions/NavigationManagerExtensionsTest.cs +++ b/test/UnitTest/Extensions/NavigationManagerExtensionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Bunit.TestDoubles; diff --git a/test/UnitTest/Extensions/ObjectExtensionsTest.cs b/test/UnitTest/Extensions/ObjectExtensionsTest.cs index f0674fb47..dba024c88 100644 --- a/test/UnitTest/Extensions/ObjectExtensionsTest.cs +++ b/test/UnitTest/Extensions/ObjectExtensionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel; using System.Globalization; diff --git a/test/UnitTest/Extensions/QueryPageOptionsExtensionsTest.cs b/test/UnitTest/Extensions/QueryPageOptionsExtensionsTest.cs index 1e6e67a49..bfd24446f 100644 --- a/test/UnitTest/Extensions/QueryPageOptionsExtensionsTest.cs +++ b/test/UnitTest/Extensions/QueryPageOptionsExtensionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Extensions; diff --git a/test/UnitTest/Extensions/StringExtensions.cs b/test/UnitTest/Extensions/StringExtensions.cs index e42c8c0a4..661f2fdef 100644 --- a/test/UnitTest/Extensions/StringExtensions.cs +++ b/test/UnitTest/Extensions/StringExtensions.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Extensions; diff --git a/test/UnitTest/Extensions/StringExtensionsTest.cs b/test/UnitTest/Extensions/StringExtensionsTest.cs index 0c08d6616..b12a69e55 100644 --- a/test/UnitTest/Extensions/StringExtensionsTest.cs +++ b/test/UnitTest/Extensions/StringExtensionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Diagnostics; diff --git a/test/UnitTest/Extensions/TreeItemExtensionsTest.cs b/test/UnitTest/Extensions/TreeItemExtensionsTest.cs index ffb20f11f..4847e61b4 100644 --- a/test/UnitTest/Extensions/TreeItemExtensionsTest.cs +++ b/test/UnitTest/Extensions/TreeItemExtensionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Extensions; diff --git a/test/UnitTest/Localization/JsonStringLocalizerTest.cs b/test/UnitTest/Localization/JsonStringLocalizerTest.cs index 7107cc756..35096fd47 100644 --- a/test/UnitTest/Localization/JsonStringLocalizerTest.cs +++ b/test/UnitTest/Localization/JsonStringLocalizerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; using System.ComponentModel.DataAnnotations; diff --git a/test/UnitTest/Misc/DisplayNameOrder.cs b/test/UnitTest/Misc/DisplayNameOrder.cs index 6b9e861d5..47694898b 100644 --- a/test/UnitTest/Misc/DisplayNameOrder.cs +++ b/test/UnitTest/Misc/DisplayNameOrder.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone [assembly: CollectionBehavior(DisableTestParallelization = true)] [assembly: ExcludeFromCodeCoverage] diff --git a/test/UnitTest/Misc/DynamicObjectHelper.cs b/test/UnitTest/Misc/DynamicObjectHelper.cs index 5cafac4df..b48e70e88 100644 --- a/test/UnitTest/Misc/DynamicObjectHelper.cs +++ b/test/UnitTest/Misc/DynamicObjectHelper.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest; diff --git a/test/UnitTest/Misc/ModelEqualityComparerTest.cs b/test/UnitTest/Misc/ModelEqualityComparerTest.cs index 6ed68ebbe..4cb97dfdf 100644 --- a/test/UnitTest/Misc/ModelEqualityComparerTest.cs +++ b/test/UnitTest/Misc/ModelEqualityComparerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Misc; diff --git a/test/UnitTest/Misc/NodeItemTest.cs b/test/UnitTest/Misc/NodeItemTest.cs index 0c78838b5..1e3e24fc3 100644 --- a/test/UnitTest/Misc/NodeItemTest.cs +++ b/test/UnitTest/Misc/NodeItemTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Misc; diff --git a/test/UnitTest/Misc/NullString.cs b/test/UnitTest/Misc/NullString.cs index e78647570..89302fd3a 100644 --- a/test/UnitTest/Misc/NullString.cs +++ b/test/UnitTest/Misc/NullString.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Misc; diff --git a/test/UnitTest/Misc/TreeNodeCacheTest.cs b/test/UnitTest/Misc/TreeNodeCacheTest.cs index 3d94991eb..fb89f00f5 100644 --- a/test/UnitTest/Misc/TreeNodeCacheTest.cs +++ b/test/UnitTest/Misc/TreeNodeCacheTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Misc; diff --git a/test/UnitTest/Mock/MockJSStreamReference.cs b/test/UnitTest/Mock/MockJSStreamReference.cs index fe0a16816..6b3296e20 100644 --- a/test/UnitTest/Mock/MockJSStreamReference.cs +++ b/test/UnitTest/Mock/MockJSStreamReference.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.JSInterop; using System.Text; diff --git a/test/UnitTest/Options/BootstrapBlazorOptionsTest.cs b/test/UnitTest/Options/BootstrapBlazorOptionsTest.cs index 3215d7a36..04a3e5d41 100644 --- a/test/UnitTest/Options/BootstrapBlazorOptionsTest.cs +++ b/test/UnitTest/Options/BootstrapBlazorOptionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Options; diff --git a/test/UnitTest/Options/ScrollIntoViewOptionsTest.cs b/test/UnitTest/Options/ScrollIntoViewOptionsTest.cs index edbe84c83..f3277c60c 100644 --- a/test/UnitTest/Options/ScrollIntoViewOptionsTest.cs +++ b/test/UnitTest/Options/ScrollIntoViewOptionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Text.Json; diff --git a/test/UnitTest/Pages/Binder.cs b/test/UnitTest/Pages/Binder.cs index 79c11c6fa..c35096de7 100644 --- a/test/UnitTest/Pages/Binder.cs +++ b/test/UnitTest/Pages/Binder.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; diff --git a/test/UnitTest/Pages/Cat.cs b/test/UnitTest/Pages/Cat.cs index 056c8fbf1..9c92ce795 100644 --- a/test/UnitTest/Pages/Cat.cs +++ b/test/UnitTest/Pages/Cat.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; diff --git a/test/UnitTest/Pages/Dog.cs b/test/UnitTest/Pages/Dog.cs index b292ee6bc..9894420ac 100644 --- a/test/UnitTest/Pages/Dog.cs +++ b/test/UnitTest/Pages/Dog.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Components.Rendering; diff --git a/test/UnitTest/Pages/Index.cs b/test/UnitTest/Pages/Index.cs index 5df3f023c..0c3751b55 100644 --- a/test/UnitTest/Pages/Index.cs +++ b/test/UnitTest/Pages/Index.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; diff --git a/test/UnitTest/Performance/AlgorithmTest.cs b/test/UnitTest/Performance/AlgorithmTest.cs index 0999dda6a..559cfd065 100644 --- a/test/UnitTest/Performance/AlgorithmTest.cs +++ b/test/UnitTest/Performance/AlgorithmTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Security.Cryptography; using System.Text; diff --git a/test/UnitTest/Performance/CacheTest.cs b/test/UnitTest/Performance/CacheTest.cs index b93a81c5d..891595885 100644 --- a/test/UnitTest/Performance/CacheTest.cs +++ b/test/UnitTest/Performance/CacheTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; using System.Collections.Concurrent; diff --git a/test/UnitTest/Performance/RecordTest.cs b/test/UnitTest/Performance/RecordTest.cs index 3755dbf27..609b091aa 100644 --- a/test/UnitTest/Performance/RecordTest.cs +++ b/test/UnitTest/Performance/RecordTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Performance; diff --git a/test/UnitTest/Performance/ReflectionTest.cs b/test/UnitTest/Performance/ReflectionTest.cs index 1d5395430..c6fbe86dd 100644 --- a/test/UnitTest/Performance/ReflectionTest.cs +++ b/test/UnitTest/Performance/ReflectionTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Diagnostics; diff --git a/test/UnitTest/Performance/StringExtensionsTest.cs b/test/UnitTest/Performance/StringExtensionsTest.cs index 35731ce26..c0fc297c1 100644 --- a/test/UnitTest/Performance/StringExtensionsTest.cs +++ b/test/UnitTest/Performance/StringExtensionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Diagnostics; using System.Text; diff --git a/test/UnitTest/Performance/TaskTest.cs b/test/UnitTest/Performance/TaskTest.cs index 35c845683..e8d567966 100644 --- a/test/UnitTest/Performance/TaskTest.cs +++ b/test/UnitTest/Performance/TaskTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Performance; diff --git a/test/UnitTest/Services/BluetoothServiceTest.cs b/test/UnitTest/Services/BluetoothServiceTest.cs index cdf811988..4b615cd86 100644 --- a/test/UnitTest/Services/BluetoothServiceTest.cs +++ b/test/UnitTest/Services/BluetoothServiceTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/BootstrapServiceBaseTest.cs b/test/UnitTest/Services/BootstrapServiceBaseTest.cs index ac9d43afa..ae6b5b4bf 100644 --- a/test/UnitTest/Services/BootstrapServiceBaseTest.cs +++ b/test/UnitTest/Services/BootstrapServiceBaseTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/BrowserFingerServiceTest.cs b/test/UnitTest/Services/BrowserFingerServiceTest.cs index 808cb6508..40cec7472 100644 --- a/test/UnitTest/Services/BrowserFingerServiceTest.cs +++ b/test/UnitTest/Services/BrowserFingerServiceTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/CacheManagerTest.cs b/test/UnitTest/Services/CacheManagerTest.cs index c07b1a1f6..ef4a9172c 100644 --- a/test/UnitTest/Services/CacheManagerTest.cs +++ b/test/UnitTest/Services/CacheManagerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/ClipboardTest.cs b/test/UnitTest/Services/ClipboardTest.cs index a179af1a8..3b565d5b2 100644 --- a/test/UnitTest/Services/ClipboardTest.cs +++ b/test/UnitTest/Services/ClipboardTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/ConfigureIconMapperOptionsTest.cs b/test/UnitTest/Services/ConfigureIconMapperOptionsTest.cs index 95a568360..a82725b6c 100644 --- a/test/UnitTest/Services/ConfigureIconMapperOptionsTest.cs +++ b/test/UnitTest/Services/ConfigureIconMapperOptionsTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Options; diff --git a/test/UnitTest/Services/ConnectionHubTest.cs b/test/UnitTest/Services/ConnectionHubTest.cs index 137e4fd85..243d2aec2 100644 --- a/test/UnitTest/Services/ConnectionHubTest.cs +++ b/test/UnitTest/Services/ConnectionHubTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Options; using Microsoft.JSInterop; diff --git a/test/UnitTest/Services/DataServiceTest.cs b/test/UnitTest/Services/DataServiceTest.cs index bd5b6fa6b..4f18967f0 100644 --- a/test/UnitTest/Services/DataServiceTest.cs +++ b/test/UnitTest/Services/DataServiceTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/DispatchServiceTest.cs b/test/UnitTest/Services/DispatchServiceTest.cs index bcb557548..d3b9b9fe4 100644 --- a/test/UnitTest/Services/DispatchServiceTest.cs +++ b/test/UnitTest/Services/DispatchServiceTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/DrawerServiceTest.cs b/test/UnitTest/Services/DrawerServiceTest.cs index db8aaafe4..0391d0c0b 100644 --- a/test/UnitTest/Services/DrawerServiceTest.cs +++ b/test/UnitTest/Services/DrawerServiceTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.AspNetCore.Components.Rendering; diff --git a/test/UnitTest/Services/EyeDropperTest.cs b/test/UnitTest/Services/EyeDropperTest.cs index 8e2de7645..4006f7623 100644 --- a/test/UnitTest/Services/EyeDropperTest.cs +++ b/test/UnitTest/Services/EyeDropperTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/FallbackServiceProvider.cs b/test/UnitTest/Services/FallbackServiceProvider.cs index a2dad6728..3ee37c830 100644 --- a/test/UnitTest/Services/FallbackServiceProvider.cs +++ b/test/UnitTest/Services/FallbackServiceProvider.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/Html2PdfServiceTest.cs b/test/UnitTest/Services/Html2PdfServiceTest.cs index c45c4aef5..e23de3caf 100644 --- a/test/UnitTest/Services/Html2PdfServiceTest.cs +++ b/test/UnitTest/Services/Html2PdfServiceTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/HtmlRendererTest.cs b/test/UnitTest/Services/HtmlRendererTest.cs index 3cd07e1d7..a91a49663 100644 --- a/test/UnitTest/Services/HtmlRendererTest.cs +++ b/test/UnitTest/Services/HtmlRendererTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/IpLocatorTest.cs b/test/UnitTest/Services/IpLocatorTest.cs index 7db35d19f..b594e4c5e 100644 --- a/test/UnitTest/Services/IpLocatorTest.cs +++ b/test/UnitTest/Services/IpLocatorTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Logging; diff --git a/test/UnitTest/Services/LookupServiceTest.cs b/test/UnitTest/Services/LookupServiceTest.cs index 30282a32e..58c93e272 100644 --- a/test/UnitTest/Services/LookupServiceTest.cs +++ b/test/UnitTest/Services/LookupServiceTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/MaskServiceTest.cs b/test/UnitTest/Services/MaskServiceTest.cs index 1d6ac7c68..9f6fbdcd5 100644 --- a/test/UnitTest/Services/MaskServiceTest.cs +++ b/test/UnitTest/Services/MaskServiceTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/SerialServiceTest.cs b/test/UnitTest/Services/SerialServiceTest.cs index bb936eb1e..3d10c8bef 100644 --- a/test/UnitTest/Services/SerialServiceTest.cs +++ b/test/UnitTest/Services/SerialServiceTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/ThemeProviderTest.cs b/test/UnitTest/Services/ThemeProviderTest.cs index 44362f8e4..3b219a2da 100644 --- a/test/UnitTest/Services/ThemeProviderTest.cs +++ b/test/UnitTest/Services/ThemeProviderTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/ThrottleTest.cs b/test/UnitTest/Services/ThrottleTest.cs index 5cb6b8a8c..7952f0924 100644 --- a/test/UnitTest/Services/ThrottleTest.cs +++ b/test/UnitTest/Services/ThrottleTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/WebClientServiceTest.cs b/test/UnitTest/Services/WebClientServiceTest.cs index 9a7cc6075..6d7bf6486 100644 --- a/test/UnitTest/Services/WebClientServiceTest.cs +++ b/test/UnitTest/Services/WebClientServiceTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Options; diff --git a/test/UnitTest/Services/WebSpeechRecognitionTest.cs b/test/UnitTest/Services/WebSpeechRecognitionTest.cs index 23dc1f59f..12518cf05 100644 --- a/test/UnitTest/Services/WebSpeechRecognitionTest.cs +++ b/test/UnitTest/Services/WebSpeechRecognitionTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/WebSpeechSynthesizerTest.cs b/test/UnitTest/Services/WebSpeechSynthesizerTest.cs index 503132baa..58fa594bd 100644 --- a/test/UnitTest/Services/WebSpeechSynthesizerTest.cs +++ b/test/UnitTest/Services/WebSpeechSynthesizerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Services/ZipArchiveServiceTest.cs b/test/UnitTest/Services/ZipArchiveServiceTest.cs index f05b25ee3..b4dd9caae 100644 --- a/test/UnitTest/Services/ZipArchiveServiceTest.cs +++ b/test/UnitTest/Services/ZipArchiveServiceTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Services; diff --git a/test/UnitTest/Utils/ConverterTest.cs b/test/UnitTest/Utils/ConverterTest.cs index 190208738..54d45b554 100644 --- a/test/UnitTest/Utils/ConverterTest.cs +++ b/test/UnitTest/Utils/ConverterTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Globalization; diff --git a/test/UnitTest/Utils/CssBuilderTest.cs b/test/UnitTest/Utils/CssBuilderTest.cs index b8dc69adf..ebaf19063 100644 --- a/test/UnitTest/Utils/CssBuilderTest.cs +++ b/test/UnitTest/Utils/CssBuilderTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Utils; diff --git a/test/UnitTest/Utils/GroupTest.cs b/test/UnitTest/Utils/GroupTest.cs index 7643bef0d..7c4888866 100644 --- a/test/UnitTest/Utils/GroupTest.cs +++ b/test/UnitTest/Utils/GroupTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Utils; diff --git a/test/UnitTest/Utils/JSModuleTest.cs b/test/UnitTest/Utils/JSModuleTest.cs index d919e7287..c1588d93d 100644 --- a/test/UnitTest/Utils/JSModuleTest.cs +++ b/test/UnitTest/Utils/JSModuleTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.JSInterop; diff --git a/test/UnitTest/Utils/LinqTest.cs b/test/UnitTest/Utils/LinqTest.cs index a033ce7c8..24a6857f5 100644 --- a/test/UnitTest/Utils/LinqTest.cs +++ b/test/UnitTest/Utils/LinqTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Utils; diff --git a/test/UnitTest/Utils/ModelComparerTest.cs b/test/UnitTest/Utils/ModelComparerTest.cs index c8bc82f55..70a9e846d 100644 --- a/test/UnitTest/Utils/ModelComparerTest.cs +++ b/test/UnitTest/Utils/ModelComparerTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Utils; diff --git a/test/UnitTest/Utils/OffsetTest.cs b/test/UnitTest/Utils/OffsetTest.cs index 03eb65d83..650ba548c 100644 --- a/test/UnitTest/Utils/OffsetTest.cs +++ b/test/UnitTest/Utils/OffsetTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Utils; diff --git a/test/UnitTest/Utils/QueryHelperTest.cs b/test/UnitTest/Utils/QueryHelperTest.cs index d867f52b7..10e1712a9 100644 --- a/test/UnitTest/Utils/QueryHelperTest.cs +++ b/test/UnitTest/Utils/QueryHelperTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Utils; diff --git a/test/UnitTest/Utils/ReflectionTest.cs b/test/UnitTest/Utils/ReflectionTest.cs index 929885096..b06491862 100644 --- a/test/UnitTest/Utils/ReflectionTest.cs +++ b/test/UnitTest/Utils/ReflectionTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Reflection; diff --git a/test/UnitTest/Utils/StructTest.cs b/test/UnitTest/Utils/StructTest.cs index 67438c82f..0fefb629a 100644 --- a/test/UnitTest/Utils/StructTest.cs +++ b/test/UnitTest/Utils/StructTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone namespace UnitTest.Utils; diff --git a/test/UnitTest/Utils/UnsafeAccessorTest.cs b/test/UnitTest/Utils/UnsafeAccessorTest.cs index bf9c4b8c7..849f7fb3c 100644 --- a/test/UnitTest/Utils/UnsafeAccessorTest.cs +++ b/test/UnitTest/Utils/UnsafeAccessorTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.Runtime.CompilerServices; diff --git a/test/UnitTest/Utils/UtilityTest.cs b/test/UnitTest/Utils/UtilityTest.cs index 628b9704e..d025d717e 100644 --- a/test/UnitTest/Utils/UtilityTest.cs +++ b/test/UnitTest/Utils/UtilityTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using BootstrapBlazor.Server.Extensions; using Microsoft.Extensions.Localization; diff --git a/test/UnitTest/Validators/DateTimeRangeRangeRequiredValidatorTest.cs b/test/UnitTest/Validators/DateTimeRangeRangeRequiredValidatorTest.cs index 73013df1e..ef50270b4 100644 --- a/test/UnitTest/Validators/DateTimeRangeRangeRequiredValidatorTest.cs +++ b/test/UnitTest/Validators/DateTimeRangeRangeRequiredValidatorTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel.DataAnnotations; diff --git a/test/UnitTest/Validators/FormItemValidatorTest.cs b/test/UnitTest/Validators/FormItemValidatorTest.cs index 4040665fe..100337b7c 100644 --- a/test/UnitTest/Validators/FormItemValidatorTest.cs +++ b/test/UnitTest/Validators/FormItemValidatorTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel.DataAnnotations; diff --git a/test/UnitTest/Validators/MaxValidatorTest.cs b/test/UnitTest/Validators/MaxValidatorTest.cs index 4d1154e24..572d23d5a 100644 --- a/test/UnitTest/Validators/MaxValidatorTest.cs +++ b/test/UnitTest/Validators/MaxValidatorTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel.DataAnnotations; diff --git a/test/UnitTest/Validators/MinValidatorTest.cs b/test/UnitTest/Validators/MinValidatorTest.cs index bfe31bbc9..31eb43238 100644 --- a/test/UnitTest/Validators/MinValidatorTest.cs +++ b/test/UnitTest/Validators/MinValidatorTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel.DataAnnotations; diff --git a/test/UnitTest/Validators/RequiredValidatorTest.cs b/test/UnitTest/Validators/RequiredValidatorTest.cs index b859ae312..621fe5dde 100644 --- a/test/UnitTest/Validators/RequiredValidatorTest.cs +++ b/test/UnitTest/Validators/RequiredValidatorTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Localization; using Microsoft.Extensions.Options; diff --git a/test/UnitTest/Validators/ValidatorAsyncTest.cs b/test/UnitTest/Validators/ValidatorAsyncTest.cs index 872766561..b95f34182 100644 --- a/test/UnitTest/Validators/ValidatorAsyncTest.cs +++ b/test/UnitTest/Validators/ValidatorAsyncTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel.DataAnnotations; diff --git a/test/UnitTest/Validators/ValidatorTest.cs b/test/UnitTest/Validators/ValidatorTest.cs index 5f8bf2e96..a6e28039c 100644 --- a/test/UnitTest/Validators/ValidatorTest.cs +++ b/test/UnitTest/Validators/ValidatorTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using System.ComponentModel.DataAnnotations; diff --git a/test/UnitTestDocs/MenuTest.cs b/test/UnitTestDocs/MenuTest.cs index 1238dbffe..6fb8c9c75 100644 --- a/test/UnitTestDocs/MenuTest.cs +++ b/test/UnitTestDocs/MenuTest.cs @@ -1,6 +1,7 @@ -// Copyright (c) Argo Zhang (argo@163.com). All rights reserved. -// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. -// Website: https://www.blazor.zone or https://argozhang.github.io/ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the Apache 2.0 License +// See the LICENSE file in the project root for more information. +// Maintainer: Argo Zhang(argo@live.ca) Website: https://www.blazor.zone using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection;