Skip to content

Commit 3f3f8b9

Browse files
authored
chore(foundation): add dotnet foundation information (#4499)
* chore: 更新 readme 增加基金会文档 * chore: 更新 License 增加基金会权益 * chore: 更新源文件头标注 * doc: 更新源代码标注 * chore: 更新 readme 文档 * chore: 更改维护者单词
1 parent 259b6f2 commit 3f3f8b9

File tree

1,267 files changed

+5071
-3756
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,267 files changed

+5071
-3756
lines changed

.editorconfig

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ dotnet_style_collection_initializer = true:suggestion
119119
dotnet_style_explicit_tuple_names = true:suggestion
120120
dotnet_style_null_propagation = true:suggestion
121121
dotnet_style_coalesce_expression = true:suggestion
122-
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:silent
122+
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
123123
dotnet_style_prefer_inferred_tuple_names = true:suggestion
124124
dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
125125
dotnet_style_prefer_auto_properties = true:silent
@@ -192,7 +192,7 @@ csharp_new_line_between_query_expression_clauses = true
192192
# Indentation preferences
193193
csharp_indent_case_contents = true
194194
csharp_indent_switch_labels = true
195-
csharp_indent_labels = flush_left
195+
csharp_indent_labels = one_less_than_current
196196
# Space preferences
197197
csharp_space_after_cast = false
198198
csharp_space_after_keywords_in_control_flow_statements = true
@@ -216,9 +216,9 @@ csharp_preserve_single_line_blocks = true
216216
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
217217
[*.cs]
218218
# Add file header
219-
file_header_template = Copyright (c) Argo Zhang ([email protected]). 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/
220-
csharp_style_namespace_declarations = file_scoped:suggestion
221-
csharp_style_expression_bodied_local_functions = true:silent
219+
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([email protected]) Website: https://www.blazor.zone
220+
csharp_style_namespace_declarations = block_scoped:silent
221+
csharp_style_expression_bodied_local_functions = false:silent
222222
csharp_using_directive_placement = outside_namespace:silent
223223
csharp_prefer_simple_using_statement = true:suggestion
224224
csharp_style_prefer_method_group_conversion = true:silent
@@ -246,3 +246,4 @@ csharp_style_prefer_pattern_matching = true:silent
246246
csharp_style_prefer_not_pattern = true:suggestion
247247
csharp_style_prefer_extended_property_pattern = true:suggestion
248248
csharp_prefer_static_anonymous_function = true:suggestion
249+
csharp_prefer_system_threading_lock = true:suggestion

LICENSE

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Copyright (c) .NET Foundation and Contributors
2+
All Rights Reserved
3+
14
Apache License
25
Version 2.0, January 2004
36
http://www.apache.org/licenses/

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<h1 align="center">Bootstrap Blazor Component</h1>
22

33
<div align="center">
4-
<h2>A set of enterprise-class UI components based on Bootstrap and Blazor.</h2>
4+
<h2>Bootstrap Blazor is an enterprise-level UI component library based on Bootstrap and Blazor.</h2>
55

66
[![License](https://img.shields.io/github/license/dotnetcore/BootstrapBlazor.svg?logo=git&logoColor=red)](https://github.com/dotnetcore/BootstrapBlazor/blob/main/LICENSE)
77
[![Nuget](https://img.shields.io/nuget/v/BootstrapBlazor.svg?color=red&logo=nuget&logoColor=green)](https://www.nuget.org/packages/BootstrapBlazor/)

README.zh-CN.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
<h1 align="center">Bootstrap Blazor 组件库</h1>
22

33
<div align="center">
4-
<h2>一套基于 Bootstrap 和 Blazor 的企业级组件库</h2>
4+
<h2>Bootstrap Blazor 是一套基于 Bootstrap 和 Blazor 的企业级组件库</h2>
5+
<h4>.NET 基金会成员项目</h4>
56

67
[![License](https://img.shields.io/github/license/dotnetcore/BootstrapBlazor.svg?logo=git&logoColor=red)](https://github.com/dotnetcore/BootstrapBlazor/blob/main/LICENSE)
78
[![Nuget](https://img.shields.io/nuget/v/BootstrapBlazor.svg?color=red&logo=nuget&logoColor=green)](https://www.nuget.org/packages/BootstrapBlazor/)

src/BootstrapBlazor.Server/Components/Components/AttributeTable.razor.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
// Copyright (c) Argo Zhang ([email protected]). All rights reserved.
2-
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3-
// Website: https://www.blazor.zone or https://argozhang.github.io/
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the Apache 2.0 License
3+
// See the LICENSE file in the project root for more information.
4+
// Maintainer: Argo Zhang([email protected]) Website: https://www.blazor.zone
45

56
namespace BootstrapBlazor.Server.Components.Components;
67

src/BootstrapBlazor.Server/Components/Components/BarcodeGenerateSettings.razor.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
// Copyright (c) Argo Zhang ([email protected]). All rights reserved.
2-
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3-
// Website: https://www.blazor.zone or https://argozhang.github.io/
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the Apache 2.0 License
3+
// See the LICENSE file in the project root for more information.
4+
// Maintainer: Argo Zhang([email protected]) Website: https://www.blazor.zone
45

56
namespace BootstrapBlazor.Server.Components.Components;
67

src/BootstrapBlazor.Server/Components/Components/CalendarCrewCell.razor.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
// Copyright (c) Argo Zhang ([email protected]). All rights reserved.
2-
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3-
// Website: https://www.blazor.zone or https://argozhang.github.io/
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the Apache 2.0 License
3+
// See the LICENSE file in the project root for more information.
4+
// Maintainer: Argo Zhang([email protected]) Website: https://www.blazor.zone
45

56
namespace BootstrapBlazor.Server.Components.Components;
67

src/BootstrapBlazor.Server/Components/Components/CalendarCrewDialogBody.razor.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
// Copyright (c) Argo Zhang ([email protected]). All rights reserved.
2-
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3-
// Website: https://www.blazor.zone or https://argozhang.github.io/
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the Apache 2.0 License
3+
// See the LICENSE file in the project root for more information.
4+
// Maintainer: Argo Zhang([email protected]) Website: https://www.blazor.zone
45

56
namespace BootstrapBlazor.Server.Components.Components;
67

src/BootstrapBlazor.Server/Components/Components/CommitItem.razor.cs

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
// Copyright (c) Argo Zhang ([email protected]). All rights reserved.
2-
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3-
// Website: https://www.blazor.zone or https://argozhang.github.io/
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the Apache 2.0 License
3+
// See the LICENSE file in the project root for more information.
4+
// Maintainer: Argo Zhang([email protected]) Website: https://www.blazor.zone
5+
46
namespace BootstrapBlazor.Server.Components.Components;
57

68
/// <summary>

src/BootstrapBlazor.Server/Components/Components/ComponentCard.razor.cs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
// Copyright (c) Argo Zhang ([email protected]). All rights reserved.
2-
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
3-
// Website: https://www.blazor.zone or https://argozhang.github.io/
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the Apache 2.0 License
3+
// See the LICENSE file in the project root for more information.
4+
// Maintainer: Argo Zhang([email protected]) Website: https://www.blazor.zone
45

56
namespace BootstrapBlazor.Server.Components.Components;
67

0 commit comments

Comments
 (0)