2006-07-17 Marek Sieradzki <marek.sieradzki@gmail.com>
authorMarek Sieradzki <msierad@mono-cvs.ximian.com>
Mon, 17 Jul 2006 18:03:09 +0000 (18:03 -0000)
committerMarek Sieradzki <msierad@mono-cvs.ximian.com>
Mon, 17 Jul 2006 18:03:09 +0000 (18:03 -0000)
        * Csc/Csc.csproj: Moved to 1.csproj and 2.csproj.

svn path=/trunk/mcs/; revision=62684

mcs/tools/xbuild/tests/ChangeLog
mcs/tools/xbuild/tests/Csc/1.csproj [new file with mode: 0644]
mcs/tools/xbuild/tests/Csc/2.csproj [new file with mode: 0644]
mcs/tools/xbuild/tests/Csc/Csc.csproj [deleted file]

index d1c32cf520385d1d659472227ea0bd7a97a98eb2..46da41cf22f474c2355570c43344ed0e8c0c5582 100644 (file)
@@ -1,3 +1,7 @@
+2006-07-17  Marek Sieradzki  <marek.sieradzki@gmail.com>
+
+       * Csc/Csc.csproj: Moved to 1.csproj and 2.csproj.
+
 2006-06-22  Marek Sieradzki  <marek.sieradzki@gmail.com>
 
        * standalone/hello_world: Added hello world type project.
diff --git a/mcs/tools/xbuild/tests/Csc/1.csproj b/mcs/tools/xbuild/tests/Csc/1.csproj
new file mode 100644 (file)
index 0000000..6d1ee41
--- /dev/null
@@ -0,0 +1,33 @@
+<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" >
+       
+       <ItemGroup>
+               <Input Include="test.cs" />
+               <Output Include="test.exe" />
+       </ItemGroup>
+       
+       <Target Name="Compile1" >
+               <Csc
+                       Sources="@(Input)"
+               />
+       </Target>
+
+       <Target Name="Compile2" >
+               <Csc
+                       Sources="@(Input)"
+                       AllowUnsafeBlocks="true"
+                       DisabledWarnings="0169"
+               />
+               <!-- Add these
+                       BaseAddress
+                       CheckForUnderflowOverFlow
+               -->
+       </Target>
+       
+       <Target Name="Clean" >
+               <Delete Files="@(Output)" />
+       </Target>
+       
+       <Target Name="Execute" >
+               <Exec Command="@(Output)" />
+       </Target>
+</Project>
diff --git a/mcs/tools/xbuild/tests/Csc/2.csproj b/mcs/tools/xbuild/tests/Csc/2.csproj
new file mode 100644 (file)
index 0000000..265b149
--- /dev/null
@@ -0,0 +1,13 @@
+<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTarget="Build">
+       
+       <ItemGroup>
+               <Input Include="test.cs" />
+               <Output Include="test.exe" />
+       </ItemGroup>
+       
+       <Target Name="Build" >
+               <Csc
+                       Sources="@(Input)"
+               />
+       </Target>
+</Project>
diff --git a/mcs/tools/xbuild/tests/Csc/Csc.csproj b/mcs/tools/xbuild/tests/Csc/Csc.csproj
deleted file mode 100644 (file)
index 6d1ee41..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" >
-       
-       <ItemGroup>
-               <Input Include="test.cs" />
-               <Output Include="test.exe" />
-       </ItemGroup>
-       
-       <Target Name="Compile1" >
-               <Csc
-                       Sources="@(Input)"
-               />
-       </Target>
-
-       <Target Name="Compile2" >
-               <Csc
-                       Sources="@(Input)"
-                       AllowUnsafeBlocks="true"
-                       DisabledWarnings="0169"
-               />
-               <!-- Add these
-                       BaseAddress
-                       CheckForUnderflowOverFlow
-               -->
-       </Target>
-       
-       <Target Name="Clean" >
-               <Delete Files="@(Output)" />
-       </Target>
-       
-       <Target Name="Execute" >
-               <Exec Command="@(Output)" />
-       </Target>
-</Project>