aspnet / WebHooks

[Archived] Libraries to create and consume web hooks on ASP.NET Core. Project moved to https://github.com/aspnet/AspLabs
Apache License 2.0
627 stars 439 forks source link

Error when starting CustomSender sample project #62

Closed remiplanglois closed 8 years ago

remiplanglois commented 8 years ago

Hi, The error I get is: "Could not load file or assembly 'Microsoft.AspNet.WebHooks.Common' or one of its dependencies. Strong name signature could not be verified. The assembly may have been tampered with, or it was delay signed but not fully signed with the correct private key."

Any ideas? Should I configure something in Visual Studio?

Thanks in advance!

HenrikFrystykNielsen commented 8 years ago

Can you run build.cmd from the command line? That will fix it

remiplanglois commented 8 years ago

AzureStorageEmulator.exe was not installed. Thanks!

ghost commented 8 years ago

Hello, even tho I ran the build.cmd, I still got the same error. Solved it by removing the "Microsoft.AspNet.WebHooks.Common" reference and installing it again using:

Install-Package Microsoft.AspNet.WebHooks.Common -Pre

garora commented 7 years ago

@b4rj - This would not work for me. I am trying to DEBUG my final changes for OneDrive. I followed your steps and now I am getting Microsoft.AspNet.WebHooks.Receivers.OneDrive. In my case, I can't remove or add NugetPackage for OneDrive (because it does not exist). @HenrikFrystykNielsen - any suggestions?