@@ -23,12 +23,12 @@ public sealed class PackageDataReader : IPackageDataReader
23
23
public AssetsFilePath AssetsFilePath { get ; }
24
24
25
25
/// <summary>
26
- /// Gets the target framework of the package .
26
+ /// Gets the target framework of the project .
27
27
/// </summary>
28
28
public string TargetFramework { get ; }
29
29
30
30
/// <summary>
31
- /// Gets the runtime identifier of the package (optional).
31
+ /// Gets the runtime identifier of the project (optional).
32
32
/// </summary>
33
33
public string ? RuntimeIdentifier { get ; }
34
34
@@ -41,9 +41,8 @@ public sealed class PackageDataReader : IPackageDataReader
41
41
/// Initializes a new instance of the <see cref="PackageDataReader"/> class.
42
42
/// </summary>
43
43
/// <param name="assetsFilePath">The file path of the project assets file.</param>
44
- /// <param name="targetFramework">The target framework of the package.</param>
45
- /// <param name="runtimeIdentifier">The runtime identifier of the package (optional).</param>
46
- /// <param name="knownPackageIds">Represents a collection of known package IDs and their associated owners or products (optional).</param>
44
+ /// <param name="targetFramework">The target framework of the project.</param>
45
+ /// <param name="runtimeIdentifier">The runtime identifier of the project (optional).</param>
47
46
public PackageDataReader ( string assetsFilePath , string targetFramework , string ? runtimeIdentifier )
48
47
: this ( new AssetsFilePath ( assetsFilePath ) , targetFramework , runtimeIdentifier )
49
48
{
@@ -53,9 +52,8 @@ public PackageDataReader(string assetsFilePath, string targetFramework, string?
53
52
/// Initializes a new instance of the <see cref="PackageDataReader"/> class.
54
53
/// </summary>
55
54
/// <param name="assetsFilePath">The file path of the project assets file.</param>
56
- /// <param name="targetFramework">The target framework of the package.</param>
57
- /// <param name="runtimeIdentifier">The runtime identifier of the package (optional).</param>
58
- /// <param name="knownPackageIds">Represents a collection of known package IDs and their associated owners or products (optional).</param>
55
+ /// <param name="targetFramework">The target framework of the project.</param>
56
+ /// <param name="runtimeIdentifier">The runtime identifier of the project (optional).</param>
59
57
public PackageDataReader ( AssetsFilePath assetsFilePath , string targetFramework , string ? runtimeIdentifier )
60
58
{
61
59
ThrowHelper . ThrowIfNullOrEmpty ( targetFramework ) ;
@@ -74,14 +72,16 @@ public IReadOnlyCollection<IPackageData> Read(CancellationToken cancellationToke
74
72
{
75
73
cancellationToken . ThrowIfCancellationRequested ( ) ;
76
74
77
- NuGetFramework framework = NuGetFramework . Parse ( TargetFramework ) ;
78
75
LockFile lockFile = AssetsFilePath . ReadLockFile ( ) ;
79
76
77
+ NuGetFramework framework = GetFramework ( lockFile , TargetFramework )
78
+ ?? throw new InvalidOperationException ( $ "No target framework was found for the alias '{ TargetFramework } '.") ;
79
+
80
80
IList < LibraryDependency > projectDependencies = lockFile . PackageSpec
81
81
. GetTargetFramework ( framework )
82
82
. Dependencies ;
83
83
84
- LockFileTarget ? target = TryGetTarget ( lockFile , framework )
84
+ LockFileTarget ? target = TryGetTarget ( lockFile , framework , RuntimeIdentifier )
85
85
?? throw new InvalidOperationException ( $ "No target was found for the target framework '{ TargetFramework } ' and the runtime id '{ RuntimeIdentifier } '.") ;
86
86
87
87
List < IPackageData > result = new ( ) ;
@@ -121,11 +121,18 @@ public IReadOnlyCollection<IPackageData> Read(CancellationToken cancellationToke
121
121
122
122
return result ;
123
123
124
- LockFileTarget TryGetTarget ( LockFile lockFile , NuGetFramework framework )
124
+ static NuGetFramework ? GetFramework ( LockFile lockFile , string targetFramework )
125
+ {
126
+ return lockFile . PackageSpec . TargetFrameworks
127
+ . FirstOrDefault ( tfi => tfi . TargetAlias . Equals ( targetFramework , StringComparison . OrdinalIgnoreCase ) )
128
+ ? . FrameworkName ;
129
+ }
130
+
131
+ static LockFileTarget TryGetTarget ( LockFile lockFile , NuGetFramework framework , string ? runtimeIdentifier )
125
132
{
126
- return string . IsNullOrEmpty ( RuntimeIdentifier )
133
+ return string . IsNullOrEmpty ( runtimeIdentifier )
127
134
? lockFile . GetTarget ( framework , null )
128
- : lockFile . GetTarget ( framework , RuntimeIdentifier )
135
+ : lockFile . GetTarget ( framework , runtimeIdentifier )
129
136
?? lockFile . GetTarget ( framework , null ) ;
130
137
}
131
138
}
0 commit comments