Change 'got' to 'received' for dep conflicts

This commit is contained in:
Luke Latham 2016-06-06 09:35:24 -05:00
parent 512287ec03
commit d76807d22a

View file

@ -172,7 +172,7 @@ namespace Microsoft.DotNet.ProjectModel.Resolution
if (item.Library != library && !versionRange.Satisfies(library.Identity.Version))
{
var message = $"Dependency conflict. {item.Library.Identity} expected {FormatLibraryRange(item.Dependency)} but got {library.Identity.Version}";
var message = $"Dependency conflict. {item.Library.Identity} expected {FormatLibraryRange(item.Dependency)} but received {library.Identity.Version}";
messages.Add(
new DiagnosticMessage(
@ -272,4 +272,4 @@ namespace Microsoft.DotNet.ProjectModel.Resolution
}
}
}
}
}