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

In MSBuild v4 I kbow I can use functions (like string.replace) on Properties. But how can I use functions on Metadata?

I'd like to use the string.replace function as below:

<Target Name="Build">
        <Message Text="@(Files->'%(Filename).Replace(&quot;.config&quot;,&quot;&quot;)')" />
</Target>   

Unfortunately this outputs as (not quite what I was going for): log4net.Replace(".config","");ajaxPro.Replace(".config","");appSettings.Replace(".config","");cachingConfiguration20.Replace(".config","");cmsSiteConfiguration.Replace(".config","");dataProductsGraphConfiguration.Replace(".config","");ajaxPro.Replace(".config","");appSettings.Replace(".config","");cachingConfiguration20.Replace(".config","");cmsSiteConfiguratio

Any thoughts?

share|improve this question
What are you actually trying to accomplish? Is it desired end result to remove the extension from the items in a item group? You might want to approach this as create a new item group from the original item group modifying the entries. A transform or a custom task if more control is needed could do this. – Brian Walker Feb 24 '11 at 16:57
Hi. Did you solve this problem in the end? How? I have a similar issue: property definition does not work as Target has a file list as Input, not a single filename. – superjos Nov 8 '11 at 10:05

4 Answers

You can do this with a little bit of trickery:

$([System.String]::Copy('%(Filename)').Replace('config',''))

Basically, we call the static method 'Copy' to create a new string (for some reason it doesn't like it if you just try $('%(Filename)'.Replace('.config',''))), then call the replace function on the string.

The full text should look like this:

<Target Name="Build">
        <Message Text="@(Files->'$([System.String]::Copy(&quot;%(Filename)&quot;).Replace(&quot;.config&quot;,&quot;&quot;))')" />
</Target>
share|improve this answer

Those functions works in properties only (as I know). So create target which will perform operation throw batching:

<Target Name="Build"                                 
      DependsOnTargets="ProcessFile" />

<Target Name="ProcessFile"
       Outputs="%(Files.Identity)">
   <PropertyGroup>
       <OriginalFileName>%(Files.Filename)</OriginalFileName>
       <ModifiedFileName>$(OriginalFileName.Replace(".config",""))</ModifiedFileName>
   </PropertyGroup>
   <Message Text="$(ModifiedFileName)" Importance="High"/>
</Target>

Do you really need in your example such kind of task? I mean there exists MSBuild Well-known Item Metadata

EDIT: I should specify that this task processes all items in @(Files).

share|improve this answer
I did not know you could create a property based on another property. very very useful! – willem Feb 24 '11 at 10:50
Is it solved your problem? – Sergio Rykov Feb 24 '11 at 11:14
Afraid not :( Files.FileName is a collection, but $ModifiedFileName is only a single value in the end. I need the "Replace" to be run on every item in 'Files'. – willem Feb 24 '11 at 11:40
1) It processes each item in @(Files). – Sergio Rykov Feb 24 '11 at 13:18
2) Do you mean that in metadata you store several values? Please, give an example of items you use. – Sergio Rykov Feb 24 '11 at 13:19
show 1 more comment

i dont think you can use functions directly with itemgroups and metadata (that would be easy) However you can use batching:

Taking the ideas from this post: array-iteration

I was trying to trim an itemgroup to send to a commandline tool (i needed to lose .server off the filename)

    <ItemGroup>
        <Environments Include="$(TemplateFolder)\$(Branch)\*.server.xml"/>
    </ItemGroup>

    <MSBuild Projects=".\Configure.msbuild" 
             Properties="CurrentXmlFile=%(Environments.Filename)"
             Targets="Configure"/>

</Target>

<Target Name="Configure" DependsOnTargets="FullPaths">
    <PropertyGroup>
        <Trimmed>$(CurrentXmlFile.Replace('.server',''))</Trimmed>
    </PropertyGroup>

    <Message Text="Trimmed: $(Trimmed)"/>

    <Exec  Command="ConfigCmd $(Trimmed)"/>
</Target>
share|improve this answer

Got the same problem (except with MakeRelative), so I passed with another solution : Using good old CreateItem that take a string and transform to Item :)

        <ItemGroup>
            <_ToUploadFTP Include="$(PublishDir)**\*.*"></_ToUploadFTP>
        </ItemGroup>
        <CreateItem Include="$([MSBuild]::MakeRelative('c:\$(PublishDir)','c:\%(relativedir)%(filename)%(_ToUploadFTP.extension)'))">
            <Output ItemName="_ToUploadFTPRelative" TaskParameter="Include"/>
        </CreateItem>
        <FtpUpload Username="$(UserName)" 
                   Password="$(UserPassword)" 
                   RemoteUri="$(FtpHost)"
                   LocalFiles="@(_ToUploadFTP)"
                   RemoteFiles="@(_ToUploadFTPRelative->'$(FtpSitePath)/%(relativedir)%(filename)%(extension)')"
                   UsePassive="$(FtpPassiveMode)" ></FtpUpload>
share|improve this answer

Your Answer

 
discard

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

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