Can I use Click Once Deployment with F #?

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).

+5
source share
3 answers

There is no integrated IDE support for ClickOnce in F # projects, however ...

- # ClickOnce, F #, ( -) #. , .

.NET MAGE ( GUI MAGEUI) ClickOnce Visual Studio. , , "", IDE .

, ClickOnceMore, , , MAGEUI, . , . .

+5

F # script mage.exe, ClickOnce F #. MAGEUI *.application - script zip .

+4

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.

+2
source

All Articles