I’m looking for a way to hit a web app/restful service URL from msbuild script to trigger remote procedure.
Is there any way how I can do that except calling that external app?
Ideally I’m looking for a way to break a build sequence if service returned something else that http 200
I’m looking for a way to hit a web app/restful service URL from msbuild
Share
I use the MSBuild Community Tasks a lot. They add extra tasks for MSBuilds. In there is a HttpRequest task which, from the look of it, does what you want.
Hope this helps