19

I am looking for a MSBuild task that will tell me the version of a specific dll. Is there a task available for this?

In my case the dll is a .Net assembly, so I'm actually looking for Assembly.FullName.

Mike Schall
  • 5,829
  • 4
  • 41
  • 47

2 Answers2

27

GetAssemblyIdentity is your man. This task outputs contain item metadata entries named Version, PublicKeyToken, and Culture.

<ItemGroup>
    <MyAssemblies Include="File1.dll;File2.dll" />
</ItemGroup>

<Target Name="RetrieveIdentities>
    <GetAssemblyIdentity
        AssemblyFiles="@(MyAssemblies)">
        <Output
            TaskParameter="Assemblies"
            ItemName="MyAssemblyIdentities"/>
    </GetAssemblyIdentity>
</Target>
Julien Hoarau
  • 48,964
  • 20
  • 128
  • 117
25

Thanks madgnome! I thought I would share the working code.

<Target Name="UpdateWebConfigVersion">
    <GetAssemblyIdentity AssemblyFiles="lib\foo.dll">
        <Output TaskParameter="Assemblies" ItemName="fooAssemblyInfo"/>
    </GetAssemblyIdentity>
    <XmlUpdate XmlFileName="src\Web\ServiceModel.Extensions.config"
            XPath="//extensions/behaviorExtensions/add[@name='silverlightFaults']/@type"
            Value="foo.ServiceModel.Extensions.Behaviors.SilverlightFaultBehavior, foo, Version=%(fooAssemblyInfo.Version), Culture=neutral, PublicKeyToken=XXXXXXXX"/>
</Target>
Mike Schall
  • 5,829
  • 4
  • 41
  • 47