File: src\Aspire.Hosting.SqlServer\SqlServerContainerImageTags.cs
Web Access
Project: src\tests\Aspire.Microsoft.Data.SqlClient.Tests\Aspire.Microsoft.Data.SqlClient.Tests.csproj (Aspire.Microsoft.Data.SqlClient.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Aspire.Hosting;
 
internal static class SqlServerContainerImageTags
{
    /// <remarks>mcr.microsoft.com</remarks>
    public const string Registry = "mcr.microsoft.com";
 
    /// <remarks>mssql/server</remarks>
    public const string Image = "mssql/server";
 
    /// <remarks>2022-latest</remarks>
    public const string Tag = "2022-latest";
}