vote up 0 vote down star

Is it possible to pass a property from one msbuild project to another? So in one .proj file there is a property with PropertyName="Foo" (for example). Can we access this from another .proj file i.e. use "$(Foo)" in the other msbuild project?

flag

80% accept rate

2 Answers

vote up 1 vote down check

One way to do it is to pass properties as you call the next script, e.g.

<MSBuild Projects="another.proj" Properties="PropertyName=$(Foo)" />
link|flag
vote up 0 vote down

By using the Import element in the file where you want to use the property.

<Import Project="ProjectPath"/>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.