You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I install a package with Nuget it installs all package dependencies, But when I install the package with LiGet it installs the package itself not its dependencies.
When I install a package with LiGet:
PM> Install-Package Microsoft.AspNet.Mvc
Attempting to gather dependency information for package 'Microsoft.AspNet.Mvc.5.2.7' with respect to project 'WebApplication1Nuget', targeting '.NETFramework,Version=v4.7.2'
Gathering dependency information took 0.27 ms
Attempting to resolve dependencies for package 'Microsoft.AspNet.Mvc.5.2.7' with DependencyBehavior 'Lowest'
Resolving dependency information took 0 ms
Resolving actions to install package 'Microsoft.AspNet.Mvc.5.2.7'
Resolved actions to install package 'Microsoft.AspNet.Mvc.5.2.7'
Retrieving package 'Microsoft.AspNet.Mvc 5.2.7' from 'LigetCache'.
GET http://192.168.2.4:9011/api/cache/v3/package/microsoft.aspnet.mvc/5.2.7/microsoft.aspnet.mvc.5.2.7.nupkg
OK http://192.168.2.4:9011/api/cache/v3/package/microsoft.aspnet.mvc/5.2.7/microsoft.aspnet.mvc.5.2.7.nupkg 1324ms
Installing Microsoft.AspNet.Mvc 5.2.7.
Adding package 'Microsoft.AspNet.Mvc.5.2.7' to folder 'C:\Users\muculus\source\repos\WebApplication1Nuget\packages'
Added package 'Microsoft.AspNet.Mvc.5.2.7' to folder 'C:\Users\muculus\source\repos\WebApplication1Nuget\packages'
Added package 'Microsoft.AspNet.Mvc.5.2.7' to 'packages.config'
Successfully installed 'Microsoft.AspNet.Mvc 5.2.7' to WebApplication1Nuget
Executing nuget actions took 3.31 sec
Time Elapsed: 00:00:05.9299174
When I install a package with Nuget directly:
PM> Install-Package Microsoft.AspNet.Mvc
Attempting to gather dependency information for package 'Microsoft.AspNet.Mvc.5.2.7' with respect to project 'WebApplication1Nuget', targeting '.NETFramework,Version=v4.7.2'
Gathering dependency information took 3.39 sec
Attempting to resolve dependencies for package 'Microsoft.AspNet.Mvc.5.2.7' with DependencyBehavior 'Lowest'
Resolving dependency information took 0 ms
Resolving actions to install package 'Microsoft.AspNet.Mvc.5.2.7'
Resolved actions to install package 'Microsoft.AspNet.Mvc.5.2.7'
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.razor/3.2.7/microsoft.aspnet.razor.3.2.7.nupkg
GET https://api.nuget.org/v3-flatcontainer/microsoft.web.infrastructure/1.0.0/microsoft.web.infrastructure.1.0.0.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.razor/3.2.7/microsoft.aspnet.razor.3.2.7.nupkg 80ms
Installing Microsoft.AspNet.Razor 3.2.7.
OK https://api.nuget.org/v3-flatcontainer/microsoft.web.infrastructure/1.0.0/microsoft.web.infrastructure.1.0.0.nupkg 88ms
Installing Microsoft.Web.Infrastructure 1.0.0.
GET https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.webpages/3.2.7/microsoft.aspnet.webpages.3.2.7.nupkg
OK https://api.nuget.org/v3-flatcontainer/microsoft.aspnet.webpages/3.2.7/microsoft.aspnet.webpages.3.2.7.nupkg 106ms
Installing Microsoft.AspNet.WebPages 3.2.7.
Retrieving package 'Microsoft.AspNet.Mvc 5.2.7' from 'nuget.org'.
Retrieving package 'Microsoft.AspNet.Razor 3.2.7' from 'nuget.org'.
Retrieving package 'Microsoft.AspNet.WebPages 3.2.7' from 'nuget.org'.
Retrieving package 'Microsoft.Web.Infrastructure 1.0.0' from 'nuget.org'.
Adding package 'Microsoft.AspNet.Razor.3.2.7' to folder 'C:\Users\muculus\source\repos\WebApplication1Nuget\packages'
Added package 'Microsoft.AspNet.Razor.3.2.7' to folder 'C:\Users\muculus\source\repos\WebApplication1Nuget\packages'
Added package 'Microsoft.AspNet.Razor.3.2.7' to 'packages.config'
Successfully installed 'Microsoft.AspNet.Razor 3.2.7' to WebApplication1Nuget
Adding package 'Microsoft.Web.Infrastructure.1.0.0' to folder 'C:\Users\muculus\source\repos\WebApplication1Nuget\packages'
Added package 'Microsoft.Web.Infrastructure.1.0.0' to folder 'C:\Users\muculus\source\repos\WebApplication1Nuget\packages'
Added package 'Microsoft.Web.Infrastructure.1.0.0' to 'packages.config'
Successfully installed 'Microsoft.Web.Infrastructure 1.0.0' to WebApplication1Nuget
Adding package 'Microsoft.AspNet.WebPages.3.2.7' to folder 'C:\Users\muculus\source\repos\WebApplication1Nuget\packages'
Added package 'Microsoft.AspNet.WebPages.3.2.7' to folder 'C:\Users\muculus\source\repos\WebApplication1Nuget\packages'
Added package 'Microsoft.AspNet.WebPages.3.2.7' to 'packages.config'
Successfully installed 'Microsoft.AspNet.WebPages 3.2.7' to WebApplication1Nuget
Adding package 'Microsoft.AspNet.Mvc.5.2.7' to folder 'C:\Users\muculus\source\repos\WebApplication1Nuget\packages'
Added package 'Microsoft.AspNet.Mvc.5.2.7' to folder 'C:\Users\muculus\source\repos\WebApplication1Nuget\packages'
Added package 'Microsoft.AspNet.Mvc.5.2.7' to 'packages.config'
Successfully installed 'Microsoft.AspNet.Mvc 5.2.7' to WebApplication1Nuget
Executing nuget actions took 6.79 sec
Time Elapsed: 00:00:11.3572295
What is the problem with installing dependencies, Why LiGet doesn't install dependencies?
The text was updated successfully, but these errors were encountered:
When I install a package with Nuget it installs all package dependencies, But when I install the package with LiGet it installs the package itself not its dependencies.
When I install a package with LiGet:
When I install a package with Nuget directly:
What is the problem with installing dependencies, Why LiGet doesn't install dependencies?
The text was updated successfully, but these errors were encountered: