I am working on a project with several developers, and the developed application is launched through the launch application, which transmits parameters such as login, their location, etc. Now, when I debug the application, I set a breakpoint on the code that parses the input parameters and assigns the username variable my username, etc.
I could hard code these values, but:
- I think this is bad practice.
- I am worried that the file will be checked in our VCS and will have catastrophic ripple effects.
- Several developers are working on the project, so hard coding my name, location assignments, etc. really not an option.
- I cannot make the file read-only, because it is under active development, and I constantly need to update the version of the specified file.
My question is:
- Is there a built-in method or extension to AUTOMATICALLY assign variables to values in debug mode. Right now I am highlighting a variable and typing my text, can it be automated?
Thank you in advance
source
share