New test.
[mono.git] / mcs / tools / xbuild / tests / Csc / 1.csproj
1 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" >
2         
3         <ItemGroup>
4                 <Input Include="test.cs" />
5                 <Output Include="test.exe" />
6         </ItemGroup>
7         
8         <Target Name="Compile1" >
9                 <Csc
10                         Sources="@(Input)"
11                 />
12         </Target>
13
14         <Target Name="Compile2" >
15                 <Csc
16                         Sources="@(Input)"
17                         AllowUnsafeBlocks="true"
18                         DisabledWarnings="0169"
19                 />
20                 <!-- Add these
21                         BaseAddress
22                         CheckForUnderflowOverFlow
23                 -->
24         </Target>
25         
26         <Target Name="Clean" >
27                 <Delete Files="@(Output)" />
28         </Target>
29         
30         <Target Name="Execute" >
31                 <Exec Command="@(Output)" />
32         </Target>
33 </Project>