Advertisement
clockworksaint

NuGet problems with Mono 2.11.2+

Oct 16th, 2012
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.55 KB | None | 0 0
  1. #### Show relevant context ####
  2.  
  3. $ ls
  4. NuGet.exe packages packages.config
  5. $ md5sum *
  6. 10da026b95c853933c450c5b36024866 NuGet.exe
  7. md5sum: packages: Is a directory
  8. 456f53acff20249725f747f7311899fb packages.config
  9. $ cat packages.config
  10. <?xml version="1.0" encoding="utf-8"?>
  11. <packages>
  12. <package id="Gate" version="0.3.1" />
  13. <package id="Gate.Adapters.Nancy" version="0.3.1" />
  14. <package id="Gate.Builder" version="0.3.1" />
  15. <package id="Gate.Middleware" version="0.3.1" />
  16. <package id="Nancy" version="0.9.0" />
  17. <package id="Owin" version="0.7" />
  18. </packages>$
  19. $
  20. $ mono NuGet.exe help
  21. NuGet Version: 2.1.31002.9028
  22. usage: NuGet <command> [args] [options]
  23. Type 'NuGet help <command>' for help on a specific command.
  24.  
  25. Available commands:
  26. [snip]
  27. $ mono --version
  28. Mono JIT compiler version 2.11.2 (tarball Wed Jul 25 11:40:11 BST 2012)
  29. Copyright (C) 2002-2012 Novell, Inc, Xamarin Inc and Contributors. www.mono-project.com
  30. TLS: __thread
  31. SIGSEGV: altstack
  32. Notifications: epoll
  33. Architecture: x86
  34. Disabled: none
  35. Misc: softdebug
  36. LLVM: supported, not enabled.
  37. GC: Included Boehm (with typed GC and Parallel Mark)
  38.  
  39. #### Test run with Mono 2.11.2 ####
  40.  
  41. $ time mono NuGet.exe install packages.config -OutputDirectory packages
  42. Successfully installed 'Gate 0.3.1'.
  43. Successfully installed 'Gate.Adapters.Nancy 0.3.1'.
  44. Successfully installed 'Gate.Middleware 0.3.1'.
  45. Successfully installed 'Nancy 0.9.0'.
  46. WARNING: Could not connect to the feed specified at 'https://nuget.org/api/v2/'. Please verify that the package source (located in the Package Manager Settings) is valid and ensure your network connectivity.
  47. The specified archive is invalid.
  48.  
  49. real 1m50.502s
  50. user 0m1.336s
  51. sys 0m1.528s
  52. $ time mono NuGet.exe install packages.config -OutputDirectory packages
  53. Successfully installed 'Gate.Adapters.Nancy 0.3.1'.
  54. Successfully installed 'Nancy 0.9.0'.
  55. Successfully installed 'Gate 0.3.1'.
  56. Successfully installed 'Gate.Builder 0.3.1'.
  57. WARNING: Could not connect to the feed specified at 'https://nuget.org/api/v2/'. Please verify that the package source (located in the Package Manager Settings) is valid and ensure your network connectivity.
  58. The specified archive is invalid.
  59.  
  60. real 1m55.538s
  61. user 0m1.276s
  62. sys 0m1.312s
  63.  
  64. #### Switch to Mono 2.11.1 ####
  65.  
  66. $ mope global 2.11.1
  67. $ mono --version
  68. Mono JIT compiler version 2.11.1 (tarball Tue Jun 19 11:15:02 BST 2012)
  69. Copyright (C) 2002-2012 Novell, Inc, Xamarin Inc and Contributors. www.mono-project.com
  70. TLS: __thread
  71. SIGSEGV: altstack
  72. Notifications: epoll
  73. Architecture: x86
  74. Disabled: none
  75. Misc: softdebug
  76. LLVM: supported, not enabled.
  77. GC: Included Boehm (with typed GC and Parallel Mark)
  78.  
  79. #### Test run with Mono 2.11.1 ####
  80.  
  81. $ time mono NuGet.exe install packages.config -OutputDirectory packages
  82. Successfully installed 'Gate.Middleware 0.3.1'.
  83. Successfully installed 'Nancy 0.9.0'.
  84. Successfully installed 'Owin 0.7'.
  85. Successfully installed 'Gate 0.3.1'.
  86. Successfully installed 'Gate.Builder 0.3.1'.
  87. Successfully installed 'Gate.Adapters.Nancy 0.3.1'.
  88.  
  89. real 0m17.546s
  90. user 0m1.640s
  91. sys 0m1.692s
  92. $ time mono NuGet.exe install packages.config -OutputDirectory packages
  93. Successfully installed 'Gate.Adapters.Nancy 0.3.1'.
  94. Successfully installed 'Gate.Middleware 0.3.1'.
  95. Successfully installed 'Gate.Builder 0.3.1'.
  96. Successfully installed 'Nancy 0.9.0'.
  97. Successfully installed 'Owin 0.7'.
  98. Successfully installed 'Gate 0.3.1'.
  99.  
  100. real 0m15.682s
  101. user 0m1.180s
  102. sys 0m1.268s
  103. $
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement