Hello,
I created web api and call it from mvc controller. I need place it to tfs.
A line of code (below) works fine on my computer.
client.BaseAddress = new Uri("http://localhost:55555/");
However if I move it to tfs, localhost:55555 may give an error.
How should I deal with it?
Thank you.