Posts tagged ClickOnce
Generic ClickOnce updates (With VSTO Support)
Jan 21st
I use ClickOnce to publish all my applications I write internally, some of which are VSTO Outlook add-ins. The issue with the inbuilt ClickOnce updates is you have no control over it and it can slow start up time of your app.
So I wanted a generic class that I could put in my common library and use in any of my applications, VSTO or normal. This is what I came up with:
This is the public interface, under the covers most of the functionality is declared as protected virtual so functionality can be changed (which I use to create my VSTODeploy More >
Writing a Facebook event synchroniser for Outlook 2007+ Part 2
Jul 27th
Now for the juicy post, this will cover the nuts and bolts of putting it all together. I may make a part 3 once I have the time to clean up the code, add logging and other things. The aim of the project after this post is simply to be able to sync and change your RSVP status of a event (if they update their API! See below.
(Installer/Source available at end of post)
API RestrictionsFacebook have decided that only an admin of a event can RSVP through the API, sorry guys this is something that cannot be done through More >