I would like my ClickOnce project to run immediately without installing the game seeing as it is only a simple "showcase"-game and I really don't want to force the moderators to have to uninstall it from the Control Panel afterwards.
2 Answers
ClickOnce is designed for installing and streamlining future updates of your application. If your wanting someone to just open your application w/ out installing it, just give them your exe. (Assuming you don't have dlls...If you do, then include them too).
You can find them in your project folder\Debug or \Release (depending on which you have compiled).
Comments
In visual studio, select the option to have the application available online only. Then, when launching, the application will be downloaded fresh each time and not installed locally.
Is there a specific reason you are using ClickOnce?