Ajax Control Toolkit, Visual Studio 2013, Nuget: AjaxControlToolkit.dll is missing

I tried to add the actual one Ajax Control Toolkit

to the .Net 4.5.1

WebSite. All dependencies seem to be installed correctly, but the file is AjaxControlToolkit.dll

missing.

I tried uninstalling and reinstalling the package using NuGet Console

in Visual Studio 2013

and it always looks successful but also always that the dll is missing. Also restarting VS didn't help. There packages.config

is an entry for dlls with version 8.0.0.0, and there is also a directory in the packages

directory AjaxControlToolkit.8.0.0.0.

, but there are only files AjaxControlToolkit.8.0.0.0.nupkg

and readme.txt

.

Any idea what went wrong or what I could do?

+3


source to share


2 answers


Launch Command Prompt and run dir c:\ajaxcontroltoolkit.dll /s

to see if the file is somewhere on your system. If so, copy it to the bin folder of the project.

If it's not on your hard drive, go to http://ajaxcontroltoolkit.codeplex.com/releases/view/116091 , download the specified version and copy the DLL from the package to the bin folder of the project.



In the back of my mind, it seems like I ran into this a couple of weeks ago, too, so there might be a bug in NuGet.

0


source


NuGet package version 8.0.0.0 is broken.

Update 15.1.2 .



PS Dependencies are extracted into separate packages ( AjaxControlToolkit.HtmlEditor.Sanitizer , AjaxControlToolkit.StaticResources )

0


source







All Articles