3 references to Warnings
Microsoft.NET.Build.Containers.IntegrationTests (3)
CapturingLogger.cs (1)
22public List<string> AllMessages => Errors.Select(e => e.Message!).Concat(Warnings.Select(w => w.Message!)).Concat(Messages.Select(m => m.Message!)).ToList();
TargetsTests.cs (2)
65logger.Warnings.Should().HaveCount(1, "a warning for the use of the old ContainerImageName property should have been created"); 66logger.Warnings[0].Code.Should().Be(KnownStrings.ErrorCodes.CONTAINER003);