Everything runs fine locally, but I'm getting an "Unreachable code detected" error.
Here is that piece of code:
private string GetRedirectUriForCurrentConfiguration()
{
#if (DEBUG || DebugDev)
return "http://localhost:1855/";
#endif
return "http://172.16.40.39:1855";
}
I'm getting the "unreachable" message on the 4th line, at return "http://172.16.40.39:1855";
Is this statement setup correctly?