❔ ClickOnce install URL that uses query string parameters
Hey! I'm trying to deploy a NET6 WPF ClickOnce application to an Azure blob storage, my issue is, I want the installer to be only available for people who are authorised to access the storage. This is done with query string parameters on the URL (i.e. https://foo.blob.core.windows.net/bar?a=few&security=params).
If i try to plug this URL into the ClickOnce publish profile, once I publish and attempt to run the application, it fails to install because it appears to construct the path to the application file wrong: https://foo.blob.core.windows.net/bar?a=few&security=params/My.application, with the querystring being treated as part of the main URL, instead of the correct URL: https://foo.blob.core.windows.net/bar/My.application?a=few&security=params
Is there any way to resolve this? I feel like i've exhausted all avenues
1 Reply
Looks like nothing has happened here. I will mark this as stale and this post will be archived until there is new activity.