Publish Visual basic error

2

Good evening, friends. I'm having a hard time compiling my project. He has this error. What can it be?

    
asked by anonymous 01.07.2015 / 02:08

1 answer

1

Your error:

  

Failed to copy file 'C: \ Users \ Rodrigo \ Desktop \ package \ packageprogram \ bin \ Debug \ app.publish \ setup.exe' to 'C: /setup.exe'. Unable to add 'setup.exe' to Web site. Unable to add file 'setup.exe'. Access denied.

It is trying to put setup.exe in the root folder ( C:\ ). Windows does not allow this kind of thing without administrator permission (and even if it were allowed, it would be a bad idea, not for nothing that it does not allow). Because of this the result is "Access denied".

You have to configure the " Publishing Folder location (ftp server or file path): " folder on your screen to a folder that is suitable for placing your compiled files. p>     

01.07.2015 / 02:15