importing messaging-2008 branch to trunk, going on.
[mono.git] / mcs / tools / xbuild / tests / Touch / Touch.csproj
1 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" >
2         <ItemGroup>
3                 <Files Include="a;b;c" />
4         </ItemGroup>
5         <Target Name="Main" >
6                 <Touch Files="@(Files)" AlwaysCreate="true" >
7                         <Output TaskParameter="TouchedFiles" ItemName="TouchedFiles" />
8                 </Touch>
9                 <Message Text="Touched files: @(TouchedFiles)" />
10         </Target>
11         
12         <Target Name="Clean" >
13                 <Delete Files="@(Files)" />
14         </Target>
15 </Project>