I have the following string called MasterVersion:

1.1-SNAPSHOT

I need to split it by the . and the - so it becomes a string[] array called SplitVersion, i.e.:

1
1
SNAPSHOT

I've tried everything I can think of including about a dozen variations of the below, with no joy:

<!-- doesn't work -->
<ItemGroup>
    <VersionDelimiters Include="." />
    <VersionDelimiters Include="-" />
    <SplitVersion Include="$(MasterVersion.Split(@VersionDelimiters))" />
</ItemGroup>

<!-- doesn't work either -->
<ItemGroup>
    <SplitVersion Include="$(MasterVersion.Split([`.`; `-`]))" />
</ItemGroup>

What obscure MSBuild syntax am I missing/mucking up?

link|improve this question

74% accept rate
feedback

3 Answers

Perhaps

<ItemGroup>
    <SplitVersion Include="$(MasterVersion.Split(`.`,`-`)" />
</ItemGroup>

(MSBuild should auto-convert this to array)

link|improve this answer
Gives an error. – Ian Kemp Jan 16 at 15:36
what is the error? – Daniel A. White Jan 16 at 20:30
error MSB4184: The expression ""1.1-SNAPSHOT".Split(., -)" cannot be evaluated. Input string was not in a correct format. – Ian Kemp Jan 17 at 8:08
feedback

You're using this expression within an ItemGroup, ItemGroups are used to collect required artifacts for the build. I think you're looking for a PropertyGroup

Something like this

<PropertyGroup>
  <MasterVersion>1.1-SNAPSHOT</MasterVersion>
  <SplitVersion Include="$(MasterVersion.Split(`.`,`-`)" />
</PropertyGroup>

You should remember that Properties are referenced in MSBuild using the $ (Dollar Sign). Items are referenced using the @ (at Sign).

Depending on the Group of MasterVersion, you have to change the $ to @

link|improve this answer
That doesn't parse since you cannot have Include attributes on properties. – Ian Kemp Jan 17 at 8:07
Yes thats right it should work when using it like <SplitVersion>$(MasterVersioin.Split('.','-')</SplitVersion> – Thorsten Hans Jan 17 at 19:22
No it doesn't. First of all it is missing a closing ')', secondly see my answer about array support. – Christian.K Jan 19 at 6:48
feedback

MSBuild 4.0 property functions cannot handle arrays (well basically), however when you do a

Split(`,`, `-`)

You are invoking the String.Split(params string[]) overload, which requires an array (even in C# the params keyword will create an array behind the scene and do something like Split(new string[] { ',', '-' }) internally).

What you could do is the following:

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
 ToolsVersion="4.0">

    <PropertyGroup>
        <MasterVersion>1.1-SNAPSHOT</MasterVersion>
    </PropertyGroup>

    <ItemGroup>
        <SplitVersion Include="$(MasterVersion.Replace(`-`, `.`).Split(`.`))" />
    </ItemGroup>

    <Target Name="Test">
        <Message Importance="high" Text="@(SplitVersion)"/>
    </Target>
</Project>

Or you could first create the (string) array to be passed to Split:

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
    <PropertyGroup>
        <MasterVersion>1.1-SNAPSHOT</MasterVersion>
        <Delimiters>.;-</Delimiters>
        <DelimitersArray>$(Delimiters.Split(`;`))</DelimitersArray>
    </PropertyGroup>
    <ItemGroup>
        <SplitVersion Include="$(MasterVersion.Split($(DelimitersArray)))" />
    </ItemGroup>
    <Target Name="Test">
        <Message Importance="high" Text="@(SplitVersion)"/>
    </Target>
</Project>

Which is not really better in this case ;-)

Oh, and you might want to check out this MSDN blog entry for more useful information.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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