Somehow I have different versions of ABP in my solution. I have mostly 0.8.4.0 but the below 2 assemblies are 0.12.0.0
Abp.EntityFramework.Common.dll Abp.Web.Common.dll
What is the best way to get all of my assemblies in my ASP.Net Zero solution in sync?
1 Answer(s)
-
0
Hi,
If you are using Visual Studio 2015, It's better to update allp Abp* packages with nuget package manager UI. For older versions of visual studio I use below script in Package Manager Console.
get-project -all | get-package | ?{ $_.Id -like 'Abp*' } | update-package
Of course, you need to implement changes in each version of ABP and ABP Zero releases :) which is the harder part. For that changes, you can check releases on github. <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/releases">https://github.com/aspnetboilerplate/as ... e/releases</a> <a class="postlink" href="https://github.com/aspnetboilerplate/module-zero/releases">https://github.com/aspnetboilerplate/mo ... o/releases</a>