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
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
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.