0

I am trying to add following dlls using Nuget but I am getting items not found.

https://blogs.msdn.microsoft.com/webdev/2015/09/15/sending-webhooks-with-asp-net-webhooks-preview/

  • Microsoft.AspNet.WebHooks.Custom
  • Microsoft.AspNet.WebHooks.Custom.AzureStorage
  • Microsoft.AspNet.WebHooks.Custom.SqlStorage
  • Microsoft.AspNet.WebHooks.Custom.Mvc

NuGet Package Manager 2.8.60318.667

enter image description here

Gopi
  • 5,656
  • 22
  • 80
  • 146

2 Answers2

3

Use NuGet package manager console from the tools menu and use this command, because this is a pre-release version you cannot get it from the NuGet gui window

Install-Package Microsoft.AspNet.WebHooks.Custom -Pre
Mostafiz
  • 7,243
  • 3
  • 28
  • 42
  • In which directory do I need to run that command? I tried but I got, 'Install-Package' is not recognized as an internal or external command, operable program or batch file. – Gopi Aug 01 '16 at 05:24
  • From tools> Nuget Package Manager > Package Manager console, open it then type this command and hit enter thats it – Mostafiz Aug 01 '16 at 05:26
  • 3
    @TechJerk - You can also choose that option in the drop down that says "Stable Only". – Amir Popovich Aug 01 '16 at 05:26
1

The nugets are now 'official' so don't need the '-pre' tag on nugget anymore. You can find them directly here.

Hope this helps,

Henrik

Henrik Frystyk Nielsen
  • 3,092
  • 1
  • 19
  • 17