Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Below is a snippet of my NANT scripts that read the Assemblyversion from one of my C# project and increase it automatically.

<target name="CheckAssembly">
    <echo message="Check Assembly File version..." />
    <property name="file.contents" value="" />
    <loadfile property="file.contents" file="${properties.path}\AssemblyInfo.cs" />
    <regex pattern="(AssemblyVersionAttribute|AssemblyVersion)\(\x22(?'major'\d+).(?'minor'\d+).(?'build'\d+).(?'revision'\d+)\x22\)" input="${file.contents}" />
    <property name="application.AssemblyInfo.dir" value="${properties.path}" />
    <property name="AssemblyVersion" value="${major}.${minor}.${build}.${int::parse(revision)}" />

    <if test="${int::parse(updates.count)&gt;1}">
        <property name="AssemblyVersion" value="${major}.${minor}.${build}.${int::parse(revision) +1}" />
        <call target="UpdateAssembly" />
    </if>

</target>

<target name="UpdateAssembly" description="generates the version number">
    <echo message="Setting the build version to ${AssemblyVersion}..." />
    <attrib file="${application.AssemblyInfo.dir}\AssemblyInfo.cs" readonly="false" />
    <asminfo output="${application.AssemblyInfo.dir}\AssemblyInfo.cs" language="CSharp">
        <imports>
            <import namespace="System.Runtime.CompilerServices" />
            <import namespace="System.Reflection" />
            <import namespace="System.Runtime.InteropServices" />
        </imports>
        <attributes>
            <attribute type="AssemblyTitleAttribute" value="${appName}" />
            <attribute type="AssemblyDescriptionAttribute" value="" />
            <attribute type="AssemblyConfigurationAttribute" value="" />
            <attribute type="AssemblyCompanyAttribute" value="Company Name" />
            <attribute type="AssemblyProductAttribute" value="" />
            <attribute type="AssemblyCopyrightAttribute" value="Copyright ©  2010-2013" />
            <attribute type="AssemblyTrademarkAttribute" value="" />
            <attribute type="AssemblyCultureAttribute" value="" />
            <attribute type="AssemblyVersionAttribute" value="${AssemblyVersion}" />
            <attribute type="AssemblyFileVersionAttribute" value="${AssemblyVersion}" />
        </attributes>
    </asminfo>
    <attrib file="${application.AssemblyInfo.dir}\AssemblyInfo.cs" readonly="true" />
</target>

Now i am facing my next challenge. I have a C++ project that compiles fine using NANT but I want to update the assembly version similar to what you see above. In this C++ project I have my ProductVersion saved in the resource file (.rc).

Do you know if NANT has any functions/tag that assist in changing this? If not do you have any idea of how I should approach this? I already thought about read file content and use regex to do this.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.