File: src\Aspire.Hosting.SqlServer\SqlServerContainerImageTags.cs | Web Access |
Project: src\tests\Aspire.Hosting.SqlServer.Tests\Aspire.Hosting.SqlServer.Tests.csproj (Aspire.Hosting.SqlServer.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"; } |