File: SqlServerContainerImageTags.cs | Web Access |
Project: src\src\Aspire.Hosting.SqlServer\Aspire.Hosting.SqlServer.csproj (Aspire.Hosting.SqlServer) |
// 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 { /// <summary>mcr.microsoft.com</summary> public const string Registry = "mcr.microsoft.com"; /// <summary>mssql/server</summary> public const string Image = "mssql/server"; /// <summary>2022-latest</summary> public const string Tag = "2022-latest"; } |