Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AjaxControlToolkit v7.1213 dependencies have grown

The control toolkit now has new dependencies on System.Spacial, Microsoft.Data.Edm, Microsoft.Data.OData, Microsoft.WindowsAzure.ConfigurationManager and WindowsAzure.Storage!

Is this really necessary? Can I somehow bypass this bloat?

like image 978
PTansey Avatar asked Jan 06 '14 19:01

PTansey


1 Answers

The only solution I've found to avoid those unnecessary dependencies is to use the version before they introduced the dependencies.

In the Package Manager Console one can execute the following command to install the correct version:

Install-Package AjaxControlToolkit -Version 7.1005.0

I very much look forward to the day they remove all those unnecessary dependencies and this workaround solution becomes unnecessary!

like image 104
mezoid Avatar answered Oct 21 '22 19:10

mezoid