Question

Is there a .NET equivalent of Java Web Start?

I want a one-click, from the web, lightweight install for a group of .NET assemblies and resources. Hopefully, the link would continue to keep the user updated with the latest version, similar to what Java Web Start does.

The application is written in F#, for what it's worth.

Was it helpful?

Solution

I think you're talking about ClickOnce Deployment

http://msdn.microsoft.com/en-us/library/t71a733d(VS.80).aspx

OTHER TIPS

Microsoft's ClickOnce

Aha, you can publish a .NET application using the msbuild.exe that ships with the .NET framework (not with Visual Studio). You can do it all from the command line with the free tools.

Documentation on publishing from the command line with msbuild is here: http://msdn.microsoft.com/en-us/library/ms165431(VS.80).aspx

Instructions for creating the proper ClickOnce manifest and certificates is here: http://msdn.microsoft.com/en-us/library/xc3tc5xx(VS.80).aspx

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top