thorpedosg

jZccq4EP

Aug 6th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. TFS Build using conditional compilation symbols (DefineConstants) from .csproj file
  2. private const string STR_WS_EndPoint =
  3. #if INTEGRATION
  4. "Integration_WS_EndPoint";
  5. #elif DEVELOPMENT
  6. "Development_WS_EndPoint";
  7. #elif DEBUG
  8. "Debug_WS_EndPoint";
  9. #else
  10. "Release_WS_EndPoint";
  11. #endif
Add Comment
Please, Sign In to add comment