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
Found this when trying to download nuget package: Spark.Web.Mvc3.
It appears that when ripple is trying to parse the version, if it ends in a number, it is prepending that number to the version string to search for.
Here is the log that ripple generated:
[Debug] Searching for Spark.Web.Mvc3 from http://nuget.org/api/v2
[Error] Error executing DownloadMissingNugets
[Error] System.AggregateException: One or more errors occurred. ---> System.ArgumentException: '3.1.7.5.1' is not a valid version string.
Notice the exception points out it search for '3.1.7.5.1' but the version on nuget.org is '1.7.5.1'.
Here is also a stack trace that is included in the ripple log:
at NuGet.SemanticVersion.Parse(Stringversion)
at ripple.Nuget.NugetName.Parse(Stringinput) in c:\home\github\bob-ripple\src\ripple\Nuget\NugetFile.cs:line 45
at ripple.Nuget.NugetFile..ctor(Stringpath,SolutionModemode) in c:\home\github\bob-ripple\src\ripple\Nuget\NugetFile.cs:line 64
at ripple.Nuget.NugetFolderCache.<findNugetFiles>b__2(Stringfile) in c:\home\github\bob-ripple\src\ripple\Nuget\NugetFolderCache.cs:line 63
at System.Linq.Enumerable.WhereSelectListIterator`2.MoveNext()
at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection)
at System.Linq.Enumerable.ToList[TSource](IEnumerable`1 source)
at ripple.Nuget.NugetFolderCache.findNugetFiles()inc:\home\github\bob-ripple\src\ripple\Nuget\NugetFolderCache.cs:line 61
at System.Lazy`1.CreateValue()
The text was updated successfully, but these errors were encountered:
Found this when trying to download nuget package: Spark.Web.Mvc3.
It appears that when ripple is trying to parse the version, if it ends in a number, it is prepending that number to the version string to search for.
Here is the log that ripple generated:
[Debug] Searching for Spark.Web.Mvc3 from http://nuget.org/api/v2
[Error] Error executing DownloadMissingNugets
[Error] System.AggregateException: One or more errors occurred. ---> System.ArgumentException: '3.1.7.5.1' is not a valid version string.
Notice the exception points out it search for '3.1.7.5.1' but the version on nuget.org is '1.7.5.1'.
Here is also a stack trace that is included in the ripple log:
The text was updated successfully, but these errors were encountered: