Change 'got' to 'received' for dep conflicts
This commit is contained in:
parent
512287ec03
commit
d76807d22a
1 changed files with 2 additions and 2 deletions
|
@ -172,7 +172,7 @@ namespace Microsoft.DotNet.ProjectModel.Resolution
|
||||||
|
|
||||||
if (item.Library != library && !versionRange.Satisfies(library.Identity.Version))
|
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(
|
messages.Add(
|
||||||
new DiagnosticMessage(
|
new DiagnosticMessage(
|
||||||
|
|
Loading…
Reference in a new issue