I've seen some developers, Visual Studio either Windows or web, block debug the application, for security reasons, to
maintainer not lift another application and can not see how it works
Within Visual Studio, the F5 key Starts Debugging an application. If you want to run your application without debugging, you can use CTRL+F5 instead (this will run the application more closely to a typically user using the application).
You can access each of the options under the Debug menu within Visual Studio as well.
No, what I was wondering is that in Visual Studio 2010, I have seen an application that I want to give F5 or CTRL + F5 does not work, the fact that the application developer has implemented a security that prevents running the application, because this application
is vital for my business ....
The easiest way is to compile it in release mode and not publish the pdb files, only the dlls. The pdb files contain the information needed by the debugger. Another key item for security is to use an obfuscator. This essentially scrambles the code to make
it harder to follow if someone attempts to de-compile your application.
Don't forget to mark useful responses as Answer if they helped you towards a solution.
neoaguil17
Member
8 Points
69 Posts
Aplication F5 LOCK
Feb 09, 2013 04:42 PM|LINK
I've seen some developers, Visual Studio either Windows or web, block debug the application, for security reasons, to
maintainer not lift another application and can not see how it works
HOW CAN I DO THAT
Rion William...
All-Star
27246 Points
4515 Posts
Re: Aplication F5 LOCK
Feb 09, 2013 04:53 PM|LINK
Within Visual Studio, the F5 key Starts Debugging an application. If you want to run your application without debugging, you can use CTRL+F5 instead (this will run the application more closely to a typically user using the application).
You can access each of the options under the Debug menu within Visual Studio as well.
neoaguil17
Member
8 Points
69 Posts
Re: Aplication F5 LOCK
Feb 09, 2013 11:56 PM|LINK
No, what I was wondering is that in Visual Studio 2010, I have seen an application that I want to give F5 or CTRL + F5 does not work, the fact that the application developer has implemented a security that prevents running the application, because this application is vital for my business ....
markfitzme
Star
14413 Points
2227 Posts
Re: Aplication F5 LOCK
Feb 10, 2013 03:54 AM|LINK
The easiest way is to compile it in release mode and not publish the pdb files, only the dlls. The pdb files contain the information needed by the debugger. Another key item for security is to use an obfuscator. This essentially scrambles the code to make it harder to follow if someone attempts to de-compile your application.
christiandev
Star
8607 Points
1841 Posts
Re: Aplication F5 LOCK
Feb 10, 2013 08:57 AM|LINK
Do you mean Pragmas? like #DEBUG?
http://msdn.microsoft.com/en-us/library/4y6tbswk.aspx
http://stackoverflow.com/questions/125964/easier-way-to-start-debugging-a-windows-service-in-c-sharp
Regards, Christiandev (@chrisdev80), MCPD Web (2 & 4) & MCTS Windows (www.ScoreDonkey.com)