Open
Description
I'm specifying my container repository as:
<ContainerRepository>myregistry.com:123/$(AssemblyName)</ContainerRepository>
But the ParseContainerProperties
task "normalizes" it to "myregistry-com-123/...."
the only way for it to work, is to use this:
<ContainerRepository>myregistry.com:123/$(AssemblyName.Replace('.','-').ToLowerInvariant())</ContainerRepository>
Is that intended?
What is the ContainerRegistry
parameter used for?