I tried to install the lastest version of Umbraco, 7.2.5, in Visual Studio 2015 RC using Nuget Package Manager but nothing happened. I created a blank project, and used nuget package console to install the package, it showed 2 lines, and hung there.
I re-configed by follwing this post but still no luck.
So, is this the issue of VS 2015 RC, or Nuget, or the new Umbraco package? Thank you so much.
Ran into this same issue. Visual Studio 2015 RC would crash repeatedly at different points if I didn't install stuff in the right order. Seems to be some weird dependency issues with aspnet.mvc 6. Not sure of the exact cause.
My workaround was to start a new asp.net empty webproject, disable api.nuget.org, and install packages in the following order. Some of these will pull in additional dependencies but those should resolve ok.
newtonsoft.json 6.0.8
microsoft.aspnet.webapi 5.2.3
automapper 3.3.1
microsoft.aspnet.mvc 5.2.3
microsoft.aspnet.mvc.fixeddisplaymodes 5.0.0 - must be done second otherwise it wants 6.0
microsoft.net.http 2.2.29
miniprofiler 2.1.0
htmlagilitypack 1.4.9
lucene.net 2.9.4.1
xmlrpcnet 2.5.0
clientdependency 1.8.3.1
clientdependency-mvc 1.8.0.0
examine 0.1.63.0
imageprocessor.web 4.3.1
umbracocms.core 7.2.5
If you got this far then you should be able to install umbracocms 7.2.5 in vs 2015
I found out that this problem was from the version of Nuget extension on Visual Studio 2015 RC. It had many, many bugs reported on Github, and Visual Studio Gallery too. The solution is so simple:
1. Clean uninstall this extension from VS.
2. Donwload the older version of this extension with this link:
Umbraco 7.2.5 with VS 2015 RC via Nuget not work
Hi all,
I tried to install the lastest version of Umbraco, 7.2.5, in Visual Studio 2015 RC using Nuget Package Manager but nothing happened. I created a blank project, and used nuget package console to install the package, it showed 2 lines, and hung there.
Ran into this same issue. Visual Studio 2015 RC would crash repeatedly at different points if I didn't install stuff in the right order. Seems to be some weird dependency issues with aspnet.mvc 6. Not sure of the exact cause.
My workaround was to start a new asp.net empty webproject, disable api.nuget.org, and install packages in the following order. Some of these will pull in additional dependencies but those should resolve ok.
If you got this far then you should be able to install umbracocms 7.2.5 in vs 2015
I found out that this problem was from the version of Nuget extension on Visual Studio 2015 RC. It had many, many bugs reported on Github, and Visual Studio Gallery too. The solution is so simple:
1. Clean uninstall this extension from VS.
2. Donwload the older version of this extension with this link:
3. Extract the downloaded file to a folder on your machine, and manually install it using Developer Command Promt for VS2015 with the command:
VSIXInstaller [your_extracted_folder_path]\NuGet.Tools.vsix /admin
Open VS to see 'the magic' :D
Please help out by commenting on this issue here, any information you can provide will help get this problem resolved: https://github.com/NuGet/Home/issues/644
is working on a reply...