Monday, November 6, 2017

Unable to find manifest signing certificate in the certificate store

I got this message, when i move project source code to another machine.
To sole this, remove below tags from .csproj file

<manifestcertificatethumbprint>...</manifestcertificatethumbprint>
<manifestkeyfile>...</manifestkeyfile>
<generatemanifests>...</generatemanifests> 
<signmanifests>...</signmanifests>

How to Create Events Using Microsoft Graph API with Delegated Permissions and MSAL.js

Microsoft Graph API provides powerful capabilities to interact with Microsoft 365 services. In this guide, we’ll explore how to create calen...