I would like to know if there is an add-in for visual studio that guarantees that while I am in the development environment make some changes but when I generate the project build, this commented part is reviewed warning me that in production will not work
Example:
// DESENVOLVIMENTO
string servidor = "umaString";
// PRODUÇÃO
string servidor = "outraString";
Sometimes it is necessary to make these comments and force certain actions only in the development environment but when I build build sometimes I forget to reverse this change and I have rework
Thank you in advance