Is it possible to publish ClickOnce DIRECTLY in Azure Blob storage?

I read articles on how to publish ClickOnce deployments, and then copy the files to the Azure Blob repository (for example: http://kazinadudvari.wordpress.com/2009/06/01/how-to-deploy-clickonce-applications-to- windows-azure / ). I was just curious if it is actually possible to configure ClickOnce publishing to pull it directly into the Azure blob storage container?

If not, is it something planned for the future?

Thanks!!

+4
source share
1 answer

The Clickonce process is to pack your application in a way that deploys from a location on the Internet or on-premises. If the last click when the package is stored is not supported by the ClickOnce process. I donโ€™t know if there is a plan in the future, but I donโ€™t think I need to click once to make Azure blob dependent. You can do this by setting up the build process to pack clickonce content and upload it to Azure Blob by providing the correct credentials.

How you can use MSBUILD to create a Clickonce package , you can configure this process even more to upload this clickonce file to Azure Blob by writing a very small command line application and automation after MSBUILD has finished creating the clickonce package. In this forum discussion , the user has a code snippet to create a cmd application to download the package. You will surely find something similar to suit your requirements.

+1
source

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


All Articles