In my MSBuild, I created an item group, like the following:

<ItemGroup>
    <SomeFileType  Include="dir/file1.ext" />
    <SomeFileType  Include="dir/file2.ext" />
    <SomeFileType  Include="dir/file3.ext" />
</ItemGroup>

Then I try to publish the website via FTP. This item group above doesn't get picked up unless I change "SomeFileType" to "Content".

The reason why I want to use a custom name is that later in the build file I need to reference this collection of files using @(SomeFileType).

Do you have any idea to accomplish both uploading the files and being able to reference this group of items?

Thanks!

P.S. I also tried to add the following to make sure all the files can be picked up.

<Content Include="dir/*.ext" />

But this solution is not ideal. First, it covers all the files. Second, in my solution explorer, some files show up twice.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

What happens if you try instead:

<Content Include="@(SomeFileType)" />

You get to still refer to them separately, and you aren't using a wildcard.

Try this to see if it prevents the files from showing up twice.

<Content Include="@(SomeFileType)">
   <Visible>false</Visible>
</Content>
link|improve this answer
Thank you! Appreciate your help! I tried this as well. Unfortunately it still causes the files to show up twice. – Grace Shao Mar 30 '11 at 13:30
Sorry, Visible works! – Grace Shao Apr 24 '11 at 0:37
feedback

Your Answer

 
or
required, but never shown

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