File: ApplicationModel\CustomResourceKnownProperties.cs | Web Access |
Project: src\src\Aspire.Hosting\Aspire.Hosting.csproj (Aspire.Hosting) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Aspire.Dashboard.Model; namespace Aspire.Hosting.ApplicationModel; /// <summary> /// Known properties for resources that show up in the dashboard. /// </summary> public static class CustomResourceKnownProperties { /// <summary> /// The source of the resource /// </summary> public static string Source { get; } = KnownProperties.Resource.Source; } |