I have to modify a C# project to add new features using VS 2012 and first I am trying to build it and run it before modifying anything to make sure I have everything before starting.
When I run the app, it stops because it tries to find an environment variable and can't figure out how to create that variable without modifying the code.
Here is the piece of code where it looks for the variable:
string searchPath = Environment.GetEnvironmentVariable("OWN_VARIABLE_PATH");
I have tried to add user and system environment variables but without success.
I would really appreciate any advise.