Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[8.0.404] "dotnet list package" fails when using CPM #14000

Open
paulomorgado opened this issue Dec 16, 2024 · 9 comments
Open

[8.0.404] "dotnet list package" fails when using CPM #14000

paulomorgado opened this issue Dec 16, 2024 · 9 comments
Labels
Product:dotnet.exe Type:Bug WaitingForClientTeam Customer replied, needs attention from client team. Do not apply this label manually.

Comments

@paulomorgado
Copy link

paulomorgado commented Dec 16, 2024

NuGet Product Used

dotnet.exe

Product Version

$ dotnet --info
.NET SDK:
 Version:           8.0.404
 Commit:            7b190310f2
 Workload version:  8.0.400-manifests.4d7d414a
 MSBuild version:   17.11.9+a69bbaaf5

Runtime Environment:
 OS Name:     Windows
 OS Version:  10.0.19045
 OS Platform: Windows
 RID:         win-x64
 Base Path:   C:\Program Files\dotnet\sdk\8.0.404\

.NET workloads installed:
Configured to use loose manifests when installing new manifests.
 [aspire]
   Installation Source: SDK 8.0.400, VS 17.13.35605.110, VS 17.12.35527.113
   Manifest Version:    8.2.2/8.0.100
   Manifest Path:       C:\Program Files\dotnet\sdk-manifests\8.0.100\microsoft.net.sdk.aspire\8.2.2\WorkloadManifest.json
   Install Type:        FileBased


Host:
  Version:      9.0.0
  Architecture: x64
  Commit:       9d5a6a9aa4

.NET SDKs installed:
  6.0.428 [C:\Program Files\dotnet\sdk]
  8.0.404 [C:\Program Files\dotnet\sdk]
  9.0.101 [C:\Program Files\dotnet\sdk]
  9.0.200-preview.0.24575.35 [C:\Program Files\dotnet\sdk]

.NET runtimes installed:
  Microsoft.AspNetCore.App 6.0.27 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
  Microsoft.AspNetCore.App 6.0.36 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
  Microsoft.AspNetCore.App 7.0.16 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
  Microsoft.AspNetCore.App 8.0.2 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
  Microsoft.AspNetCore.App 8.0.11 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
  Microsoft.AspNetCore.App 9.0.0 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
  Microsoft.NETCore.App 6.0.27 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
  Microsoft.NETCore.App 6.0.36 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
  Microsoft.NETCore.App 7.0.16 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
  Microsoft.NETCore.App 8.0.2 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
  Microsoft.NETCore.App 8.0.11 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
  Microsoft.NETCore.App 9.0.0 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
  Microsoft.WindowsDesktop.App 6.0.27 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
  Microsoft.WindowsDesktop.App 6.0.36 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
  Microsoft.WindowsDesktop.App 7.0.16 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
  Microsoft.WindowsDesktop.App 8.0.2 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
  Microsoft.WindowsDesktop.App 8.0.11 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
  Microsoft.WindowsDesktop.App 9.0.0 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]

Other architectures found:
  x86   [C:\Program Files (x86)\dotnet]
    registered at [HKLM\SOFTWARE\dotnet\Setup\InstalledVersions\x86\InstallLocation]

Environment variables:
  Not set

global.json file:
  C:\Temp\Projects\DotNetListPackages\global.json

Learn more:
  https://aka.ms/dotnet/info

Download .NET:
  https://aka.ms/dotnet/download

Worked before?

No response

Impact

I'm unable to use this version

Repro Steps & Context

Create a solution with Central Package Management:

$ dotnet new packagesprops
The template "MSBuild Directory.Packages.props file" was created successfully.

$ dotnet new globaljson --sdk-version 8.0.400 --roll-forward latestFeature --force
The template "global.json file" was created successfully.

$ dotnet new sln
The template "Solution File" was created successfully.

$ dotnet new classlib --name ClassLib1
The template "Class Library" was created successfully.

Processing post-creation actions...
Restoring C:\Temp\Projects\DotNetListPackages\ClassLib1\ClassLib1.csproj:
Restore complete (0,7s)

Build succeeded in 0,9s
Restore succeeded.

$ dotnet sln add ClassLib1
Project `ClassLib1\ClassLib1.csproj` added to the solution.

$ dotnet list package --verbosity diag
Unable to read a package reference from the project `C:\Temp\Projects\DotNetListPackages\ClassLib1\ClassLib1.csproj`. Please make sure that your project file and project.assets.json file are in sync by running restore.

$ dotnet restore --force
Restore complete (0,6s)

Build succeeded in 0,6s

$ dotnet list package --verbosity diag
Unable to read a package reference from the project `C:\Temp\Projects\DotNetListPackages\ClassLib1\ClassLib1.csproj`. Please make sure that your project file and project.assets.json file are in sync by running restore.

The same scenario works with SDK 9.0.100.

Verbose Logs

No response

@paulomorgado
Copy link
Author

Previously reported at dotnet/sdk#45473

@nkolev92
Copy link
Member

I'm not able to repro with the given steps.

Is this a consistent repro?

@nkolev92 nkolev92 added Product:dotnet.exe WaitingForCustomer Applied when a NuGet triage person needs more info from the OP and removed Triage:Untriaged labels Dec 20, 2024
@paulomorgado
Copy link
Author

paulomorgado commented Dec 21, 2024

Strange. I just tried the exact same repro and I didn't have any problems now.

If it ever happens in the future, how can I diagnose it? Are there any logs I can collect?

Update: On this test I didn't have CPM enabled.

@microsoft-github-policy-service microsoft-github-policy-service bot added WaitingForClientTeam Customer replied, needs attention from client team. Do not apply this label manually. and removed WaitingForCustomer Applied when a NuGet triage person needs more info from the OP labels Dec 21, 2024
@zivkan
Copy link
Member

zivkan commented Dec 29, 2024

I think a PerfView or dotnet-trace trace would help. I'm hoping that an ETW/EventSource event will be captured for exceptions, so we can get more information about what exactly failed to load/read.

You could also try Sysinternals' procmon to see if Windows is reporting any errors trying to open files, given the error message you were seeing.

Also, check that obj/project.assets.json actually exists and has valid json contents. It should, given the logs show that restore was successful, but it's a file that dotnet list package usually reads, and it related to the error message provided.

Something else to check is to make sure you don't have any Directory.Packages.props, Directory.Build.props or Directory.Build.targets files in any parent directory. From memory restore tells MSBuild to ignore invalid imports (I don't know why), whereas other commands probably don't. Trying a dotnet build should give a better error message if this is the case.

@zivkan zivkan added WaitingForCustomer Applied when a NuGet triage person needs more info from the OP and removed WaitingForClientTeam Customer replied, needs attention from client team. Do not apply this label manually. labels Dec 29, 2024
@paulomorgado
Copy link
Author

Or TTD. 😄

Is there any extended logging I can get out of it,

I guess the best option is just get the commit for that version and debug it.

@microsoft-github-policy-service microsoft-github-policy-service bot added WaitingForClientTeam Customer replied, needs attention from client team. Do not apply this label manually. and removed WaitingForCustomer Applied when a NuGet triage person needs more info from the OP labels Dec 29, 2024
@zivkan zivkan added WaitingForCustomer Applied when a NuGet triage person needs more info from the OP and removed WaitingForClientTeam Customer replied, needs attention from client team. Do not apply this label manually. labels Dec 30, 2024
@paulomorgado
Copy link
Author

paulomorgado commented Dec 30, 2024

@zivkan,

Procmon shows access to the right path:

image

 λ dir project.assets.json -r | % FullName
C:\Temp\Projects\DotNetListPackages\ClassLib1\obj\project.assets.json

I one of my Windows 11 PCs, procmon doesn't even show access to C:\Temp\Projects\DotNetListPackages\ClassLib1\obj\project.assets.json, and the command succeeds.

 λ dir "C:\Program Files\dotnet\sdk\8.0.404\NuGet.CommandLine.XPlat.dll" | % VersionInfo | fl *

FileVersionRaw     : 6.11.1.2
ProductVersionRaw  : 0.0.0.0
Comments           : NuGet executable wrapper for the dotnet CLI nuget functionality.
CompanyName        : Microsoft Corporation
FileBuildPart      : 1
FileDescription    : NuGet.CommandLine.XPlat
FileMajorPart      : 6
FileMinorPart      : 11
FileName           : C:\Program Files\dotnet\sdk\8.0.404\NuGet.CommandLine.XPlat.dll
FilePrivatePart    : 2
FileVersion        : 6.11.1.2
InternalName       : NuGet.CommandLine.XPlat.dll
IsDebug            : False
IsPatched          : False
IsPrivateBuild     : False
IsPreRelease       : False
IsSpecialBuild     : False
Language           : Language Neutral
LegalCopyright     : © Microsoft Corporation. All rights reserved.
LegalTrademarks    :
OriginalFilename   : NuGet.CommandLine.XPlat.dll
PrivateBuild       :
ProductBuildPart   : 0
ProductMajorPart   : 0
ProductMinorPart   : 0
ProductName        : NuGet
ProductPrivatePart : 0
ProductVersion     : 6.11.1-rc.2+5469bd0d9de8108f15f21644759773b85471366c.5469bd0d9de8108f15f21644759773b85471366c
SpecialBuild       :

@microsoft-github-policy-service microsoft-github-policy-service bot added WaitingForClientTeam Customer replied, needs attention from client team. Do not apply this label manually. and removed WaitingForCustomer Applied when a NuGet triage person needs more info from the OP labels Dec 30, 2024
@paulomorgado
Copy link
Author

The exception seems to be thrown here: https://github.com/NuGet/NuGet.Client/blob/6.11.1.2/src/NuGet.Core/NuGet.CommandLine.XPlat/Utility/MSBuildAPIUtility.cs#L814

But when I try to run it, I get:

error: Could not load file or assembly 'Microsoft.Build, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified.
trace: System.AggregateException: One or more errors occurred. (Could not load file or assembly 'Microsoft.Build, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified.)
trace:  ---> System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.Build, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. The system cannot find the file specified.
trace: File name: 'Microsoft.Build, Version=15.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
trace:    at NuGet.CommandLine.XPlat.MSBuildAPIUtility.GetProjectsFromSolution(String solutionPath)
trace:    at NuGet.CommandLine.XPlat.ListPackageCommandRunner.GetReportDataAsync(ListPackageArgs listPackageArgs) in C:\OSS\dotnet\NuGet\NuGet.Client\src\NuGet.Core\NuGet.CommandLine.XPlat\Commands\PackageReferenceCommands\ListPackage\ListPackageCommandRunner.cs:line 61
trace:    at NuGet.CommandLine.XPlat.ListPackageCommandRunner.ExecuteCommandAsync(ListPackageArgs listPackageArgs) in C:\OSS\dotnet\NuGet\NuGet.Client\src\NuGet.Core\NuGet.CommandLine.XPlat\Commands\PackageReferenceCommands\ListPackage\ListPackageCommandRunner.cs:line 39
trace:    at NuGet.CommandLine.XPlat.ListPackageCommand.<>c__DisplayClass0_1.<<Register>b__1>d.MoveNext() in C:\OSS\dotnet\NuGet\NuGet.Client\src\NuGet.Core\NuGet.CommandLine.XPlat\Commands\PackageReferenceCommands\ListPackage\ListPackageCommand.cs:line 151
trace:    --- End of inner exception stack trace ---
trace:    at System.Threading.Tasks.Task`1.GetResultCore(Boolean waitCompletionNotification)
trace:    at Microsoft.Extensions.CommandLineUtils.CommandLineApplication.<>c__DisplayClass79_0.<OnExecute>b__0() in C:\Users\paulo.morgado\.nuget\packages\microsoft.extensions.commandlineutils.sources\3.0.0-preview6.19253.5\contentFiles\cs\netstandard1.0\shared\CommandLine\CommandLineApplication.cs:line 123
trace:    at Microsoft.Extensions.CommandLineUtils.CommandLineApplication.Execute(String[] args) in C:\Users\paulo.morgado\.nuget\packages\microsoft.extensions.commandlineutils.sources\3.0.0-preview6.19253.5\contentFiles\cs\netstandard1.0\shared\CommandLine\CommandLineApplication.cs:line 296
trace:    at NuGet.CommandLine.XPlat.Program.MainInternal(String[] args, CommandOutputLogger log) in C:\OSS\dotnet\NuGet\NuGet.Client\src\NuGet.Core\NuGet.CommandLine.XPlat\Program.cs:line 159

@paulomorgado
Copy link
Author

Used procdump to capture first chance exceptions and got this:

0:000> !clrstack
OS Thread Id: 0x6ab8 (0)
        Child SP               IP Call Site
00000018D077A278 00007ffda70ed574 [HelperMethodFrame: 00000018d077a278] 
00000018D077A370 00007ffd59d92d38 NuGet.CommandLine.XPlat.MSBuildAPIUtility.GetResolvedVersions(Microsoft.Build.Evaluation.Project, System.Collections.Generic.IEnumerable`1<System.String>, NuGet.ProjectModel.LockFile, Boolean) [D:\a\_work\1\s\src\NuGet.Core\NuGet.CommandLine.XPlat\Utility\MSBuildAPIUtility.cs @ 814]
00000018D077CBA0 00007ffcc5aee9c6 [FaultingExceptionFrame: 00000018d077cba0] 
00000018D077E100 00007ffd59d9274d NuGet.CommandLine.XPlat.MSBuildAPIUtility.GetResolvedVersions(Microsoft.Build.Evaluation.Project, System.Collections.Generic.IEnumerable`1<System.String>, NuGet.ProjectModel.LockFile, Boolean) [D:\a\_work\1\s\src\NuGet.Core\NuGet.CommandLine.XPlat\Utility\MSBuildAPIUtility.cs @ 802]
00000018D077E310 00007ffd59d9f7de NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__8.MoveNext() [D:\a\_work\1\s\src\NuGet.Core\NuGet.CommandLine.XPlat\Commands\PackageReferenceCommands\ListPackage\ListPackageCommandRunner.cs @ 113]
00000018D077E390 00007ffc66053dee System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start[[NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__8, NuGet.CommandLine.XPlat]](d__8 ByRef) [/_/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncMethodBuilderCore.cs @ 38]
00000018D077E460 00007ffc66053d3c System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start[[NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__8, NuGet.CommandLine.XPlat]](d__8 ByRef) [/_/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncTaskMethodBuilder.cs @ 33]
00000018D077E490 00007ffd59d82f86 NuGet.CommandLine.XPlat.ListPackageCommandRunner.GetProjectMetadataAsync(System.String, NuGet.CommandLine.XPlat.ListPackage.ListPackageReportModel, NuGet.CommandLine.XPlat.MSBuildAPIUtility, NuGet.CommandLine.XPlat.ListPackageArgs)
00000018D077E540 00007ffd59d9fd65 NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__7.MoveNext() [D:\a\_work\1\s\src\NuGet.Core\NuGet.CommandLine.XPlat\Commands\PackageReferenceCommands\ListPackage\ListPackageCommandRunner.cs @ 69]
00000018D077E600 00007ffc6604f5c0 System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start[[NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__7, NuGet.CommandLine.XPlat]](d__7 ByRef) [/_/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncMethodBuilderCore.cs @ 38]
00000018D077E6A0 00007ffc6604f520 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[[System.ValueTuple`2[[System.Int32, System.Private.CoreLib],[System.__Canon, System.Private.CoreLib]], System.Private.CoreLib]].Start[[NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__7, NuGet.CommandLine.XPlat]](d__7 ByRef) [/_/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncTaskMethodBuilderT.cs @ 35]
00000018D077E6D0 00007ffd59d82ee2 NuGet.CommandLine.XPlat.ListPackageCommandRunner.GetReportDataAsync(NuGet.CommandLine.XPlat.ListPackageArgs)
00000018D077E750 00007ffd59d9e807 NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__6.MoveNext() [D:\a\_work\1\s\src\NuGet.Core\NuGet.CommandLine.XPlat\Commands\PackageReferenceCommands\ListPackage\ListPackageCommandRunner.cs @ 39]
00000018D077E7B0 00007ffc6604f41b System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start[[NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__6, NuGet.CommandLine.XPlat]](d__6 ByRef) [/_/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncMethodBuilderCore.cs @ 38]
00000018D077E840 00007ffc6604f37c System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[[System.Int32, System.Private.CoreLib]].Start[[NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__6, NuGet.CommandLine.XPlat]](d__6 ByRef) [/_/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncTaskMethodBuilderT.cs @ 35]
00000018D077E870 00007ffd59d82e62 NuGet.CommandLine.XPlat.ListPackageCommandRunner.ExecuteCommandAsync(NuGet.CommandLine.XPlat.ListPackageArgs)
00000018D077E8E0 00007ffd59daaaf9 NuGet.CommandLine.XPlat.ListPackageCommand+c__DisplayClass0_1+<b__1>d.MoveNext() [D:\a\_work\1\s\src\NuGet.Core\NuGet.CommandLine.XPlat\Commands\PackageReferenceCommands\ListPackage\ListPackageCommand.cs @ 150]
00000018D077E9C0 00007ffc66044f06 System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start[[NuGet.CommandLine.XPlat.ListPackageCommand+c__DisplayClass0_1+<b__1>d, NuGet.CommandLine.XPlat]](<b__1>d ByRef) [/_/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncMethodBuilderCore.cs @ 38]
00000018D077EA40 00007ffc66044e7c System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[[System.Int32, System.Private.CoreLib]].Start[[NuGet.CommandLine.XPlat.ListPackageCommand+c__DisplayClass0_1+<b__1>d, NuGet.CommandLine.XPlat]](<b__1>d ByRef) [/_/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncTaskMethodBuilderT.cs @ 35]
00000018D077EA70 00007ffd59d9dfed NuGet.CommandLine.XPlat.ListPackageCommand+c__DisplayClass0_1.b__1()
00000018D077EAC0 00007ffd59daa41f Microsoft.Extensions.CommandLineUtils.CommandLineApplication+c__DisplayClass79_0.b__0() [C:\Users\cloudtest\.nuget\packages\microsoft.extensions.commandlineutils.sources\3.0.0-preview6.19253.5\contentFiles\cs\netstandard1.0\shared\CommandLine\CommandLineApplication.cs @ 123]
00000018D077EAF0 00007ffd59d98871 Microsoft.Extensions.CommandLineUtils.CommandLineApplication.Execute(System.String[]) [C:\Users\cloudtest\.nuget\packages\microsoft.extensions.commandlineutils.sources\3.0.0-preview6.19253.5\contentFiles\cs\netstandard1.0\shared\CommandLine\CommandLineApplication.cs @ 296]
00000018D077EC40 00007ffd59d8aac5 NuGet.CommandLine.XPlat.Program.MainInternal(System.String[], NuGet.CommandLine.XPlat.CommandOutputLogger) [D:\a\_work\1\s\src\NuGet.Core\NuGet.CommandLine.XPlat\Program.cs @ 159]
00000018D077ECC0 00007ffd59d8a655 NuGet.CommandLine.XPlat.Program.Main(System.String[]) [D:\a\_work\1\s\src\NuGet.Core\NuGet.CommandLine.XPlat\Program.cs @ 32]
0:000> !dso
OS Thread Id: 0x6ab8 (0)
          SP/REG           Object Name
    0018d0777e98     01ed3b1d2c38 System.NullReferenceException
    0018d0778368     01ed3b1d2c38 System.NullReferenceException
    0018d0778cd8     01ed3b1d2c38 System.NullReferenceException
    0018d0779f70     01ed38080ff8 System.String
    0018d077a010     01ed3b1d3248 System.InvalidOperationException
    0018d077a1a8     01ed3b1d3248 System.InvalidOperationException
    0018d077a1f8     01ed3b1d2c38 System.NullReferenceException
    0018d077a220     01ed3b1d3248 System.InvalidOperationException
    0018d077a228     01ed3b1d3248 System.InvalidOperationException
    0018d077a230     01ed3b1d3248 System.InvalidOperationException
    0018d077a2c0     01ed3b1d3248 System.InvalidOperationException
    0018d077a2c8     01ed3b1d3248 System.InvalidOperationException
    0018d077a2e8     01ed3b1d2c38 System.NullReferenceException
    0018d077a360     01ed3b1d3078 System.String
    0018d077a370     01ed3b1d3248 System.InvalidOperationException
    0018d077a378     01ed3b1d3078 System.String
    0018d077a3c0     01ed3b1d2c38 System.NullReferenceException
    0018d077a7d0     01ed38098858 Microsoft.Build.Evaluation.Project
    0018d077a7e8     01ed380538b8 NuGet.CommandLine.XPlat.MSBuildAPIUtility
    0018d077a818     01ed3a959a18 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_2
    0018d077a820     01ed3a951f38 System.Collections.Generic.List<NuGet.ProjectModel.TargetFrameworkInformation>
    0018d077a830     01ed3a9598d8 System.Collections.Generic.List<NuGet.CommandLine.XPlat.FrameworkPackages>
    0018d077ad30     01ed3855e628 System.String
    0018d077ad68     01ed3a92be80 NuGet.ProjectModel.LockFile
    0018d077aed0     01ed380537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    0018d077aef0     01ed3855e628 System.String
    0018d077af28     01ed3a92be80 NuGet.ProjectModel.LockFile
    0018d077b680     01ed380537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    0018d077b6a0     01ed3855e628 System.String
    0018d077b6d8     01ed3a92be80 NuGet.ProjectModel.LockFile
    0018d077cbd0     01ed38098858 Microsoft.Build.Evaluation.Project
    0018d077cc48     01ed3a956ef8 System.String
    0018d077cc50     01ed38098858 Microsoft.Build.Evaluation.Project
    0018d077cc68     01ed380538b8 NuGet.CommandLine.XPlat.MSBuildAPIUtility
    0018d077cc98     01ed3a959a18 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_2
    0018d077cca0     01ed3a951f38 System.Collections.Generic.List<NuGet.ProjectModel.TargetFrameworkInformation>
    0018d077ccb0     01ed3a9598d8 System.Collections.Generic.List<NuGet.CommandLine.XPlat.FrameworkPackages>
    0018d077d178     01ed3a951f38 System.Collections.Generic.List<NuGet.ProjectModel.TargetFrameworkInformation>
    0018d077d180     01ed3a959a18 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_2
    0018d077d380     01ed3a9598d8 System.Collections.Generic.List<NuGet.CommandLine.XPlat.FrameworkPackages>
    0018d077d390     01ed3a951f38 System.Collections.Generic.List<NuGet.ProjectModel.TargetFrameworkInformation>
    0018d077d398     01ed3a959a18 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_2
    0018d077d3a8     01ed380538b8 NuGet.CommandLine.XPlat.MSBuildAPIUtility
    0018d077d3d0     01ed38098858 Microsoft.Build.Evaluation.Project
    0018d077d448     01ed3a956ef8 System.String
    0018d077d450     01ed38098858 Microsoft.Build.Evaluation.Project
    0018d077d468     01ed380538b8 NuGet.CommandLine.XPlat.MSBuildAPIUtility
    0018d077d498     01ed3a959a18 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_2
    0018d077d4a0     01ed3a951f38 System.Collections.Generic.List<NuGet.ProjectModel.TargetFrameworkInformation>
    0018d077d4b0     01ed3a9598d8 System.Collections.Generic.List<NuGet.CommandLine.XPlat.FrameworkPackages>
    0018d077df20     01ed3b1d2b58 System.Linq.Enumerable+WhereEnumerableIterator<Microsoft.Build.Construction.ProjectItemElement>
    0018d077df38     01ed3a959a18 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_2
    0018d077df60     01ed3b1d2b58 System.Linq.Enumerable+WhereEnumerableIterator<Microsoft.Build.Construction.ProjectItemElement>
    0018d077df68     01ed3b1d2b58 System.Linq.Enumerable+WhereEnumerableIterator<Microsoft.Build.Construction.ProjectItemElement>
    0018d077df70     01ed3a9598d8 System.Collections.Generic.List<NuGet.CommandLine.XPlat.FrameworkPackages>
    0018d077df80     01ed3a951f38 System.Collections.Generic.List<NuGet.ProjectModel.TargetFrameworkInformation>
    0018d077df88     01ed3a959a18 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_2
    0018d077dfb8     01ed3b1d2b58 System.Linq.Enumerable+WhereEnumerableIterator<Microsoft.Build.Construction.ProjectItemElement>
    0018d077e000     01ed3b1d2ae0 Microsoft.Build.Construction.ProjectElementContainer+<GetDescendantsOfType>d__48<Microsoft.Build.Construction.ProjectItemElement>
    0018d077e010     01ed3a9598d8 System.Collections.Generic.List<NuGet.CommandLine.XPlat.FrameworkPackages>
    0018d077e020     01ed3a951f38 System.Collections.Generic.List<NuGet.ProjectModel.TargetFrameworkInformation>
    0018d077e028     01ed3a959a18 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_2
    0018d077e038     01ed380538b8 NuGet.CommandLine.XPlat.MSBuildAPIUtility
    0018d077e040     01ed38098858 Microsoft.Build.Evaluation.Project
    0018d077e0c0     01ed380538b8 NuGet.CommandLine.XPlat.MSBuildAPIUtility
    0018d077e0d8     01ed3a959a18 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_2
    0018d077e0e0     01ed3a951f38 System.Collections.Generic.List<NuGet.ProjectModel.TargetFrameworkInformation>
    0018d077e0f0     01ed38098858 Microsoft.Build.Evaluation.Project
    0018d077e100     01ed3b1d2c00 NuGet.CommandLine.XPlat.InstalledPackageReference
    0018d077e108     01ed3a956ef8 System.String
    0018d077e170     01ed38080eb0 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c
    0018d077e178     01ed3a959910 System.Func<NuGet.ProjectModel.LockFileTarget, System.Boolean>
    0018d077e1a8     01ed3b1d2c00 NuGet.CommandLine.XPlat.InstalledPackageReference
    0018d077e1b0     01ed3b1d2ac8 Microsoft.Build.Collections.ReadOnlyCollection<Microsoft.Build.Construction.ProjectItemElement>
    0018d077e1b8     01ed3b1d2b18 System.Func<Microsoft.Build.Construction.ProjectItemElement, System.Boolean>
    0018d077e1c0     01ed3b1d1aa8 System.Func<NuGet.CommandLine.XPlat.InstalledPackageReference, System.Boolean>
    0018d077e208     01ed3b1d1958 System.Func<NuGet.LibraryModel.LibraryDependency, System.Boolean>
    0018d077e210     01ed3b1d18f8 System.Collections.Generic.List<NuGet.CommandLine.XPlat.InstalledPackageReference>
    0018d077e218     01ed3b1d18c0 System.Collections.Generic.List<NuGet.CommandLine.XPlat.InstalledPackageReference>
    0018d077e220     01ed3a959a30 System.Func<NuGet.ProjectModel.TargetFrameworkInformation, System.Boolean>
    0018d077e228     01ed3a92be80 NuGet.ProjectModel.LockFile
    0018d077e240     01ed3b1d1b20 NuGet.CommandLine.XPlat.InstalledPackageReference
    0018d077e250     01ed3b1d1a90 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_4
    0018d077e258     01ed3b1d19e0 System.Collections.Generic.List<NuGet.LibraryModel.LibraryDependency>
    0018d077e260     01ed3b1d1940 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_3
    0018d077e268     01ed3b1d1918 System.Collections.Generic.List<NuGet.ProjectModel.LockFileTargetLibrary>+Enumerator
    0018d077e270     01ed3b1d18f8 System.Collections.Generic.List<NuGet.CommandLine.XPlat.InstalledPackageReference>
    0018d077e278     01ed3b1d18c0 System.Collections.Generic.List<NuGet.CommandLine.XPlat.InstalledPackageReference>
    0018d077e280     01ed3b1d1890 System.Linq.Enumerable+SelectArrayIterator<Microsoft.Build.Framework.ITaskItem, NuGet.CommandLine.XPlat.InstalledPackageReference>
    0018d077e288     01ed3a956d70 System.Collections.Generic.List<NuGet.LibraryModel.LibraryDependency>
    0018d077e290     01ed3a956d18 NuGet.ProjectModel.TargetFrameworkInformation
    0018d077e298     01ed3a9599f0 System.Collections.Generic.List<NuGet.ProjectModel.LockFileTarget>+Enumerator
    0018d077e2c0     01ed38080ff8 System.String
    0018d077e2c8     01ed380537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    0018d077e2d8     01ed3855e628 System.String
    0018d077e2f0     01ed3a92be80 NuGet.ProjectModel.LockFile
    0018d077e310     01ed380538b8 NuGet.CommandLine.XPlat.MSBuildAPIUtility
    0018d077e318     01ed38098858 Microsoft.Build.Evaluation.Project
    0018d077e320     01ed3804cc48 System.Collections.Generic.List<System.String>
    0018d077e328     01ed3a92be80 NuGet.ProjectModel.LockFile
    0018d077e3c0     01ed38080ff8 System.String
    0018d077e3c8     01ed38053858 NuGet.CommandLine.XPlat.ListPackage.ListPackageReportModel
    0018d077e3d0     01ed380538b8 NuGet.CommandLine.XPlat.MSBuildAPIUtility
    0018d077e3d8     01ed38053588 NuGet.CommandLine.XPlat.ListPackageArgs
    0018d077e3e0     01ed380537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    0018d077e438     01ed3804e980 System.Threading.Thread
    0018d077e4b8     01ed38080ff8 System.String
    0018d077e4c0     01ed38053858 NuGet.CommandLine.XPlat.ListPackage.ListPackageReportModel
    0018d077e4c8     01ed380538b8 NuGet.CommandLine.XPlat.MSBuildAPIUtility
    0018d077e4d0     01ed38053588 NuGet.CommandLine.XPlat.ListPackageArgs
    0018d077e4d8     01ed380537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    0018d077e4e0     01ed38098858 Microsoft.Build.Evaluation.Project
    0018d077e4e8     01ed3a9243b8 NuGet.CommandLine.XPlat.ListPackage.ListPackageProjectModel
    0018d077e518     01ed380537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    0018d077e560     01ed38053588 NuGet.CommandLine.XPlat.ListPackageArgs
    0018d077e630     01ed38053588 NuGet.CommandLine.XPlat.ListPackageArgs
    0018d077e638     01ed380537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    0018d077e688     01ed3804e980 System.Threading.Thread
    0018d077e6f0     01ed38053588 NuGet.CommandLine.XPlat.ListPackageArgs
    0018d077e6f8     01ed380537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    0018d077e700     01ed38053858 NuGet.CommandLine.XPlat.ListPackage.ListPackageReportModel
    0018d077e708     01ed380538b8 NuGet.CommandLine.XPlat.MSBuildAPIUtility
    0018d077e710     01ed38080f98 System.Linq.Enumerable+WhereEnumerableIterator<System.String>
    0018d077e730     01ed380537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    0018d077e7e0     01ed38053588 NuGet.CommandLine.XPlat.ListPackageArgs
    0018d077e7e8     01ed380537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    0018d077e828     01ed3804e980 System.Threading.Thread
    0018d077e850     01ed384f1370 Microsoft.Build.Construction.XmlAttributeWithLocation
    0018d077e880     01ed384f1370 Microsoft.Build.Construction.XmlAttributeWithLocation
    0018d077e898     01ed38053588 NuGet.CommandLine.XPlat.ListPackageArgs
    0018d077e8a0     01ed380537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    0018d077e8a8     01ed38053538 NuGet.CommandLine.XPlat.ListPackage.ListPackageConsoleRenderer
    0018d077e8f0     01ed384f1370 Microsoft.Build.Construction.XmlAttributeWithLocation
    0018d077e988     01ed3804c120 Microsoft.Extensions.CommandLineUtils.CommandLineApplication
    0018d077e9d0     01ed384aaf90 Microsoft.Build.Evaluation.StringExpressionNode
    0018d077e9f0     01ed3804c240 NuGet.CommandLine.XPlat.ListPackageCommand+<>c__DisplayClass0_1
    0018d077ea28     01ed3804e980 System.Threading.Thread
    0018d077ea90     01ed3804c240 NuGet.CommandLine.XPlat.ListPackageCommand+<>c__DisplayClass0_1
    0018d077eb28     01ed384c4758 Microsoft.Build.Construction.ProjectTaskElement
    0018d077eb38     01ed384c48c0 System.Object
    0018d077eb58     01ed384c1a20 Microsoft.Build.Construction.ElementLocation+SmallElementLocation
    0018d077eb88     01ed384c4740 System.Object
    0018d077ebb0     01ed3804c200 System.Collections.Generic.List<Microsoft.Extensions.CommandLineUtils.CommandLineApplication>
    0018d077ec20     01ed384c1a20 Microsoft.Build.Construction.ElementLocation+SmallElementLocation
    0018d077ec80     01ed38048398 NuGet.CommandLine.XPlat.Program+<>c__DisplayClass4_0
    0018d077ecc0     01ed3804e1b8 System.String[]
    0018d077efa0     01ed3800aa70 System.String[]
    0018d077f348     01ed3800aa70 System.String[]

The InvalidOperationException exception seems to be caused by a NullReferenceException.

@paulomorgado
Copy link
Author

If there are no package references, the cause is another:

0:000> !clrstack
OS Thread Id: 0x7124 (0)
        Child SP               IP Call Site
000000E8B657B3B8 00007ffda70ed574 [HelperMethodFrame: 000000e8b657b3b8] 
000000E8B657B4B0 00007ffd5a5e2d38 NuGet.CommandLine.XPlat.MSBuildAPIUtility.GetResolvedVersions(Microsoft.Build.Evaluation.Project, System.Collections.Generic.IEnumerable`1<System.String>, NuGet.ProjectModel.LockFile, Boolean) [D:\a\_work\1\s\src\NuGet.Core\NuGet.CommandLine.XPlat\Utility\MSBuildAPIUtility.cs @ 814]
000000E8B657DDC8 00007ffcc5aee9c6 [HelperMethodFrame: 000000e8b657ddc8] 
000000E8B657DEC0 00007ffc66b5dae8 System.Linq.ThrowHelper.ThrowNoElementsException() [/_/src/libraries/System.Linq/src/System/Linq/ThrowHelper.cs @ 24]
000000E8B657DF00 00007ffd09435747 System.Linq.Enumerable.First[[System.__Canon, System.Private.CoreLib]](System.Collections.Generic.IEnumerable`1<System.__Canon>) [/_/src/libraries/System.Linq/src/System/Linq/First.cs @ 16]
000000E8B657DF40 00007ffd5a5e264e NuGet.CommandLine.XPlat.MSBuildAPIUtility.GetResolvedVersions(Microsoft.Build.Evaluation.Project, System.Collections.Generic.IEnumerable`1<System.String>, NuGet.ProjectModel.LockFile, Boolean) [D:\a\_work\1\s\src\NuGet.Core\NuGet.CommandLine.XPlat\Utility\MSBuildAPIUtility.cs @ 794]
000000E8B657E150 00007ffd5a5ef7de NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__8.MoveNext() [D:\a\_work\1\s\src\NuGet.Core\NuGet.CommandLine.XPlat\Commands\PackageReferenceCommands\ListPackage\ListPackageCommandRunner.cs @ 113]
000000E8B657E1D0 00007ffc66093dee System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start[[NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__8, NuGet.CommandLine.XPlat]](d__8 ByRef) [/_/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncMethodBuilderCore.cs @ 38]
000000E8B657E2A0 00007ffc66093d3c System.Runtime.CompilerServices.AsyncTaskMethodBuilder.Start[[NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__8, NuGet.CommandLine.XPlat]](d__8 ByRef) [/_/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncTaskMethodBuilder.cs @ 33]
000000E8B657E2D0 00007ffd5a5d2f86 NuGet.CommandLine.XPlat.ListPackageCommandRunner.GetProjectMetadataAsync(System.String, NuGet.CommandLine.XPlat.ListPackage.ListPackageReportModel, NuGet.CommandLine.XPlat.MSBuildAPIUtility, NuGet.CommandLine.XPlat.ListPackageArgs)
000000E8B657E380 00007ffd5a5efd65 NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__7.MoveNext() [D:\a\_work\1\s\src\NuGet.Core\NuGet.CommandLine.XPlat\Commands\PackageReferenceCommands\ListPackage\ListPackageCommandRunner.cs @ 69]
000000E8B657E440 00007ffc6608f5c0 System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start[[NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__7, NuGet.CommandLine.XPlat]](d__7 ByRef) [/_/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncMethodBuilderCore.cs @ 38]
000000E8B657E4E0 00007ffc6608f520 System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[[System.ValueTuple`2[[System.Int32, System.Private.CoreLib],[System.__Canon, System.Private.CoreLib]], System.Private.CoreLib]].Start[[NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__7, NuGet.CommandLine.XPlat]](d__7 ByRef) [/_/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncTaskMethodBuilderT.cs @ 35]
000000E8B657E510 00007ffd5a5d2ee2 NuGet.CommandLine.XPlat.ListPackageCommandRunner.GetReportDataAsync(NuGet.CommandLine.XPlat.ListPackageArgs)
000000E8B657E590 00007ffd5a5ee807 NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__6.MoveNext() [D:\a\_work\1\s\src\NuGet.Core\NuGet.CommandLine.XPlat\Commands\PackageReferenceCommands\ListPackage\ListPackageCommandRunner.cs @ 39]
000000E8B657E5F0 00007ffc6608f41b System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start[[NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__6, NuGet.CommandLine.XPlat]](d__6 ByRef) [/_/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncMethodBuilderCore.cs @ 38]
000000E8B657E680 00007ffc6608f37c System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[[System.Int32, System.Private.CoreLib]].Start[[NuGet.CommandLine.XPlat.ListPackageCommandRunner+d__6, NuGet.CommandLine.XPlat]](d__6 ByRef) [/_/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncTaskMethodBuilderT.cs @ 35]
000000E8B657E6B0 00007ffd5a5d2e62 NuGet.CommandLine.XPlat.ListPackageCommandRunner.ExecuteCommandAsync(NuGet.CommandLine.XPlat.ListPackageArgs)
000000E8B657E720 00007ffd5a5faaf9 NuGet.CommandLine.XPlat.ListPackageCommand+c__DisplayClass0_1+<b__1>d.MoveNext() [D:\a\_work\1\s\src\NuGet.Core\NuGet.CommandLine.XPlat\Commands\PackageReferenceCommands\ListPackage\ListPackageCommand.cs @ 150]
000000E8B657E800 00007ffc66084f06 System.Runtime.CompilerServices.AsyncMethodBuilderCore.Start[[NuGet.CommandLine.XPlat.ListPackageCommand+c__DisplayClass0_1+<b__1>d, NuGet.CommandLine.XPlat]](<b__1>d ByRef) [/_/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncMethodBuilderCore.cs @ 38]
000000E8B657E880 00007ffc66084e7c System.Runtime.CompilerServices.AsyncTaskMethodBuilder`1[[System.Int32, System.Private.CoreLib]].Start[[NuGet.CommandLine.XPlat.ListPackageCommand+c__DisplayClass0_1+<b__1>d, NuGet.CommandLine.XPlat]](<b__1>d ByRef) [/_/src/libraries/System.Private.CoreLib/src/System/Runtime/CompilerServices/AsyncTaskMethodBuilderT.cs @ 35]
000000E8B657E8B0 00007ffd5a5edfed NuGet.CommandLine.XPlat.ListPackageCommand+c__DisplayClass0_1.b__1()
000000E8B657E900 00007ffd5a5fa41f Microsoft.Extensions.CommandLineUtils.CommandLineApplication+c__DisplayClass79_0.b__0() [C:\Users\cloudtest\.nuget\packages\microsoft.extensions.commandlineutils.sources\3.0.0-preview6.19253.5\contentFiles\cs\netstandard1.0\shared\CommandLine\CommandLineApplication.cs @ 123]
000000E8B657E930 00007ffd5a5e8871 Microsoft.Extensions.CommandLineUtils.CommandLineApplication.Execute(System.String[]) [C:\Users\cloudtest\.nuget\packages\microsoft.extensions.commandlineutils.sources\3.0.0-preview6.19253.5\contentFiles\cs\netstandard1.0\shared\CommandLine\CommandLineApplication.cs @ 296]
000000E8B657EA80 00007ffd5a5daac5 NuGet.CommandLine.XPlat.Program.MainInternal(System.String[], NuGet.CommandLine.XPlat.CommandOutputLogger) [D:\a\_work\1\s\src\NuGet.Core\NuGet.CommandLine.XPlat\Program.cs @ 159]
000000E8B657EB00 00007ffd5a5da655 NuGet.CommandLine.XPlat.Program.Main(System.String[]) [D:\a\_work\1\s\src\NuGet.Core\NuGet.CommandLine.XPlat\Program.cs @ 32]
0:000> !dso
OS Thread Id: 0x7124 (0)
          SP/REG           Object Name
    00e8b6578fd8     02d8ca57b5d8 System.InvalidOperationException
    00e8b65794a8     02d8ca57b5d8 System.InvalidOperationException
    00e8b6579e18     02d8ca57b5d8 System.InvalidOperationException
    00e8b657b0b0     02d8c7480ff8 System.String
    00e8b657b150     02d8ca57ce50 System.InvalidOperationException
    00e8b657b1c8     02d8ca57cb28 System.String
    00e8b657b2e8     02d8ca57ce50 System.InvalidOperationException
    00e8b657b338     02d8ca57b5d8 System.InvalidOperationException
    00e8b657b360     02d8ca57ce50 System.InvalidOperationException
    00e8b657b368     02d8ca57ce50 System.InvalidOperationException
    00e8b657b370     02d8ca57ce50 System.InvalidOperationException
    00e8b657b400     02d8ca57ce50 System.InvalidOperationException
    00e8b657b408     02d8ca57ce50 System.InvalidOperationException
    00e8b657b428     02d8ca57b5d8 System.InvalidOperationException
    00e8b657b4a0     02d8ca57cc80 System.String
    00e8b657b4b0     02d8ca57ce50 System.InvalidOperationException
    00e8b657b4b8     02d8ca57cc80 System.String
    00e8b657b500     02d8ca57b5d8 System.InvalidOperationException
    00e8b657b910     02d8c74537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    00e8b657b930     02d8c7957bb8 System.String
    00e8b657b968     02d8c9d05100 NuGet.ProjectModel.LockFile
    00e8b657be70     02d8c7957bb8 System.String
    00e8b657bea8     02d8c9d05100 NuGet.ProjectModel.LockFile
    00e8b657c010     02d8c74983e8 Microsoft.Build.Evaluation.Project
    00e8b657c028     02d8c74538b8 NuGet.CommandLine.XPlat.MSBuildAPIUtility
    00e8b657c058     02d8c9d32c98 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_2
    00e8b657c060     02d8c9d2b1b8 System.Collections.Generic.List<NuGet.ProjectModel.TargetFrameworkInformation>
    00e8b657c070     02d8c9d32b58 System.Collections.Generic.List<NuGet.CommandLine.XPlat.FrameworkPackages>
    00e8b657c250     02d8c9d32c98 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_2
    00e8b657c7c0     02d8c74537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    00e8b657c7e0     02d8c7957bb8 System.String
    00e8b657c818     02d8c9d05100 NuGet.ProjectModel.LockFile
    00e8b657cbc0     02d8c9d32c98 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_2
    00e8b657cdd0     02d8c9d2b1b8 System.Collections.Generic.List<NuGet.ProjectModel.TargetFrameworkInformation>
    00e8b657cdd8     02d8c9d32c98 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_2
    00e8b657ced8     02d8c9d32c98 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_2
    00e8b657cee0     02d8c9d2b1b8 System.Collections.Generic.List<NuGet.ProjectModel.TargetFrameworkInformation>
    00e8b657d430     02d8c9d2b1b8 System.Collections.Generic.List<NuGet.ProjectModel.TargetFrameworkInformation>
    00e8b657d438     02d8c9d32c98 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_2
    00e8b657d5f8     02d8c9d32c98 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_2
    00e8b657d600     02d8c9d2b1b8 System.Collections.Generic.List<NuGet.ProjectModel.TargetFrameworkInformation>
    00e8b657d8a8     02d8c7413a88 System.Text.UTF8Encoding+UTF8EncodingSealed
    00e8b657d930     02d8ca57bdd0 System.Reflection.RuntimeAssembly+ManifestResourceStream
    00e8b657da10     031959a635e0 System.String
    00e8b657da90     02d8ca57c790 System.Collections.Generic.Dictionary<System.String, System.Resources.ResourceLocator>+Entry[]
    00e8b657daa0     02d8ca57c790 System.Collections.Generic.Dictionary<System.String, System.Resources.ResourceLocator>+Entry[]
    00e8b657dab0     02d8ca57c790 System.Collections.Generic.Dictionary<System.String, System.Resources.ResourceLocator>+Entry[]
    00e8b657dad8     02d8c7413a88 System.Text.UTF8Encoding+UTF8EncodingSealed
    00e8b657db60     02d8ca57b5d8 System.InvalidOperationException
    00e8b657dc58     02d8ca57c218 System.Collections.Generic.Dictionary<System.String, System.Resources.ResourceLocator>
    00e8b657dc60     031959a635e0 System.String
    00e8b657dc70     031959a635e0 System.String
    00e8b657dcf8     02d8ca57b5d8 System.InvalidOperationException
    00e8b657dd40     02d8c9d32b58 System.Collections.Generic.List<NuGet.CommandLine.XPlat.FrameworkPackages>
    00e8b657dd70     02d8ca57b5d8 System.InvalidOperationException
    00e8b657dd78     02d8c74538b8 NuGet.CommandLine.XPlat.MSBuildAPIUtility
    00e8b657dd80     02d8ca57b5d8 System.InvalidOperationException
    00e8b657dda8     02d8ca57b658 System.Resources.ResourceManager
    00e8b657de10     02d8c74538b8 NuGet.CommandLine.XPlat.MSBuildAPIUtility
    00e8b657de18     02d8ca57b5d8 System.InvalidOperationException
    00e8b657de28     02d8c9d32c98 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_2
    00e8b657de30     02d8c9d2b1b8 System.Collections.Generic.List<NuGet.ProjectModel.TargetFrameworkInformation>
    00e8b657de40     02d8c9d32b58 System.Collections.Generic.List<NuGet.CommandLine.XPlat.FrameworkPackages>
    00e8b657deb0     02d8ca57b5a0 System.Linq.Enumerable+WhereEnumerableIterator<NuGet.CommandLine.XPlat.InstalledPackageReference>
    00e8b657dec0     02d8ca57b5d8 System.InvalidOperationException
    00e8b657dec8     02d8ca57c718 System.String
    00e8b657ded0     02d8ca57b8d0 System.Resources.ResourceManager+CultureNameResourceSetPair
    00e8b657dee0     02d8ca57c718 System.String
    00e8b657dee8     02d8ca57b5d8 System.InvalidOperationException
    00e8b657df08     02d8ca57b360 System.Linq.EmptyPartition<NuGet.CommandLine.XPlat.InstalledPackageReference>
    00e8b657df30     02d8c74983e8 Microsoft.Build.Evaluation.Project
    00e8b657df48     02d8ca57b5a0 System.Linq.Enumerable+WhereEnumerableIterator<NuGet.CommandLine.XPlat.InstalledPackageReference>
    00e8b657dfb0     02d8c7480eb0 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c
    00e8b657dfb8     02d8c9d32b90 System.Func<NuGet.ProjectModel.LockFileTarget, System.Boolean>
    00e8b657e000     02d8ca57b560 System.Func<NuGet.CommandLine.XPlat.InstalledPackageReference, System.Boolean>
    00e8b657e048     02d8ca57b410 System.Func<NuGet.LibraryModel.LibraryDependency, System.Boolean>
    00e8b657e050     02d8ca57b3b0 System.Collections.Generic.List<NuGet.CommandLine.XPlat.InstalledPackageReference>
    00e8b657e058     02d8ca57b378 System.Collections.Generic.List<NuGet.CommandLine.XPlat.InstalledPackageReference>
    00e8b657e060     02d8c9d32cb0 System.Func<NuGet.ProjectModel.TargetFrameworkInformation, System.Boolean>
    00e8b657e068     02d8c9d05100 NuGet.ProjectModel.LockFile
    00e8b657e078     02d8c9d05100 NuGet.ProjectModel.LockFile
    00e8b657e090     02d8ca57b548 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_4
    00e8b657e098     02d8ca57b498 System.Collections.Generic.List<NuGet.LibraryModel.LibraryDependency>
    00e8b657e0a0     02d8ca57b3f8 NuGet.CommandLine.XPlat.MSBuildAPIUtility+<>c__DisplayClass44_3
    00e8b657e0a8     02d8ca57b3d0 System.Collections.Generic.List<NuGet.ProjectModel.LockFileTargetLibrary>+Enumerator
    00e8b657e0b0     02d8ca57b3b0 System.Collections.Generic.List<NuGet.CommandLine.XPlat.InstalledPackageReference>
    00e8b657e0b8     02d8ca57b378 System.Collections.Generic.List<NuGet.CommandLine.XPlat.InstalledPackageReference>
    00e8b657e0c0     02d8ca57b360 System.Linq.EmptyPartition<NuGet.CommandLine.XPlat.InstalledPackageReference>
    00e8b657e0c8     02d8c9d2fff0 System.Collections.Generic.List<NuGet.LibraryModel.LibraryDependency>
    00e8b657e0d0     02d8c9d2ff98 NuGet.ProjectModel.TargetFrameworkInformation
    00e8b657e0d8     02d8c9d32c70 System.Collections.Generic.List<NuGet.ProjectModel.LockFileTarget>+Enumerator
    00e8b657e100     02d8c7480ff8 System.String
    00e8b657e108     02d8c74537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    00e8b657e118     02d8c7957bb8 System.String
    00e8b657e130     02d8c9d05100 NuGet.ProjectModel.LockFile
    00e8b657e150     02d8c74538b8 NuGet.CommandLine.XPlat.MSBuildAPIUtility
    00e8b657e158     02d8c74983e8 Microsoft.Build.Evaluation.Project
    00e8b657e160     02d8c744cc48 System.Collections.Generic.List<System.String>
    00e8b657e168     02d8c9d05100 NuGet.ProjectModel.LockFile
    00e8b657e1b8     02d8c79601f0 System.Xml.XmlName
    00e8b657e1f8     02d8c79602a8 Microsoft.Build.Construction.ElementLocation+SmallElementLocation
    00e8b657e200     02d8c7480ff8 System.String
    00e8b657e208     02d8c7453858 NuGet.CommandLine.XPlat.ListPackage.ListPackageReportModel
    00e8b657e210     02d8c74538b8 NuGet.CommandLine.XPlat.MSBuildAPIUtility
    00e8b657e218     02d8c7453588 NuGet.CommandLine.XPlat.ListPackageArgs
    00e8b657e220     02d8c74537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    00e8b657e278     02d8c744e980 System.Threading.Thread
    00e8b657e280     02d8c79602a8 Microsoft.Build.Construction.ElementLocation+SmallElementLocation
    00e8b657e2f8     02d8c7480ff8 System.String
    00e8b657e300     02d8c7453858 NuGet.CommandLine.XPlat.ListPackage.ListPackageReportModel
    00e8b657e308     02d8c74538b8 NuGet.CommandLine.XPlat.MSBuildAPIUtility
    00e8b657e310     02d8c7453588 NuGet.CommandLine.XPlat.ListPackageArgs
    00e8b657e318     02d8c74537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    00e8b657e320     02d8c74983e8 Microsoft.Build.Evaluation.Project
    00e8b657e328     02d8c9cfd650 NuGet.CommandLine.XPlat.ListPackage.ListPackageProjectModel
    00e8b657e358     02d8c74537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    00e8b657e388     02d8c79602a8 Microsoft.Build.Construction.ElementLocation+SmallElementLocation
    00e8b657e3a0     02d8c7453588 NuGet.CommandLine.XPlat.ListPackageArgs
    00e8b657e470     02d8c7453588 NuGet.CommandLine.XPlat.ListPackageArgs
    00e8b657e478     02d8c74537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    00e8b657e4c8     02d8c744e980 System.Threading.Thread
    00e8b657e530     02d8c7453588 NuGet.CommandLine.XPlat.ListPackageArgs
    00e8b657e538     02d8c74537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    00e8b657e540     02d8c7453858 NuGet.CommandLine.XPlat.ListPackage.ListPackageReportModel
    00e8b657e548     02d8c74538b8 NuGet.CommandLine.XPlat.MSBuildAPIUtility
    00e8b657e550     02d8c7480f98 System.Linq.Enumerable+WhereEnumerableIterator<System.String>
    00e8b657e570     02d8c74537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    00e8b657e620     02d8c7453588 NuGet.CommandLine.XPlat.ListPackageArgs
    00e8b657e628     02d8c74537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    00e8b657e668     02d8c744e980 System.Threading.Thread
    00e8b657e6d8     02d8c7453588 NuGet.CommandLine.XPlat.ListPackageArgs
    00e8b657e6e0     02d8c74537c0 NuGet.CommandLine.XPlat.ListPackageCommandRunner
    00e8b657e6e8     02d8c7453538 NuGet.CommandLine.XPlat.ListPackage.ListPackageConsoleRenderer
    00e8b657e7c0     02d8c78bc090 Microsoft.Build.Construction.ElementLocation+SmallElementLocation
    00e8b657e7c8     02d8c744c120 Microsoft.Extensions.CommandLineUtils.CommandLineApplication
    00e8b657e830     02d8c744c240 NuGet.CommandLine.XPlat.ListPackageCommand+<>c__DisplayClass0_1
    00e8b657e868     02d8c744e980 System.Threading.Thread
    00e8b657e8d0     02d8c744c240 NuGet.CommandLine.XPlat.ListPackageCommand+<>c__DisplayClass0_1
    00e8b657e998     02d8c78c1a20 Microsoft.Build.Construction.XmlElementWithLocation
    00e8b657e9f0     02d8c744c200 System.Collections.Generic.List<Microsoft.Extensions.CommandLineUtils.CommandLineApplication>
    00e8b657ea60     02d8c78c1a20 Microsoft.Build.Construction.XmlElementWithLocation
    00e8b657ea80     02d8c78bc090 Microsoft.Build.Construction.ElementLocation+SmallElementLocation
    00e8b657eac0     02d8c7448398 NuGet.CommandLine.XPlat.Program+<>c__DisplayClass4_0
    00e8b657eb00     02d8c744e1b8 System.String[]
    00e8b657ede0     02d8c740aa70 System.String[]
    00e8b657efe0     02d8c780b6f8 System.Xml.XmlAttributeCollection
    00e8b657f188     02d8c740aa70 System.String[]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Product:dotnet.exe Type:Bug WaitingForClientTeam Customer replied, needs attention from client team. Do not apply this label manually.
Projects
None yet
Development

No branches or pull requests

3 participants