Reputation: 11810
I'm deploying my application using ClickOnce.
I want to register a file association but I can't manage to make it work: What should I use as ProgID in the File Associations section of the Publish Options?
Upvotes: 13
Views: 5887
Reputation: 15388
Some examples from the registry subkeys
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\ ~ \OpenWithProgids
:
Paint.Picture
VisualStudio.Launcher.csproj.15.0
Excel.CSV
Word.Document.12
WMP11.AssocFile.MP4
Upvotes: 3
Reputation: 11877
It's a name that uniquely identifies the file type. So a description might be "Document created with Microsoft Word" and the ProgID might be "Word". If your app name is short, you can just put that in there. If your app name isn't short, put in some abbreviation of it.
Upvotes: 14