Configuration for ProjectReference in MSBuild -
Configuration for ProjectReference in MSBuild -
is possible set configuration of projectreference in msbuild?
scenario: have build script (web deploy) has number of configurations difference has how deployed , not build self. hate have maintain configurations solution/projects build part of deploy process because need configurations deployment. way can accomplish this?
another possible method of setting projectreference
configuration , platform utilize property picked msbuild's reference handling code called setplatform
, setconfiguration
. example:
<projectreference include="path project.projext"> <setplatform>platform=x64</setplatform> <setconfiguration>configuration=release</setconfiguration> </projectreference>
msbuild msbuild-projectreference
Comments
Post a Comment