PowerShell / PowerShellGetv2

PowerShellGet is the Package Manager for PowerShell
https://www.PowerShellGallery.com
MIT License
431 stars 138 forks source link

Find-Module fails to find freshly published module #524

Closed GregoryOtt closed 5 years ago

GregoryOtt commented 5 years ago

Steps to reproduce

  1. Create an Artifact Repo on Azure DevOps Server image
  2. Register repo with Register-PSRepository [Success]
    
    > Register-PSRepository -Name Test -SourceLocation "http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json" -PublishLocation "http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json" -InstallationPolicy Trusted
    > Get-PSRepository -Name Test

Name InstallationPolicy SourceLocation


Test Trusted http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json

3. Publish dummy module to the repo with Pusblish-Module **[Success]**
```powershell
> Publish-Module -Path C:\Temp\TestModule\ -Repository Test -NuGetApiKey Plop
  1. List modules of the repo [Success]
    
    > Find-Module -Repository Test

Version Name Repository Description


1.0.15 TestModule Test Test Module

5. Try list module TestModule with wildcard **[Success]**
```powershell
> Find-Module -Repository Test -Name *TestModule

OR

> Find-Module -Repository Test -Name TestModule*

Version              Name                                Repository           Description
-------              ----                                ----------           -----------
1.0.15               TestModule                          Test                 Test Module
  1. Try list module TestModule without wildcard [Fail]
    
    > Find-Module -Repository Test -Name TestModule -Debug

DÉBOGUER : 00:00:00.0000401 Verbose: False DÉBOGUER : 00:00:00.0000641 Name: Test DÉBOGUER : 00:00:00.0001012 ErrorVariable: ev DÉBOGUER : 00:00:00.0028632 INVOKING PowerShell Fn Resolve-PackageSource with args that has length 0 DÉBOGUER : 00:00:00.0045520 In PowerShellGet Provider - 'Resolve-PackageSource'. DÉBOGUER : 00:00:00.0071045 Yielding package source for Test at location http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json DÉBOGUER : 00:00:00.0146881 Done calling powershell «Resolve-PackageSource» «PSModule» DÉBOGUER : 00:00:00.0242550 Calling New() : MethodName = 'GetDynamicOptions' DÉBOGUER : 00:00:00.0243207 Verbose: False DÉBOGUER : 00:00:00.0244751 Name: Test DÉBOGUER : 00:00:00.0245177 ErrorVariable: ev DÉBOGUER : 00:00:00.0270194 INVOKING PowerShell Fn Get-DynamicOptions with args Provider that has length 1 DÉBOGUER : 00:00:00.0289177 In PowerShellGet Provider - 'Get-DynamicOptions'. DÉBOGUER : 00:00:00.0344788 Done calling powershell «Get-DynamicOptions» «PSModule» DÉBOGUER : 00:00:00.0391187 Calling New() : MethodName = 'GetDynamicOptions' DÉBOGUER : 00:00:00.0391467 Verbose: False DÉBOGUER : 00:00:00.0391664 Name: Test DÉBOGUER : 00:00:00.0391857 ErrorVariable: ev DÉBOGUER : 00:00:00.0409092 INVOKING PowerShell Fn Get-DynamicOptions with args Source that has length 1 DÉBOGUER : 00:00:00.0426862 In PowerShellGet Provider - 'Get-DynamicOptions'. DÉBOGUER : 00:00:00.0533945 Done calling powershell «Get-DynamicOptions» «PSModule» DÉBOGUER : 00:00:01.3420121 Calling New() : MethodName = 'ResolvePackageSources' DÉBOGUER : 00:00:01.3470730 MessageResolver: Microsoft.PowerShell.PackageManagement.Cmdlets.GetMessageString DÉBOGUER : 00:00:01.3493179 ProviderName: PowerShellGet DÉBOGUER : 00:00:01.3516523 Verbose: False DÉBOGUER : 00:00:01.3541201 Name: Test DÉBOGUER : 00:00:01.3611365 ErrorVariable: ev DÉBOGUER : 00:00:01.3641297 INVOKING PowerShell Fn Resolve-PackageSource with args that has length 0 DÉBOGUER : 00:00:01.3667224 In PowerShellGet Provider - 'Resolve-PackageSource'. DÉBOGUER : 00:00:01.3704052 Yielding package source for Test at location http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json DÉBOGUER : 00:00:01.3813345 Done calling powershell «Resolve-PackageSource» «PSModule» DÉBOGUER : 00:00:01.3867629 Calling New() : MethodName = 'ResolvePackageSources' DÉBOGUER : 00:00:01.3934768 MessageResolver: Microsoft.PowerShell.PackageManagement.Cmdlets.GetMessageString DÉBOGUER : 00:00:01.3958985 ProviderName: PowerShellGet DÉBOGUER : 00:00:01.3979048 Verbose: False DÉBOGUER : 00:00:01.4095937 Name: Test DÉBOGUER : 00:00:01.4120706 ErrorVariable: ev DÉBOGUER : 00:00:01.4156381 INVOKING PowerShell Fn Resolve-PackageSource with args that has length 0 DÉBOGUER : 00:00:01.4247288 In PowerShellGet Provider - 'Resolve-PackageSource'. DÉBOGUER : 00:00:01.4296779 Yielding package source for Test at location http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json DÉBOGUER : 00:00:01.4446523 Done calling powershell «Resolve-PackageSource» «PSModule» DÉBOGUER : 00:00:00.0000003 Calling New() : MethodName = 'ResolvePackageSources' DÉBOGUER : 00:00:00.0000382 Debug: True DÉBOGUER : 00:00:00.0000590 Source: Test DÉBOGUER : 00:00:00.0000783 Name: TestModule DÉBOGUER : 00:00:00.0029857 INVOKING PowerShell Fn Resolve-PackageSource with args that has length 0 DÉBOGUER : 00:00:00.0050278 In PowerShellGet Provider - 'Resolve-PackageSource'. DÉBOGUER : 00:00:00.0076929 Yielding package source for Test at location http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json DÉBOGUER : 00:00:00.0168089 Done calling powershell «Resolve-PackageSource» «PSModule» DÉBOGUER : 00:00:00.0209467 Calling New() : MethodName = 'GetDynamicOptions' DÉBOGUER : 00:00:00.0209746 Debug: True DÉBOGUER : 00:00:00.0209951 Source: Test DÉBOGUER : 00:00:00.0210144 Name: TestModule DÉBOGUER : 00:00:00.0226823 INVOKING PowerShell Fn Get-DynamicOptions with args Provider that has length 1 DÉBOGUER : 00:00:00.0247004 In PowerShellGet Provider - 'Get-DynamicOptions'. DÉBOGUER : 00:00:00.0296132 Done calling powershell «Get-DynamicOptions» «PSModule» DÉBOGUER : 00:00:00.0341953 Calling New() : MethodName = 'GetDynamicOptions' DÉBOGUER : 00:00:00.0342291 Debug: True DÉBOGUER : 00:00:00.0342496 Source: Test DÉBOGUER : 00:00:00.0342685 Name: TestModule DÉBOGUER : 00:00:00.0364315 INVOKING PowerShell Fn Get-DynamicOptions with args Source that has length 1 DÉBOGUER : 00:00:00.0382231 In PowerShellGet Provider - 'Get-DynamicOptions'. DÉBOGUER : 00:00:00.0487475 Done calling powershell «Get-DynamicOptions» «PSModule» DÉBOGUER : 00:00:00.0547107 Calling New() : MethodName = 'GetDynamicOptions' DÉBOGUER : 00:00:00.0547406 Debug: True DÉBOGUER : 00:00:00.0547607 Source: Test DÉBOGUER : 00:00:00.0547804 Name: TestModule DÉBOGUER : 00:00:00.0564129 INVOKING PowerShell Fn Get-DynamicOptions with args Package that has length 1 DÉBOGUER : 00:00:00.0581750 In PowerShellGet Provider - 'Get-DynamicOptions'. DÉBOGUER : 00:00:00.0795545 Done calling powershell «Get-DynamicOptions» «PSModule» DÉBOGUER : 00:00:01.6408118 Calling New() : MethodName = 'ResolvePackageSources' DÉBOGUER : 00:00:01.6428346 ProviderName: PowerShellGet DÉBOGUER : 00:00:01.6452122 Type: Module DÉBOGUER : 00:00:01.6473544 Source: Test DÉBOGUER : 00:00:01.6497131 MessageResolver: Microsoft.PowerShell.PackageManagement.Cmdlets.GetMessageString DÉBOGUER : 00:00:01.6562116 Debug: True DÉBOGUER : 00:00:01.6586310 Name: TestModule DÉBOGUER : 00:00:01.6631129 INVOKING PowerShell Fn Resolve-PackageSource with args that has length 0 DÉBOGUER : 00:00:01.6663693 In PowerShellGet Provider - 'Resolve-PackageSource'. COMMENTAIRES : Repository details, Name = 'Test', Location = 'http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json'; IsTrusted = 'True'; IsRegistered = 'True'. DÉBOGUER : 00:00:03.9523288 Yielding package source for Test at location http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json DÉBOGUER : 00:00:03.9617732 Done calling powershell «Resolve-PackageSource» «PSModule» DÉBOGUER : 00:00:03.9619320 Calling SearchForPackages. Name='TestModule' COMMENTAIRES : Using the provider 'PowerShellGet' for searching packages. DÉBOGUER : 00:00:03.9631686 PackageProvider::FindPackage with name TestModule DÉBOGUER : 00:00:03.9647948 Calling SearchForPackages After Select 1 DÉBOGUER : 00:00:03.9730542 Calling New() : MethodName = 'FindPackage' DÉBOGUER : 00:00:03.9757894 ProviderName: PowerShellGet DÉBOGUER : 00:00:03.9778819 Type: Module DÉBOGUER : 00:00:03.9863997 Source: Test DÉBOGUER : 00:00:03.9885197 MessageResolver: Microsoft.PowerShell.PackageManagement.Cmdlets.GetMessageString DÉBOGUER : 00:00:03.9908942 Debug: True DÉBOGUER : 00:00:03.9934515 Name: TestModule DÉBOGUER : 00:00:04.0006695 INVOKING PowerShell Fn Find-Package with args System.String[], , , that has length 4 DÉBOGUER : 00:00:04.0039108 In PowerShellGet Provider - 'Find-Package'. DÉBOGUER : 00:00:04.0063692 OPTION: ProviderName => PowerShellGet DÉBOGUER : 00:00:04.0090234 OPTION: Type => Module DÉBOGUER : 00:00:04.0165840 OPTION: Source => Test DÉBOGUER : 00:00:04.0190298 OPTION: MessageResolver => Microsoft.PowerShell.PackageManagement.Cmdlets.GetMessageString DÉBOGUER : 00:00:04.0217840 OPTION: Debug => True DÉBOGUER : 00:00:04.0247689 OPTION: Name => TestModule COMMENTAIRES : Using the specified source names : 'Test'. COMMENTAIRES : Getting the provider object for the PackageManagement Provider 'NuGet'. COMMENTAIRES : The specified Location is 'http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json' and PackageManagementProvider is 'NuGet'. DÉBOGUER : 00:00:04.0491701 PackageProvider::FindPackage with name TestModule DÉBOGUER : 00:00:04.0535587 Calling 'NuGet'::'FindPackage' - name='TestModule', requiredVersion='',minimumVersion='', maximumVersion='''. DÉBOGUER : 00:00:04.0555902 Iterating 'TestModule'. DÉBOGUER : 00:00:04.0624632 There are '1' registered sources in 'NuGet' provider. DÉBOGUER : 00:00:04.0658743 Source 'http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json' is not one of the registered sources in 'NuGet' provider. DÉBOGUER : 00:00:04.0688514 Source 'http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json' is validated. DÉBOGUER : 00:00:04.0711640 Calling 'NuGetRequest'::'GetPackageById', 'TestModule'. DÉBOGUER : 00:00:04.0797211 Calling 'NuGetPackageRepository'::'FindPackagesById', 'TestModule'. DÉBOGUER : 00:00:04.0819184 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'. DÉBOGUER : 00:00:04.0842728 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'. DÉBOGUER : 00:00:04.0863704 Returning the call 'NuGetPackageFeed3'::'FindImpl'. DÉBOGUER : 00:00:04.0888631 Returning the call 'NuGetPackageFeed3'::'Find'. DÉBOGUER : 00:00:04.0976588 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'. DÉBOGUER : 00:00:04.0999337 Downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'. DÉBOGUER : 00:00:04.1782425 Completed downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'. DÉBOGUER : 00:00:04.2186878 Calling 'NuGetFilesFeed3'::'GetVersionInfo'. DÉBOGUER : 00:00:04.2213073 Downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/flat2/testmodule/index.json'. DÉBOGUER : 00:00:04.2815602 Completed downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/flat2/testmodule/index.json'. DÉBOGUER : 00:00:04.2859008 Returning the call 'NuGetFilesFeed3'::'GetVersionInfo'. DÉBOGUER : 00:00:04.2878334 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'. DÉBOGUER : 00:00:04.2902560 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'. DÉBOGUER : 00:00:04.2971384 Returning the call 'NuGetPackageFeed3'::'FindImpl'. DÉBOGUER : 00:00:04.2992490 Returning the call 'NuGetPackageFeed3'::'Find'. DÉBOGUER : 00:00:04.3015912 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.json'. DÉBOGUER : 00:00:04.3039224 Downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.json'. DÉBOGUER : 00:00:04.3644763 Completed downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.json'. DÉBOGUER : 00:00:04.4105232 Downloading 'http://tfs:8080/tfs/TPC/_apis/packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/commitLog/639bf6b007224c7db06e21f70f15647d'. COMMENTAIRES : Retry downloading 'http://tfs:8080/tfs/TPC/_apis/packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/commitLog/639bf6b007224c7db06e21f70f15647d' for '2' more times COMMENTAIRES : Retry downloading 'http://tfs:8080/tfs/TPC/_apis/packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/commitLog/639bf6b007224c7db06e21f70f15647d' for '1' more times COMMENTAIRES : Retry downloading 'http://tfs:8080/tfs/TPC/_apis/packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/commitLog/639bf6b007224c7db06e21f70f15647d' for '0' more times DÉBOGUER : 00:00:04.6406227 Could not get response from query 'http://tfs:8080/tfs/TPC/_apis/packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/commitLog/639bf6b007224c7db06e21f70f15647d'. AVERTISSEMENT : Could not get response from query 'http://tfs:8080/tfs/TPC/_apis/packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/commitLog/639bf6b007224c7db06e21f70f15647d'. DÉBOGUER : 00:00:08.7215424 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'. DÉBOGUER : 00:00:08.7289274 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'. DÉBOGUER : 00:00:08.7316209 Returning the call 'NuGetPackageFeed3'::'FindImpl'. DÉBOGUER : 00:00:08.7341750 Returning the call 'NuGetPackageFeed3'::'Find'. DÉBOGUER : 00:00:08.7377393 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'. DÉBOGUER : 00:00:08.7399472 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'. DÉBOGUER : 00:00:08.7423847 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'. DÉBOGUER : 00:00:08.7448648 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'. DÉBOGUER : 00:00:08.7547228 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'. DÉBOGUER : 00:00:08.7568763 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'. DÉBOGUER : 00:00:08.7593122 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'. DÉBOGUER : 00:00:08.7687949 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'. DÉBOGUER : 00:00:08.7721698 Returning the call 'NuGetPackageFeed3'::'FindImpl'. DÉBOGUER : 00:00:08.7755371 Returning the call 'NuGetPackageFeed3'::'Find'. DÉBOGUER : 00:00:08.7854321 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'. DÉBOGUER : 00:00:08.7933634 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'. DÉBOGUER : 00:00:08.7992297 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'. DÉBOGUER : 00:00:08.8021832 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'. DÉBOGUER : 00:00:08.8050299 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'. DÉBOGUER : 00:00:08.8072248 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'. DÉBOGUER : 00:00:08.8159588 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'. DÉBOGUER : 00:00:08.8187740 Downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'. DÉBOGUER : 00:00:08.8865518 Completed downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'. DÉBOGUER : 00:00:08.9314124 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'. DÉBOGUER : 00:00:08.9366986 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'. DÉBOGUER : 00:00:08.9399510 Returning the call 'NuGetPackageFeed3'::'FindImpl'. DÉBOGUER : 00:00:08.9427950 Returning the call 'NuGetPackageFeed3'::'Find'. DÉBOGUER : 00:00:08.9455590 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.json'. DÉBOGUER : 00:00:08.9478583 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.0.json'. DÉBOGUER : 00:00:08.9564701 Downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.0.json'. DÉBOGUER : 00:00:09.0230699 Completed downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.0.json'. DÉBOGUER : 00:00:09.0727300 Downloading 'http://tfs:8080/tfs/TPC/_apis/packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/commitLog/639bf6b007224c7db06e21f70f15647d'. COMMENTAIRES : Retry downloading 'http://tfs:8080/tfs/TPC/_apis/packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/commitLog/639bf6b007224c7db06e21f70f15647d' for '2' more times COMMENTAIRES : Retry downloading 'http://tfs:8080/tfs/TPC/_apis/packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/commitLog/639bf6b007224c7db06e21f70f15647d' for '1' more times COMMENTAIRES : Retry downloading 'http://tfs:8080/tfs/TPC/_apis/packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/commitLog/639bf6b007224c7db06e21f70f15647d' for '0' more times DÉBOGUER : 00:00:09.3317331 Could not get response from query 'http://tfs:8080/tfs/TPC/_apis/packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/commitLog/639bf6b007224c7db06e21f70f15647d'. DÉBOGUER : 00:00:09.3362777 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'. DÉBOGUER : 00:00:09.3389732 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'. DÉBOGUER : 00:00:09.3468958 Returning the call 'NuGetPackageFeed3'::'FindImpl'. DÉBOGUER : 00:00:09.3499276 Returning the call 'NuGetPackageFeed3'::'Find'. DÉBOGUER : 00:00:09.3529866 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'. DÉBOGUER : 00:00:09.3615713 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'. DÉBOGUER : 00:00:09.3650395 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'. DÉBOGUER : 00:00:09.3675132 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'. DÉBOGUER : 00:00:09.3705647 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'. DÉBOGUER : 00:00:09.3782444 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'. DÉBOGUER : 00:00:09.3811395 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'. DÉBOGUER : 00:00:09.3841292 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'. DÉBOGUER : 00:00:09.3929096 Returning the call 'NuGetPackageFeed3'::'FindImpl'. DÉBOGUER : 00:00:09.3964341 Returning the call 'NuGetPackageFeed3'::'Find'. DÉBOGUER : 00:00:09.3995089 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'. DÉBOGUER : 00:00:09.4098840 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'. DÉBOGUER : 00:00:09.4125574 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'. DÉBOGUER : 00:00:09.4151403 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'. DÉBOGUER : 00:00:09.4230329 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'. DÉBOGUER : 00:00:09.4258533 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'. DÉBOGUER : 00:00:09.4282987 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'. DÉBOGUER : 00:00:09.4311359 Downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'. DÉBOGUER : 00:00:09.5015568 Completed downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'. DÉBOGUER : 00:00:09.5437409 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'. DÉBOGUER : 00:00:09.5480551 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'. DÉBOGUER : 00:00:09.5515166 Returning the call 'NuGetPackageFeed3'::'FindImpl'. DÉBOGUER : 00:00:09.5545161 Returning the call 'NuGetPackageFeed3'::'Find'. DÉBOGUER : 00:00:09.5585732 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.json'. DÉBOGUER : 00:00:09.5668971 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.0.json'. DÉBOGUER : 00:00:09.5707410 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.json'. DÉBOGUER : 00:00:09.5733534 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.0.json'. DÉBOGUER : 00:00:09.5818936 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.json'. DÉBOGUER : 00:00:09.5847943 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.0.json'. DÉBOGUER : 00:00:09.5884712 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'. DÉBOGUER : 00:00:09.5976738 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'. DÉBOGUER : 00:00:09.5999365 Returning the call 'NuGetPackageFeed3'::'FindImpl'. DÉBOGUER : 00:00:09.6029801 Returning the call 'NuGetPackageFeed3'::'Find'. DÉBOGUER : 00:00:09.6106629 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'. DÉBOGUER : 00:00:09.6132634 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'. DÉBOGUER : 00:00:09.6165091 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'. DÉBOGUER : 00:00:09.6196189 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'. DÉBOGUER : 00:00:09.6292725 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'. DÉBOGUER : 00:00:09.6333791 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'. DÉBOGUER : 00:00:09.6438929 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'. DÉBOGUER : 00:00:09.6474761 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'. DÉBOGUER : 00:00:09.6505252 Returning the call 'NuGetPackageFeed3'::'FindImpl'. DÉBOGUER : 00:00:09.6611031 Returning the call 'NuGetPackageFeed3'::'Find'. DÉBOGUER : 00:00:09.6633819 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'. DÉBOGUER : 00:00:09.6670979 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'. DÉBOGUER : 00:00:09.6757979 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'. DÉBOGUER : 00:00:09.6785320 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'. DÉBOGUER : 00:00:09.6817879 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'. DÉBOGUER : 00:00:09.6911887 Calling 'NuGetPackageFeed3'::'Find', 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'. DÉBOGUER : 00:00:09.6943138 System.ArgumentNullException: La valeur ne peut pas être null. Nom du paramètre : source à System.Linq.Enumerable.Where[TSource](IEnumerable1 source, Func2 predicate) à Microsoft.PackageManagement.NuGetProvider.NuGetRequest.GetPackageById(PackageSource source, String name, NuGetRequest request, String requiredVersion, String minimumVersion, String maximumVersion, Boolean minInclusive, Boolean maxInclusive, Boolean isDependency) COMMENTAIRES : Total package yield:'0' for the specified package 'TestModule'. DÉBOGUER : 00:00:09.7118908 Completed iterating for 'TestModule'. DÉBOGUER : 00:00:09.7217830 Calling 'NuGetRequest'::'FindRegisteredSource', 'http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json'. DÉBOGUER : 00:00:09.7248976 PowerShell Script 'PSModule' Function 'Find-Package' returns null. DÉBOGUER : 00:00:09.7299746 Done calling powershell «Find-Package» «PSModule» DÉBOGUER : 00:00:09.7382529 unmatched package name='TestModule' PackageManagement\Find-Package : No match was found for the specified search criteria and module name 'TestModule'. Try Get-PSRepository to see all available registered module repositories. Au caractère C:\Program Files\WindowsPowerShell\Modules\PowerShellGet\2.2\PSModule.psm1:8871 : 9

I've also tried to pipe install, but it fails too as it can't find the TestModule module

Find-Module -Name TestModule* -Repository Test | Select-Object -First 1 | Install-Module -Debug

Expected behavior

I can list and install the published module

Actual behavior

The module can't be listed by its name and thus can't be installed

Environment data

Azure DevOps Server version: 17.143.28912.1 Nuget feed returns

{
    "@context": {
        "@vocab": "http://schema.nuget.org/services#",
        "comment": "http://www.w3.org/2000/01/rdf-schema#comment",
        "label": "http://www.w3.org/2000/01/rdf-schema#label"
    },
    "resources": [
        {
            "@id": "http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v2/",
            "@type": "PackagePublish/2.0.0"
        },
        {
            "@id": "http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v2/",
            "@type": "LegacyGallery/2.0.0"
        },
        {
            "@id": "http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2/",
            "@type": "RegistrationsBaseUrl/3.0.0-beta"
        },
        {
            "@id": "http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/",
            "@type": "RegistrationsBaseUrl/3.6.0",
            "comment": "This base URL includes SemVer 2.0.0 packages."
        },
        {
            "@id": "http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/",
            "@type": "RegistrationsBaseUrl/Versioned",
            "comment": "This base URL includes SemVer 2.0.0 packages."
        },
        {
            "@id": "http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/query2/",
            "@type": "SearchQueryService/3.0.0-beta"
        },
        {
            "@id": "http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/flat2/",
            "@type": "PackageBaseAddress/3.0.0"
        }
    ],
    "version": "3.0.0-beta"
> $PSVersionTable

Name                           Value
----                           -----
PSVersion                      5.1.14393.2430
PSEdition                      Desktop
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0...}
BuildVersion                   10.0.14393.2430
CLRVersion                     4.0.30319.42000
WSManStackVersion              3.0
PSRemotingProtocolVersion      2.3
SerializationVersion           1.1.0.1
> Get-Module -ListAvailable PowerShellGet,PackageManagement

Répertoire : C:\Program Files\WindowsPowerShell\Modules

ModuleType Version    Name                                ExportedCommands
---------- -------    ----                                ----------------
Script     1.4.3      PackageManagement                   {Find-Package, Get-Package, Get-PackageProvider, Get-PackageSource...}
Binary     1.0.0.1    PackageManagement                   {Find-Package, Get-Package, Get-PackageProvider, Get-PackageSource...}
Script     2.2        PowerShellGet                       {Find-Command, Find-DSCResource, Find-Module, Find-RoleCapability...}
Script     1.0.0.1    PowerShellGet                       {Install-Module, Find-Module, Save-Module, Update-Module...}
> Get-PackageProvider -ListAvailable

Name                     Version          DynamicOptions
----                     -------          --------------
msi                      3.0.0.0          AdditionalArguments
msu                      3.0.0.0
nuget                    2.8.5.208
NuGet                    3.0.0.1          Destination, ExcludeVersion, Scope, SkipDependencies, Headers, FilterOnTag, Contains, AllowPrereleaseVersions, ConfigFile, SkipValidate
PowerShellGet            2.2.0.0          PackageManagementProvider, Type, Scope, AllowClobber, SkipPublisherCheck, InstallUpdate, NoPathUpdate, AllowPrereleaseVersions, Filter, Tag, Includes, DscResourc...
PowerShellGet            1.0.0.1
Programs                 3.0.0.0          IncludeWindowsInstaller, IncludeSystemComponent

Have I missed something? Could it be an issue with nuget implementation in Azure DevOps Server?

SydneyhSmith commented 5 years ago

@GregoryOtt thanks for opening this issue and providing this information... a few questions for you-- You titled the issue "Find-Module fails to find freshly published module" does that mean you are no longer encountering this issue with this module? What is the error you are receiving when you attempt to install the module? Also have you tried registering your feed as a v2 feed instead of a v3...in other words having the source location/publish location as "http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v2" we will not have full v3 coverage until PowerShellGet 3.0 so this may (or may not) help....thanks again for reporting this!

GregoryOtt commented 5 years ago

@SydneyhSmith Thanks !!! It works with the v2 feed. This solution is acceptable for now. Have you an estimated release date for the support of v3 feeds?

To answer your questions (if I remain on v3 feed) :

does that mean you are no longer encountering this issue with this module?

The issue persists

What is the error you are receiving when you attempt to install the module?

> Install-Module -Name TestModule -Repository Test -Debug

DÉBOGUER : 00:00:00.0000003 Calling New() : MethodName = 'ResolvePackageSources'
DÉBOGUER : 00:00:00.0000543 Verbose: False
DÉBOGUER : 00:00:00.0000815 Name: Test
DÉBOGUER : 00:00:00.0001020 ErrorVariable: ev
DÉBOGUER : 00:00:00.0035544 INVOKING PowerShell Fn Resolve-PackageSource with args  that has length 0
DÉBOGUER : 00:00:00.0054606 In PowerShellGet Provider - 'Resolve-PackageSource'.
DÉBOGUER : 00:00:00.0084220 Yielding package source for Test at location http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json
DÉBOGUER : 00:00:00.0175092 Done calling powershell «Resolve-PackageSource» «PSModule»
DÉBOGUER : 00:00:00.0264479 Calling New() : MethodName = 'GetDynamicOptions'
DÉBOGUER : 00:00:00.0264810 Verbose: False
DÉBOGUER : 00:00:00.0265023 Name: Test
DÉBOGUER : 00:00:00.0265204 ErrorVariable: ev
DÉBOGUER : 00:00:00.0289055 INVOKING PowerShell Fn Get-DynamicOptions with args Provider that has length 1
DÉBOGUER : 00:00:00.0310193 In PowerShellGet Provider - 'Get-DynamicOptions'.
DÉBOGUER : 00:00:00.0358254 Done calling powershell «Get-DynamicOptions» «PSModule»
DÉBOGUER : 00:00:00.0431686 Calling New() : MethodName = 'GetDynamicOptions'
DÉBOGUER : 00:00:00.0431994 Verbose: False
DÉBOGUER : 00:00:00.0432206 Name: Test
DÉBOGUER : 00:00:00.0432403 ErrorVariable: ev
DÉBOGUER : 00:00:00.0449847 INVOKING PowerShell Fn Get-DynamicOptions with args Source that has length 1
DÉBOGUER : 00:00:00.0466447 In PowerShellGet Provider - 'Get-DynamicOptions'.
DÉBOGUER : 00:00:00.0566788 Done calling powershell «Get-DynamicOptions» «PSModule»
DÉBOGUER : 00:00:01.9405445 Calling New() : MethodName = 'ResolvePackageSources'
DÉBOGUER : 00:00:01.9424279 MessageResolver: Microsoft.PowerShell.PackageManagement.Cmdlets.GetMessageString
DÉBOGUER : 00:00:01.9448918 ProviderName: PowerShellGet
DÉBOGUER : 00:00:01.9473396 Verbose: False
DÉBOGUER : 00:00:01.9558675 Name: Test
DÉBOGUER : 00:00:01.9580258 ErrorVariable: ev
DÉBOGUER : 00:00:01.9608501 INVOKING PowerShell Fn Resolve-PackageSource with args  that has length 0
DÉBOGUER : 00:00:01.9712417 In PowerShellGet Provider - 'Resolve-PackageSource'.
DÉBOGUER : 00:00:01.9751420 Yielding package source for Test at location http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json
DÉBOGUER : 00:00:01.9865355 Done calling powershell «Resolve-PackageSource» «PSModule»
DÉBOGUER : 00:00:01.9926783 Calling New() : MethodName = 'ResolvePackageSources'
DÉBOGUER : 00:00:01.9946039 MessageResolver: Microsoft.PowerShell.PackageManagement.Cmdlets.GetMessageString
DÉBOGUER : 00:00:02.0011567 ProviderName: PowerShellGet
DÉBOGUER : 00:00:02.0032382 Verbose: False
DÉBOGUER : 00:00:02.0057005 Name: Test
DÉBOGUER : 00:00:02.0078399 ErrorVariable: ev
DÉBOGUER : 00:00:02.0111194 INVOKING PowerShell Fn Resolve-PackageSource with args  that has length 0
DÉBOGUER : 00:00:02.0202184 In PowerShellGet Provider - 'Resolve-PackageSource'.
DÉBOGUER : 00:00:02.0238662 Yielding package source for Test at location http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json
DÉBOGUER : 00:00:02.0355272 Done calling powershell «Resolve-PackageSource» «PSModule»
DÉBOGUER : 00:00:00.0000003 Calling New() : MethodName = 'ResolvePackageSources'
DÉBOGUER : 00:00:00.0000413 Debug: True
DÉBOGUER : 00:00:00.0000634 Source: Test
DÉBOGUER : 00:00:00.0000834 Name: TestModule
DÉBOGUER : 00:00:00.0057391 INVOKING PowerShell Fn Resolve-PackageSource with args  that has length 0
DÉBOGUER : 00:00:00.0087189 In PowerShellGet Provider - 'Resolve-PackageSource'.
DÉBOGUER : 00:00:00.0122119 Yielding package source for Test at location http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json
DÉBOGUER : 00:00:00.0219963 Done calling powershell «Resolve-PackageSource» «PSModule»
DÉBOGUER : 00:00:00.0284364 Calling New() : MethodName = 'GetDynamicOptions'
DÉBOGUER : 00:00:00.0284762 Debug: True
DÉBOGUER : 00:00:00.0285152 Source: Test
DÉBOGUER : 00:00:00.0285377 Name: TestModule
DÉBOGUER : 00:00:00.0302005 INVOKING PowerShell Fn Get-DynamicOptions with args Provider that has length 1
DÉBOGUER : 00:00:00.0322591 In PowerShellGet Provider - 'Get-DynamicOptions'.
DÉBOGUER : 00:00:00.0380825 Done calling powershell «Get-DynamicOptions» «PSModule»
DÉBOGUER : 00:00:00.0428012 Calling New() : MethodName = 'GetDynamicOptions'
DÉBOGUER : 00:00:00.0428449 Debug: True
DÉBOGUER : 00:00:00.0428674 Source: Test
DÉBOGUER : 00:00:00.0428870 Name: TestModule
DÉBOGUER : 00:00:00.0445865 INVOKING PowerShell Fn Get-DynamicOptions with args Source that has length 1
DÉBOGUER : 00:00:00.0464328 In PowerShellGet Provider - 'Get-DynamicOptions'.
DÉBOGUER : 00:00:00.0573916 Done calling powershell «Get-DynamicOptions» «PSModule»
DÉBOGUER : 00:00:00.0619752 Calling New() : MethodName = 'GetDynamicOptions'
DÉBOGUER : 00:00:00.0620067 Debug: True
DÉBOGUER : 00:00:00.0620272 Source: Test
DÉBOGUER : 00:00:00.0620473 Name: TestModule
DÉBOGUER : 00:00:00.0640307 INVOKING PowerShell Fn Get-DynamicOptions with args Package that has length 1
DÉBOGUER : 00:00:00.0658664 In PowerShellGet Provider - 'Get-DynamicOptions'.
DÉBOGUER : 00:00:00.0868237 Done calling powershell «Get-DynamicOptions» «PSModule»
DÉBOGUER : 00:00:00.0948846 Calling New() : MethodName = 'GetDynamicOptions'
DÉBOGUER : 00:00:00.0949169 Debug: True
DÉBOGUER : 00:00:00.0949370 Source: Test
DÉBOGUER : 00:00:00.0949579 Name: TestModule
DÉBOGUER : 00:00:00.0976502 INVOKING PowerShell Fn Get-DynamicOptions with args Install that has length 1
DÉBOGUER : 00:00:00.0999408 In PowerShellGet Provider - 'Get-DynamicOptions'.
DÉBOGUER : 00:00:00.1195898 Done calling powershell «Get-DynamicOptions» «PSModule»
DÉBOGUER : 00:00:01.3976464 Calling New() : MethodName = 'ResolvePackageSources'
DÉBOGUER : 00:00:01.4018275 ProviderName: PowerShellGet
DÉBOGUER : 00:00:01.4054985 Type: Module
DÉBOGUER : 00:00:01.4079128 Source: Test
DÉBOGUER : 00:00:01.4101884 MessageResolver: Microsoft.PowerShell.PackageManagement.Cmdlets.GetMessageString
DÉBOGUER : 00:00:01.4124172 Debug: True
DÉBOGUER : 00:00:01.4147480 Scope: CurrentUser
DÉBOGUER : 00:00:01.4227797 Name: TestModule
DÉBOGUER : 00:00:01.4256690 INVOKING PowerShell Fn Resolve-PackageSource with args  that has length 0
DÉBOGUER : 00:00:01.4283613 In PowerShellGet Provider - 'Resolve-PackageSource'.
COMMENTAIRES : Repository details, Name = 'Test', Location = 'http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json'; IsTrusted = 'True'; IsRegistered = 'True'.
DÉBOGUER : 00:00:02.5548320 Yielding package source for Test at location http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json
DÉBOGUER : 00:00:02.5671432 Done calling powershell «Resolve-PackageSource» «PSModule»
DÉBOGUER : 00:00:02.5673205 Calling SearchForPackages. Name='TestModule'
COMMENTAIRES : Using the provider 'PowerShellGet' for searching packages.
DÉBOGUER : 00:00:02.5684752 PackageProvider::FindPackage with name TestModule
DÉBOGUER : 00:00:02.5688565 Calling SearchForPackages After Select 1
DÉBOGUER : 00:00:02.5856615 Calling New() : MethodName = 'FindPackage'
DÉBOGUER : 00:00:02.5925211 ProviderName: PowerShellGet
DÉBOGUER : 00:00:02.5948090 Type: Module
DÉBOGUER : 00:00:02.5973012 Source: Test
DÉBOGUER : 00:00:02.5995068 MessageResolver: Microsoft.PowerShell.PackageManagement.Cmdlets.GetMessageString
DÉBOGUER : 00:00:02.6093624 Debug: True
DÉBOGUER : 00:00:02.6110673 Scope: CurrentUser
DÉBOGUER : 00:00:02.6133910 Name: TestModule
DÉBOGUER : 00:00:02.6166025 INVOKING PowerShell Fn Find-Package with args System.String[], , ,  that has length 4
DÉBOGUER : 00:00:02.6255577 In PowerShellGet Provider - 'Find-Package'.
DÉBOGUER : 00:00:02.6279460 OPTION: ProviderName => PowerShellGet
DÉBOGUER : 00:00:02.6303315 OPTION: Type => Module
DÉBOGUER : 00:00:02.6329309 OPTION: Source => Test
DÉBOGUER : 00:00:02.6417740 OPTION: MessageResolver => Microsoft.PowerShell.PackageManagement.Cmdlets.GetMessageString
DÉBOGUER : 00:00:02.6444509 OPTION: Debug => True
DÉBOGUER : 00:00:02.6471236 OPTION: Scope => CurrentUser
DÉBOGUER : 00:00:02.6494949 OPTION: Name => TestModule
COMMENTAIRES : Using the specified source names : 'Test'.
COMMENTAIRES : Getting the provider object for the PackageManagement Provider 'NuGet'.
COMMENTAIRES : The specified Location is 'http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json' and PackageManagementProvider is 'NuGet'.
DÉBOGUER : 00:00:02.6850592 PackageProvider::FindPackage with name TestModule
DÉBOGUER : 00:00:02.6893439 Calling 'NuGet'::'FindPackage' - name='TestModule', requiredVersion='',minimumVersion='', maximumVersion='''.
DÉBOGUER : 00:00:02.6916270 Iterating 'TestModule'.
DÉBOGUER : 00:00:02.6945115 There are '1' registered sources in 'NuGet' provider.
DÉBOGUER : 00:00:02.7034920 Source 'http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json' is not one of the registered sources in 'NuGet' provider.
DÉBOGUER : 00:00:02.7067657 Source 'http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json' is validated.
DÉBOGUER : 00:00:02.7093135 Calling 'NuGetRequest'::'GetPackageById', 'TestModule'.
DÉBOGUER : 00:00:02.7117029 Calling 'NuGetPackageRepository'::'FindPackagesById', 'TestModule'.
DÉBOGUER : 00:00:02.7208945 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'.
DÉBOGUER : 00:00:02.7231379 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'.
DÉBOGUER : 00:00:02.7254478 Returning the call 'NuGetPackageFeed3'::'FindImpl'.
DÉBOGUER : 00:00:02.7285745 Returning the call 'NuGetPackageFeed3'::'Find'.
DÉBOGUER : 00:00:02.7355590 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'.
DÉBOGUER : 00:00:02.7394801 Downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'.
DÉBOGUER : 00:00:02.8180568 Completed downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'.
DÉBOGUER : 00:00:02.8626898 Calling 'NuGetFilesFeed3'::'GetVersionInfo'.
DÉBOGUER : 00:00:02.8652415 Downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/flat2/testmodule/index.json'.
DÉBOGUER : 00:00:02.9297362 Completed downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/flat2/testmodule/index.json'.
DÉBOGUER : 00:00:02.9351343 Returning the call 'NuGetFilesFeed3'::'GetVersionInfo'.
DÉBOGUER : 00:00:02.9374383 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'.
DÉBOGUER : 00:00:02.9395682 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'.
DÉBOGUER : 00:00:02.9421010 Returning the call 'NuGetPackageFeed3'::'FindImpl'.
DÉBOGUER : 00:00:02.9445956 Returning the call 'NuGetPackageFeed3'::'Find'.
DÉBOGUER : 00:00:02.9471962 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.json'.
DÉBOGUER : 00:00:02.9561172 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.0.json'.
DÉBOGUER : 00:00:02.9593534 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.json'.
DÉBOGUER : 00:00:02.9629142 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.0.json'.
DÉBOGUER : 00:00:02.9718588 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.json'.
DÉBOGUER : 00:00:02.9753330 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.0.json'.
DÉBOGUER : 00:00:02.9847778 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'.
DÉBOGUER : 00:00:02.9865950 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'.
DÉBOGUER : 00:00:02.9887651 Returning the call 'NuGetPackageFeed3'::'FindImpl'.
DÉBOGUER : 00:00:02.9911676 Returning the call 'NuGetPackageFeed3'::'Find'.
DÉBOGUER : 00:00:02.9937327 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'.
DÉBOGUER : 00:00:03.0027108 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'.
DÉBOGUER : 00:00:03.0060880 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'.
DÉBOGUER : 00:00:03.0164383 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'.
DÉBOGUER : 00:00:03.0198750 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'.
DÉBOGUER : 00:00:03.0239383 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'.
DÉBOGUER : 00:00:03.0348230 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'.
DÉBOGUER : 00:00:03.0369998 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'.
DÉBOGUER : 00:00:03.0394129 Returning the call 'NuGetPackageFeed3'::'FindImpl'.
DÉBOGUER : 00:00:03.0471914 Returning the call 'NuGetPackageFeed3'::'Find'.
DÉBOGUER : 00:00:03.0497388 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'.
DÉBOGUER : 00:00:03.0537517 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'.
DÉBOGUER : 00:00:03.0647680 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'.
DÉBOGUER : 00:00:03.0692031 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'.
DÉBOGUER : 00:00:03.0798708 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'.
DÉBOGUER : 00:00:03.0837809 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'.
DÉBOGUER : 00:00:03.0878493 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'.
DÉBOGUER : 00:00:03.0962512 Downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'.
DÉBOGUER : 00:00:03.1643614 Completed downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'.
DÉBOGUER : 00:00:03.2122571 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'.
DÉBOGUER : 00:00:03.2153019 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'.
DÉBOGUER : 00:00:03.2181246 Returning the call 'NuGetPackageFeed3'::'FindImpl'.
DÉBOGUER : 00:00:03.2208327 Returning the call 'NuGetPackageFeed3'::'Find'.
DÉBOGUER : 00:00:03.2234392 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.json'.
DÉBOGUER : 00:00:03.2271563 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.0.json'.
DÉBOGUER : 00:00:03.2361411 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.json'.
DÉBOGUER : 00:00:03.2395313 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.0.json'.
DÉBOGUER : 00:00:03.2431263 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.json'.
DÉBOGUER : 00:00:03.2531233 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.0.json'.
DÉBOGUER : 00:00:03.2565975 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'.
DÉBOGUER : 00:00:03.2593000 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'.
DÉBOGUER : 00:00:03.2664361 Returning the call 'NuGetPackageFeed3'::'FindImpl'.
DÉBOGUER : 00:00:03.2689792 Returning the call 'NuGetPackageFeed3'::'Find'.
DÉBOGUER : 00:00:03.2716916 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'.
DÉBOGUER : 00:00:03.2753804 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'.
DÉBOGUER : 00:00:03.2851029 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'.
DÉBOGUER : 00:00:03.2882028 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'.
DÉBOGUER : 00:00:03.2976591 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'.
DÉBOGUER : 00:00:03.3010174 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'.
DÉBOGUER : 00:00:03.3044191 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'.
DÉBOGUER : 00:00:03.3121479 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'.
DÉBOGUER : 00:00:03.3142979 Returning the call 'NuGetPackageFeed3'::'FindImpl'.
DÉBOGUER : 00:00:03.3168902 Returning the call 'NuGetPackageFeed3'::'Find'.
DÉBOGUER : 00:00:03.3193565 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'.
DÉBOGUER : 00:00:03.3296040 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'.
DÉBOGUER : 00:00:03.3331127 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'.
DÉBOGUER : 00:00:03.3379031 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'.
DÉBOGUER : 00:00:03.3479403 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'.
DÉBOGUER : 00:00:03.3513919 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'.
DÉBOGUER : 00:00:03.3616469 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'.
DÉBOGUER : 00:00:03.3652281 Downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'.
DÉBOGUER : 00:00:03.4318370 Completed downloading 'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/index.json'.
DÉBOGUER : 00:00:03.4664742 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'.
DÉBOGUER : 00:00:03.4693859 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'.
DÉBOGUER : 00:00:03.4721731 Returning the call 'NuGetPackageFeed3'::'FindImpl'.
DÉBOGUER : 00:00:03.4748989 Returning the call 'NuGetPackageFeed3'::'Find'.
DÉBOGUER : 00:00:03.4775165 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.json'.
DÉBOGUER : 00:00:03.4877891 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.0.json'.
DÉBOGUER : 00:00:03.4916709 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.json'.
DÉBOGUER : 00:00:03.5004103 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.0.json'.
DÉBOGUER : 00:00:03.5043311 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.json'.
DÉBOGUER : 00:00:03.5080710 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.15.0.json'.
DÉBOGUER : 00:00:03.5171819 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'.
DÉBOGUER : 00:00:03.5194146 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'.
DÉBOGUER : 00:00:03.5219395 Returning the call 'NuGetPackageFeed3'::'FindImpl'.
DÉBOGUER : 00:00:03.5244483 Returning the call 'NuGetPackageFeed3'::'Find'.
DÉBOGUER : 00:00:03.5328967 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'.
DÉBOGUER : 00:00:03.5365780 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'.
DÉBOGUER : 00:00:03.5404090 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'.
DÉBOGUER : 00:00:03.5500220 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'.
DÉBOGUER : 00:00:03.5535193 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.json'.
DÉBOGUER : 00:00:03.5632387 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.11.0.json'.
DÉBOGUER : 00:00:03.5669802 Calling 'NuGetPackageFeed3'::'Find', 'TestModule'.
DÉBOGUER : 00:00:03.5693547 Calling 'NuGetPackageFeed3'::'FindImpl', 'TestModule'.
DÉBOGUER : 00:00:03.5720380 Returning the call 'NuGetPackageFeed3'::'FindImpl'.
DÉBOGUER : 00:00:03.5797664 Returning the call 'NuGetPackageFeed3'::'Find'.
DÉBOGUER : 00:00:03.5822126 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'.
DÉBOGUER : 00:00:03.5859498 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'.
DÉBOGUER : 00:00:03.5961292 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'.
DÉBOGUER : 00:00:03.6011499 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'.
DÉBOGUER : 00:00:03.6105794 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.json'.
DÉBOGUER : 00:00:03.6144631 Calling 'NuGetPackageFeed3'::'Find',
'http://tfs:8080/tfs/TPC/_packaging/9a3cb386-8e91-4229-92f1-ecddcf72a69f/nuget/v3/registrations2-semver2/testmodule/1.0.9.0.json'.
DÉBOGUER : 00:00:03.6185721 System.ArgumentNullException: La valeur ne peut pas être null.
Nom du paramètre : source
   à System.Linq.Enumerable.Where[TSource](IEnumerable`1 source, Func`2 predicate)
   à Microsoft.PackageManagement.NuGetProvider.NuGetRequest.GetPackageById(PackageSource source, String name, NuGetRequest request, String requiredVersion, String minimumVersion, String
maximumVersion, Boolean minInclusive, Boolean maxInclusive, Boolean isDependency)
COMMENTAIRES : Total package yield:'0' for the specified package 'TestModule'.
DÉBOGUER : 00:00:03.6338194 Completed iterating for 'TestModule'.
DÉBOGUER : 00:00:03.6424703 Calling 'NuGetRequest'::'FindRegisteredSource', 'http://tfs:8080/tfs/TPC/_packaging/Test/nuget/v3/index.json'.
DÉBOGUER : 00:00:03.6441859 PowerShell Script 'PSModule' Function 'Find-Package' returns null.
DÉBOGUER : 00:00:03.6471665 Done calling powershell «Find-Package» «PSModule»
DÉBOGUER : 00:00:03.6512763 unmatched package name='TestModule'
PackageManagement\Install-Package : No match was found for the specified search criteria and module name 'TestModule'. Try Get-PSRepository to see all available registered module repositories.
Au caractère C:\Program Files\WindowsPowerShell\Modules\PowerShellGet\2.2\PSModule.psm1:9683 : 34
+ ... talledPackages = PackageManagement\Install-Package @PSBoundParameters
+                      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : ObjectNotFound: (Microsoft.Power....InstallPackage:InstallPackage) [Install-Package], Exception
    + FullyQualifiedErrorId : NoMatchFoundForCriteria,Microsoft.PowerShell.PackageManagement.Cmdlets.InstallPackage