Skip to content

Commit 9d9f394

Browse files
[release/13.0] Add missing namespace to CertificateAuthorityCollectionResource (#12643)
* Add missing namespace to CertificateAuthorityCollectionResource * Remove global:: from cref --------- Co-authored-by: David Negstad <[email protected]>
1 parent adbb3f1 commit 9d9f394

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/Aspire.Hosting/ApplicationModel/CertificateAuthorityCollectionAnnotation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public enum CertificateTrustScope
4040
public sealed class CertificateAuthorityCollectionAnnotation : IResourceAnnotation
4141
{
4242
/// <summary>
43-
/// Gets the <see cref="global::CertificateAuthorityCollection"/> that is being referenced.
43+
/// Gets the <see cref="CertificateAuthorityCollection"/> that is being referenced.
4444
/// </summary>
4545
public List<CertificateAuthorityCollection> CertificateAuthorityCollections { get; internal set; } = new List<CertificateAuthorityCollection>();
4646

src/Aspire.Hosting/ApplicationModel/CertificateAuthorityCollectionResource.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33

44
using System.Security.Cryptography.X509Certificates;
5-
using Aspire.Hosting.ApplicationModel;
5+
6+
namespace Aspire.Hosting.ApplicationModel;
67

78
/// <summary>
89
/// Represents a collection of certificate authorities within the application model.

0 commit comments

Comments
 (0)