Fix dependency issues
- Normal behaviors things were being shown as warnings. Cousin dependencies always get version bumped.
This commit is contained in:
parent
41516f5a37
commit
1470ab60d2
2 changed files with 20 additions and 3 deletions
|
@ -204,7 +204,7 @@ namespace Microsoft.Extensions.ProjectModel
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create a library manager
|
// Create a library manager
|
||||||
var libraryManager = new LibraryManager(libraries.Values.ToList(), diagnostics);
|
var libraryManager = new LibraryManager(libraries.Values.ToList(), diagnostics, Project.ProjectFilePath);
|
||||||
|
|
||||||
return new ProjectContext(
|
return new ProjectContext(
|
||||||
GlobalSettings,
|
GlobalSettings,
|
||||||
|
|
|
@ -11,12 +11,15 @@ namespace Microsoft.Extensions.ProjectModel.Resolution
|
||||||
{
|
{
|
||||||
private readonly IList<LibraryDescription> _libraries;
|
private readonly IList<LibraryDescription> _libraries;
|
||||||
private readonly IList<DiagnosticMessage> _diagnostics;
|
private readonly IList<DiagnosticMessage> _diagnostics;
|
||||||
|
private readonly string _projectPath;
|
||||||
|
|
||||||
public LibraryManager(IList<LibraryDescription> libraries,
|
public LibraryManager(IList<LibraryDescription> libraries,
|
||||||
IList<DiagnosticMessage> diagnostics)
|
IList<DiagnosticMessage> diagnostics,
|
||||||
|
string projectPath)
|
||||||
{
|
{
|
||||||
_libraries = libraries;
|
_libraries = libraries;
|
||||||
_diagnostics = diagnostics;
|
_diagnostics = diagnostics;
|
||||||
|
_projectPath = projectPath;
|
||||||
}
|
}
|
||||||
|
|
||||||
public IList<LibraryDescription> GetLibraries()
|
public IList<LibraryDescription> GetLibraries()
|
||||||
|
@ -62,11 +65,19 @@ namespace Microsoft.Extensions.ProjectModel.Resolution
|
||||||
foreach (var range in library.RequestedRanges)
|
foreach (var range in library.RequestedRanges)
|
||||||
{
|
{
|
||||||
// Skip libraries that aren't specified in a project.json
|
// Skip libraries that aren't specified in a project.json
|
||||||
|
// Only report problems for this project
|
||||||
if (string.IsNullOrEmpty(range.SourceFilePath))
|
if (string.IsNullOrEmpty(range.SourceFilePath))
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// We only care about things requested in this project
|
||||||
|
if (!string.Equals(_projectPath, range.SourceFilePath))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if (range.VersionRange == null)
|
if (range.VersionRange == null)
|
||||||
{
|
{
|
||||||
// TODO: Show errors/warnings for things without versions
|
// TODO: Show errors/warnings for things without versions
|
||||||
|
@ -116,6 +127,12 @@ namespace Microsoft.Extensions.ProjectModel.Resolution
|
||||||
// A (in project.json) -> B (unresolved) (not in project.json)
|
// A (in project.json) -> B (unresolved) (not in project.json)
|
||||||
foreach (var source in GetRangesWithSourceLocations(library).Distinct())
|
foreach (var source in GetRangesWithSourceLocations(library).Distinct())
|
||||||
{
|
{
|
||||||
|
// We only care about things requested in this project
|
||||||
|
if (!string.Equals(_projectPath, source.SourceFilePath))
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
messages.Add(
|
messages.Add(
|
||||||
new DiagnosticMessage(
|
new DiagnosticMessage(
|
||||||
errorCode,
|
errorCode,
|
||||||
|
@ -130,7 +147,7 @@ namespace Microsoft.Extensions.ProjectModel.Resolution
|
||||||
}
|
}
|
||||||
|
|
||||||
private IEnumerable<LibraryRange> GetRangesWithSourceLocations(LibraryDescription library)
|
private IEnumerable<LibraryRange> GetRangesWithSourceLocations(LibraryDescription library)
|
||||||
{
|
{
|
||||||
foreach (var range in library.RequestedRanges)
|
foreach (var range in library.RequestedRanges)
|
||||||
{
|
{
|
||||||
if (!string.IsNullOrEmpty(range.SourceFilePath))
|
if (!string.IsNullOrEmpty(range.SourceFilePath))
|
||||||
|
|
Loading…
Reference in a new issue