0

Using a build server, is it possible to set to true the attribute 'Specific Version' of all the assemblies refereneced by project(s) being built?

If so, how?

Bo Persson
  • 90,663
  • 31
  • 146
  • 203
Sam
  • 13,934
  • 26
  • 108
  • 194

1 Answers1

0

I do not believe you can do it automatically(except hacking at the xml in the csproj files), the only way is to manually set each reference in each project.

rob
  • 8,134
  • 8
  • 58
  • 68
  • thanks for the (late) reply :) Indeed I could never find a way to do it automatically, so I wrote a custom batch in order to force specfic version = true in every csproj. Thanks ! – Sam Mar 15 '13 at 11:58