Author: msierad
Date: 2007-05-30 12:22:55 -0400 (Wed, 30 May 2007)
New Revision: 78232
Added:
trunk/mcs/tools/xbuild/tests/standalone/projref/
trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld.sln
trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld/
trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld/HelloWorld.csproj
trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld/Program.cs
trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld/Properties/
trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld/Properties/AssemblyInfo.cs
trunk/mcs/tools/xbuild/tests/standalone/projref/Library/
trunk/mcs/tools/xbuild/tests/standalone/projref/Library/Class1.cs
trunk/mcs/tools/xbuild/tests/standalone/projref/Library/Library.csproj
trunk/mcs/tools/xbuild/tests/standalone/projref/Library/Properties/
trunk/mcs/tools/xbuild/tests/standalone/projref/Library/Properties/AssemblyInfo.cs
Modified:
trunk/mcs/tools/xbuild/tests/ChangeLog
Log:
2007-05-30 Marek Sieradzki <[EMAIL PROTECTED]>
* standalone/projref: Added two projects where one project references
library.
Modified: trunk/mcs/tools/xbuild/tests/ChangeLog
===================================================================
--- trunk/mcs/tools/xbuild/tests/ChangeLog 2007-05-30 16:08:07 UTC (rev
78231)
+++ trunk/mcs/tools/xbuild/tests/ChangeLog 2007-05-30 16:22:55 UTC (rev
78232)
@@ -1,3 +1,8 @@
+2007-05-30 Marek Sieradzki <[EMAIL PROTECTED]>
+
+ * standalone/projref: Added two projects where one project references
+ library.
+
2006-07-17 Marek Sieradzki <[EMAIL PROTECTED]>
* Csc/Csc.csproj: Moved to 1.csproj and 2.csproj.
Added:
trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld/HelloWorld.csproj
===================================================================
---
trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld/HelloWorld.csproj
2007-05-30 16:08:07 UTC (rev 78231)
+++
trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld/HelloWorld.csproj
2007-05-30 16:22:55 UTC (rev 78232)
@@ -0,0 +1,62 @@
+<Project DefaultTargets="Build"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProductVersion>8.0.50727</ProductVersion>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{B9EF3A95-B997-4537-A1A4-4B488C5A3AE9}</ProjectGuid>
+ <OutputType>Exe</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>HelloWorld</RootNamespace>
+ <AssemblyName>HelloWorld</AssemblyName>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU'
">
+ <DebugSymbols>True</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>False</Optimize>
+ <OutputPath>./bin/Debug/</OutputPath>
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ <OutputType>Exe</OutputType>
+ <AssemblyName>HelloWorld</AssemblyName>
+ <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' ==
'Release|AnyCPU' ">
+ <DebugType>pdbonly</DebugType>
+ <Optimize>True</Optimize>
+ <OutputPath>./bin/Release/</OutputPath>
+ <DefineConstants>TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ <OutputType>Exe</OutputType>
+ <AssemblyName>HelloWorld</AssemblyName>
+ <DebugSymbols>True</DebugSymbols>
+ <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
+ </PropertyGroup>
+ <ItemGroup>
+ <Reference Include="System" />
+ <Reference Include="System.Data" />
+ <Reference Include="System.Xml" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="Program.cs" />
+ <Compile Include="Properties\AssemblyInfo.cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\Library\Library.csproj">
+ <Project>{EC5FC27C-3E8E-424A-9648-6A105AD66EF4}</Project>
+ <Name>Library</Name>
+ </ProjectReference>
+ </ItemGroup>
+ <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
+ <!-- To modify your build process, add your task inside one of the targets
below and uncomment it.
+ Other similar extension points exist, see Microsoft.Common.targets.
+ <Target Name="BeforeBuild">
+ </Target>
+ <Target Name="AfterBuild">
+ </Target>
+ -->
+</Project>
\ No newline at end of file
Added: trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld/Program.cs
===================================================================
--- trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld/Program.cs
2007-05-30 16:08:07 UTC (rev 78231)
+++ trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld/Program.cs
2007-05-30 16:22:55 UTC (rev 78232)
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace ConsoleApplication1
+{
+ class Program
+ {
+ static void Main(string[] args)
+ {
+ Console.WriteLine(Library.Class1.HelloWorld());
+ }
+ }
+}
Property changes on:
trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld/Program.cs
___________________________________________________________________
Name: svn:eol-style
+ native
Added:
trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld/Properties/AssemblyInfo.cs
===================================================================
---
trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld/Properties/AssemblyInfo.cs
2007-05-30 16:08:07 UTC (rev 78231)
+++
trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld/Properties/AssemblyInfo.cs
2007-05-30 16:22:55 UTC (rev 78232)
@@ -0,0 +1,33 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("ConsoleApplication1")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("ConsoleApplication1")]
+[assembly: AssemblyCopyright("Copyright © 2006")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed
to COM
+[assembly: Guid("9e46ce94-4155-40a9-bb83-0628c3c959ce")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
Property changes on:
trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld/Properties/AssemblyInfo.cs
___________________________________________________________________
Name: svn:eol-style
+ native
Added: trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld.sln
===================================================================
--- trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld.sln
2007-05-30 16:08:07 UTC (rev 78231)
+++ trunk/mcs/tools/xbuild/tests/standalone/projref/HelloWorld.sln
2007-05-30 16:22:55 UTC (rev 78232)
@@ -0,0 +1,35 @@
+Microsoft Visual Studio Solution File, Format Version 9.00
+#MonoDevelop
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Library",
"./Library/Library.csproj", "{}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HelloWorld",
"./HelloWorld/HelloWorld.csproj", "{}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {}.Release|Any CPU.Build.0 = Release|Any CPU
+ {}.Release|Any CPU.Build.0 = Release|Any CPU
+ {B9EF3A95-B997-4537-A1A4-4B488C5A3AE9}.Debug|Any CPU.ActiveCfg
= Debug|Any CPU
+ {B9EF3A95-B997-4537-A1A4-4B488C5A3AE9}.Debug|Any CPU.Build.0 =
Debug|Any CPU
+ {B9EF3A95-B997-4537-A1A4-4B488C5A3AE9}.Release|Any
CPU.ActiveCfg = Release|Any CPU
+ {B9EF3A95-B997-4537-A1A4-4B488C5A3AE9}.Release|Any CPU.Build.0
= Release|Any CPU
+ {EC5FC27C-3E8E-424A-9648-6A105AD66EF4}.Debug|Any CPU.ActiveCfg
= Debug|Any CPU
+ {EC5FC27C-3E8E-424A-9648-6A105AD66EF4}.Debug|Any CPU.Build.0 =
Debug|Any CPU
+ {EC5FC27C-3E8E-424A-9648-6A105AD66EF4}.Release|Any
CPU.ActiveCfg = Release|Any CPU
+ {EC5FC27C-3E8E-424A-9648-6A105AD66EF4}.Release|Any CPU.Build.0
= Release|Any CPU
+ EndGlobalSection
+ GlobalSection(NestedProjects) = preSolution
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
Added: trunk/mcs/tools/xbuild/tests/standalone/projref/Library/Class1.cs
===================================================================
--- trunk/mcs/tools/xbuild/tests/standalone/projref/Library/Class1.cs
2007-05-30 16:08:07 UTC (rev 78231)
+++ trunk/mcs/tools/xbuild/tests/standalone/projref/Library/Class1.cs
2007-05-30 16:22:55 UTC (rev 78232)
@@ -0,0 +1,14 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace Library
+{
+ public class Class1
+ {
+ public static string HelloWorld()
+ {
+ return "Hello world!";
+ }
+ }
+}
Property changes on:
trunk/mcs/tools/xbuild/tests/standalone/projref/Library/Class1.cs
___________________________________________________________________
Name: svn:eol-style
+ native
Added: trunk/mcs/tools/xbuild/tests/standalone/projref/Library/Library.csproj
===================================================================
--- trunk/mcs/tools/xbuild/tests/standalone/projref/Library/Library.csproj
2007-05-30 16:08:07 UTC (rev 78231)
+++ trunk/mcs/tools/xbuild/tests/standalone/projref/Library/Library.csproj
2007-05-30 16:22:55 UTC (rev 78232)
@@ -0,0 +1,56 @@
+<Project DefaultTargets="Build"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProductVersion>8.0.50727</ProductVersion>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{EC5FC27C-3E8E-424A-9648-6A105AD66EF4}</ProjectGuid>
+ <OutputType>Library</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>Library</RootNamespace>
+ <AssemblyName>Library</AssemblyName>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU'
">
+ <DebugSymbols>True</DebugSymbols>
+ <DebugType>full</DebugType>
+ <Optimize>False</Optimize>
+ <OutputPath>./bin/Debug/</OutputPath>
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ <OutputType>Library</OutputType>
+ <AssemblyName>Library</AssemblyName>
+ <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)|$(Platform)' ==
'Release|AnyCPU' ">
+ <DebugType>pdbonly</DebugType>
+ <Optimize>True</Optimize>
+ <OutputPath>./bin/Release/</OutputPath>
+ <DefineConstants>TRACE</DefineConstants>
+ <ErrorReport>prompt</ErrorReport>
+ <WarningLevel>4</WarningLevel>
+ <OutputType>Library</OutputType>
+ <AssemblyName>Library</AssemblyName>
+ <DebugSymbols>True</DebugSymbols>
+ <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
+ </PropertyGroup>
+ <ItemGroup>
+ <Reference Include="System" />
+ <Reference Include="System.Data" />
+ <Reference Include="System.Xml" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="Class1.cs" />
+ <Compile Include="Properties\AssemblyInfo.cs" />
+ </ItemGroup>
+ <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
+ <!-- To modify your build process, add your task inside one of the targets
below and uncomment it.
+ Other similar extension points exist, see Microsoft.Common.targets.
+ <Target Name="BeforeBuild">
+ </Target>
+ <Target Name="AfterBuild">
+ </Target>
+ -->
+</Project>
\ No newline at end of file
Added:
trunk/mcs/tools/xbuild/tests/standalone/projref/Library/Properties/AssemblyInfo.cs
===================================================================
---
trunk/mcs/tools/xbuild/tests/standalone/projref/Library/Properties/AssemblyInfo.cs
2007-05-30 16:08:07 UTC (rev 78231)
+++
trunk/mcs/tools/xbuild/tests/standalone/projref/Library/Properties/AssemblyInfo.cs
2007-05-30 16:22:55 UTC (rev 78232)
@@ -0,0 +1,35 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// General Information about an assembly is controlled through the following
+// set of attributes. Change these attribute values to modify the information
+// associated with an assembly.
+[assembly: AssemblyTitle("Library")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Library")]
+[assembly: AssemblyCopyright("Copyright © 2006")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Setting ComVisible to false makes the types in this assembly not visible
+// to COM components. If you need to access a type in this assembly from
+// COM, set the ComVisible attribute to true on that type.
+[assembly: ComVisible(false)]
+
+// The following GUID is for the ID of the typelib if this project is exposed
to COM
+[assembly: Guid("75838aba-a19e-47ae-8591-c77161736dbd")]
+
+// Version information for an assembly consists of the following four values:
+//
+// Major Version
+// Minor Version
+// Build Number
+// Revision
+//
+// You can specify all the values or you can default the Revision and Build
Numbers
+// by using the '*' as shown below:
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
Property changes on:
trunk/mcs/tools/xbuild/tests/standalone/projref/Library/Properties/AssemblyInfo.cs
___________________________________________________________________
Name: svn:eol-style
+ native
_______________________________________________
Mono-patches maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches