Can I use the Mono app with ClickOnce?

I use Mono to write a cross-platform application. On Windows, is it possible to deploy this application using ClickOnce?

+3
source share
2 answers

I would think that you can use ClickOnce to deploy it on Windows computers. ClickOnce will not work for anything else (of course). I don’t know what tools you use for Mono, but you can try using MageUI or Mage to create a deployment from 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

+2
source

You need to associate these three file extensions with the corresponding MIME types on your web server:

  • .deploy => application / octet-stream
  • .manifest => application / x-ms-manifest
  • .application => application / x-ms-application
+2
source

Source: https://habr.com/ru/post/1740687/


All Articles