[Developer Edition Version 9.6.1 (build 59531)]
The code smell (csharpsquid:S1075 => Remove this hardcoded path-delimiter.) is triggered also on URL (not only URI).
string url = “tcp://” + tcpAddress + “:” + tcpPort+ “/” + “blabla”;
This rule triggers on hardcoded path-delimiters for URLs, too, not just for local paths.
URL path delimiters are constant across all environments, so there is no need to make them dynamic.