Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is .deploy extension in Visual Studio

When I publish my software using Visual Studio it makes .deploy extension. E.g. my_program.exe.deploy what is it? what is it used for

like image 315
Dario Trboviæ Avatar asked Nov 17 '12 16:11

Dario Trboviæ


1 Answers

When you publish a ClickOnce application, it appends ".deploy" on all of the files on the deployment site. The reason for this is that many people deploy to a webserver, and it keeps them from having to set up MIME types for every single type of file included in the deployment. When the deployment is installed on the client machine, it removes the .deploy from the files.

like image 70
Suresh Kumar Veluswamy Avatar answered Nov 15 '22 18:11

Suresh Kumar Veluswamy