New test.
[mono.git] / mcs / tools / xbuild / tests / FindUnderPath / FindUnderPath.csproj
1 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" >
2         <ItemGroup>
3                 <Files Include="dir/a;a" />
4         </ItemGroup>
5         <Target Name="Main" >
6                 <MakeDir Directories="dir" />
7                 <Touch Files="@(Files)" AlwaysCreate="true"/>
8                 <FindUnderPath Files="@(Files)" Path="dir">
9                         <Output TaskParameter="InPath" ItemName="InPath" />
10                         <Output TaskParameter="OutOfPath" ItemName="OutOfPath" />
11                 </FindUnderPath>
12                 <Message Text="Files in path: @(InPath)" />
13                 <Message Text="Files out of path: @(OutOfPath)" />
14         </Target>
15 </Project>