I was going to use Click Once for my F # project, but it seems like this is not supported in VS2010 - is there a way to make it work? If not, what is the alternative?
The application will be used by Merchants on Windows 7 tablets without an Internet connection.
My thinking was to use ClickOnce so that they could check for updates every morning / evening (where they have internet) before they go on sale (without the Internet).
There is no integrated IDE support for ClickOnce in F # projects, however ...
- # ClickOnce, F #, ( -) #. , .
.NET MAGE ( GUI MAGEUI) ClickOnce Visual Studio. , , "", IDE .
, ClickOnceMore, , , MAGEUI, . , . .
F # script mage.exe, ClickOnce F #. MAGEUI *.application - script zip .
F # ClickOnce. , . :
The fsc.exe compiler adds the Win32 manifest to the EXE by default. This disrupts ClickOnce deployment, as described here . The VS2010 application page for F # applications does not have the ability to "Create an application without a manifest." However, the assembly page has a Other Flags field. I added '--nowin32manifest'. Bang ... my ClickOnce deployment has started to work.