I have one build project with a target build
<Target Name="Build">
<Message Text="Version : $(FullVersionNr)" />
<MSBuild Projects="@(WebProj)" Properties="WebProjectOutputDir=$(SitePublishPath);OutDir=$(SitePublishPath1);Configuration=$(Configuration)" />
<Message Text="Version : $(FullVersionNr)" />
and during build I set $ (FullVersionNr) to the exact build number, and that’s not the end of nr at the end
I even declared support for $ (FullVersionNr) in another file
<Import Project="Common.proj"/>
and he does not go out.
This is only one message from the parent to the child project, and I want it to be bi-directional
source
share