0

I have a custom MSBuild task that implements an output property. How can I retrieve the value of that property on the build server in build workflow activities that occur after the MSBuild activity has completed?

Thanks, James

James
  • 389
  • 2
  • 17

1 Answers1

0

Write the property to a file and read it in your build activity. The name of the file should be passed to msbuild on the command line to reduce coupling between team build and msbuild

Stephen Connolly
  • 1,639
  • 10
  • 15