You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tags are missing when passing ContainerImageTags in the dotnet publish command as follows:
dotnet publish --os linux --arch x64 -p:ContainerImageTags=example
MSBuild version 17.4.0+18d5aef85 for .NET
...
Building image 'dotnet/exampleimage' with tags on top of base image mcr.microsoft.com/dotnet/aspnet:6.0
Tags are present when passing ContainerImageTag:
dotnet publish --os linux --arch x64 -p:ContainerImageTag=example
MSBuild version 17.4.0+18d5aef85 for .NET
...
Building image 'dotnet/exampleimage' with tags example on top of base image mcr.microsoft.com/dotnet/aspnet:6.0
Additionally, an error is thrown if you have ContainerImageTag set in the csproj file, and try to pass ContainerImageTags and vice-versa. Ideally these two variables would override each other.
The text was updated successfully, but these errors were encountered:
Tags are missing when passing
ContainerImageTags
in the dotnet publish command as follows:Tags are present when passing
ContainerImageTag
:Additionally, an error is thrown if you have
ContainerImageTag
set in the csproj file, and try to passContainerImageTags
and vice-versa. Ideally these two variables would override each other.The text was updated successfully, but these errors were encountered: