I am trying to use WriteCodeFragment MSBuild task to create AssemblyVersion attribute. I having a a problem creating a property group to correctly pass the ITaskItem array required for processing. Can someone help with an example.

link|improve this question

67% accept rate
Can you show what you've tried? – Benjamin Baumann Nov 29 '10 at 12:34
feedback

1 Answer

up vote 2 down vote accepted

This worked and created a BuildVersion.cs file with correct AssemblyVersion attribute of 123.123.123.123

<Target Name="BeforeBuild">
  <ItemGroup>
     <AssemblyAttributes Include="AssemblyVersion">
       <_Parameter1>123.132.123.123</_Parameter1>
     </AssemblyAttributes>
  </ItemGroup>
  <WriteCodeFragment Language="C#" OutputFile="BuildVersion.cs" AssemblyAttributes="@(AssemblyAttributes)" />
</Target>
link|improve this answer
Thanks, this helped me. It's worth noting also that you need to add BuildVersion.cs to the Compile item as well. <ItemGroup><Compile Include="BuildVersion.cs" /></ItemGroup> – Josh Einstein Jan 11 '11 at 20:51
feedback

Your Answer

 
or
required, but never shown

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