I am using Mono to write a cross-platform application. On Windows, is it possible to deploy this application using ClickOnce?
+1
A:
You should associate these three file extensions with their corresponding MIME types in your web server:
- .deploy => application/octet-stream
- .manifest => application/x-ms-manifest
- .application => application/x-ms-application
Byron Sommardahl
2010-04-11 19:26:11
+1
A:
I would think you could use ClickOnce to deploy it to Windows machines. ClickOnce isn't going to work on anything else (of course). I don't know what tools you use for Mono, but you could try using MageUI or Mage to create a deployment out of the files and see if it works.
You also need these MIME types if you are targeting .NET 3.5:
.msp --> application/microsoftpath
.msu --> application/microsoftupdate
RobinDotNet
2010-04-12 09:08:26