I know of ClickOnce which creates an .exe file so a user can play my XNA game.
However, I have to manually go through a wizard in order to create this file.
I would like for the new .exe to be created upon a successful commit of the code to GIT (ie. all my tests pass and the build succeeds) and for this file to be deployed on my Amazon AWS server so users can instantly download the 'new version' each commit.
Is this possible? I've been taking a look at Jenkins which seems to do what I want (Automated builds) but seems as though it's only for JAVA software.
Thanks for any info :)