Skip to content

Commit e197428

Browse files
committed
Add XML Docs for pubternal types
\n\nCommit migrated from dotnet/extensions@033ea04
1 parent a935b95 commit e197428

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed

src/FileProviders/Manifest.MSBuildTask/src/Entry.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
namespace Microsoft.Extensions.FileProviders.Embedded.Manifest.Task.Internal
99
{
1010
/// <summary>
11-
/// This type is for internal uses only and is not meant to be consumed by any other library.
11+
/// This API supports infrastructure and is not intended to be used
12+
/// directly from your code. This API may change or be removed in future releases.
1213
/// </summary>
1314
[DebuggerDisplay("{Name,nq}")]
1415
public class Entry : IEquatable<Entry>

src/Localization/Localization/src/Internal/AssemblyWrapper.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
1+
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System;
@@ -7,6 +7,10 @@
77

88
namespace Microsoft.Extensions.Localization.Internal
99
{
10+
/// <summary>
11+
/// This API supports infrastructure and is not intended to be used
12+
/// directly from your code. This API may change or be removed in future releases.
13+
/// </summary>
1014
public class AssemblyWrapper
1115
{
1216
public AssemblyWrapper(Assembly assembly)

src/Localization/Localization/src/Internal/IResourceStringProvider.cs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
2-
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Copyright (c) .NET Foundation. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System.Collections.Generic;
55
using System.Globalization;
66

77
namespace Microsoft.Extensions.Localization.Internal
88
{
9+
/// <summary>
10+
/// This API supports infrastructure and is not intended to be used
11+
/// directly from your code. This API may change or be removed in future releases.
12+
/// </summary>
913
public interface IResourceStringProvider
1014
{
1115
IList<string> GetAllResourceStrings(CultureInfo culture, bool throwOnMissing);

src/Localization/Localization/src/Internal/ResourceManagerStringProvider.cs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
2-
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Copyright (c) .NET Foundation. All rights reserved.
2+
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
33

44
using System.Collections;
55
using System.Collections.Generic;
@@ -9,6 +9,10 @@
99

1010
namespace Microsoft.Extensions.Localization.Internal
1111
{
12+
/// <summary>
13+
/// This API supports infrastructure and is not intended to be used
14+
/// directly from your code. This API may change or be removed in future releases.
15+
/// </summary>
1216
public class ResourceManagerStringProvider : IResourceStringProvider
1317
{
1418
private readonly IResourceNamesCache _resourceNamesCache;

0 commit comments

Comments
 (0)