You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ws...@apache.org on 2009/04/07 05:00:25 UTC

svn commit: r762606 - in /continuum/sandbox/examples/MySolution: ./ MyClassLibrary/ MyClassLibrary/Class1.cs MyClassLibrary/MyClassLibrary.csproj MyClassLibrary/Properties/ MyClassLibrary/Properties/AssemblyInfo.cs MySolution.sln

Author: wsmoak
Date: Tue Apr  7 03:00:24 2009
New Revision: 762606

URL: http://svn.apache.org/viewvc?rev=762606&view=rev
Log:
[CONTINUUM-1997] Add example .NET project to test custom artifact types

Added:
    continuum/sandbox/examples/MySolution/
    continuum/sandbox/examples/MySolution/MyClassLibrary/
    continuum/sandbox/examples/MySolution/MyClassLibrary/Class1.cs   (with props)
    continuum/sandbox/examples/MySolution/MyClassLibrary/MyClassLibrary.csproj   (with props)
    continuum/sandbox/examples/MySolution/MyClassLibrary/Properties/
    continuum/sandbox/examples/MySolution/MyClassLibrary/Properties/AssemblyInfo.cs   (with props)
    continuum/sandbox/examples/MySolution/MySolution.sln   (with props)

Added: continuum/sandbox/examples/MySolution/MyClassLibrary/Class1.cs
URL: http://svn.apache.org/viewvc/continuum/sandbox/examples/MySolution/MyClassLibrary/Class1.cs?rev=762606&view=auto
==============================================================================
--- continuum/sandbox/examples/MySolution/MyClassLibrary/Class1.cs (added)
+++ continuum/sandbox/examples/MySolution/MyClassLibrary/Class1.cs Tue Apr  7 03:00:24 2009
@@ -0,0 +1,10 @@
+using System;
+using System.Collections.Generic;
+using System.Text;
+
+namespace MyClassLibrary
+{
+    public class Class1
+    {
+    }
+}

Propchange: continuum/sandbox/examples/MySolution/MyClassLibrary/Class1.cs
------------------------------------------------------------------------------
    svn:executable = *

Added: continuum/sandbox/examples/MySolution/MyClassLibrary/MyClassLibrary.csproj
URL: http://svn.apache.org/viewvc/continuum/sandbox/examples/MySolution/MyClassLibrary/MyClassLibrary.csproj?rev=762606&view=auto
==============================================================================
--- continuum/sandbox/examples/MySolution/MyClassLibrary/MyClassLibrary.csproj (added)
+++ continuum/sandbox/examples/MySolution/MyClassLibrary/MyClassLibrary.csproj Tue Apr  7 03:00:24 2009
@@ -0,0 +1,47 @@
+<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>{D1902730-20C6-46EA-8614-ACC72B0350C3}</ProjectGuid>
+    <OutputType>Library</OutputType>
+    <AppDesignerFolder>Properties</AppDesignerFolder>
+    <RootNamespace>MyClassLibrary</RootNamespace>
+    <AssemblyName>MyClassLibrary</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>
+  </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>
+  </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

Propchange: continuum/sandbox/examples/MySolution/MyClassLibrary/MyClassLibrary.csproj
------------------------------------------------------------------------------
    svn:executable = *

Added: continuum/sandbox/examples/MySolution/MyClassLibrary/Properties/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/continuum/sandbox/examples/MySolution/MyClassLibrary/Properties/AssemblyInfo.cs?rev=762606&view=auto
==============================================================================
--- continuum/sandbox/examples/MySolution/MyClassLibrary/Properties/AssemblyInfo.cs (added)
+++ continuum/sandbox/examples/MySolution/MyClassLibrary/Properties/AssemblyInfo.cs Tue Apr  7 03:00:24 2009
@@ -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("MyClassLibrary")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("MyClassLibrary")]
+[assembly: AssemblyCopyright("Copyright ©  2009")]
+[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("e9174199-8d04-4167-b56e-706e7e4a2b4d")]
+
+// 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")]

Propchange: continuum/sandbox/examples/MySolution/MyClassLibrary/Properties/AssemblyInfo.cs
------------------------------------------------------------------------------
    svn:executable = *

Added: continuum/sandbox/examples/MySolution/MySolution.sln
URL: http://svn.apache.org/viewvc/continuum/sandbox/examples/MySolution/MySolution.sln?rev=762606&view=auto
==============================================================================
--- continuum/sandbox/examples/MySolution/MySolution.sln (added)
+++ continuum/sandbox/examples/MySolution/MySolution.sln Tue Apr  7 03:00:24 2009
@@ -0,0 +1,20 @@
+
+Microsoft Visual Studio Solution File, Format Version 9.00
+# Visual Studio 2005
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyClassLibrary", "MyClassLibrary\MyClassLibrary.csproj", "{D1902730-20C6-46EA-8614-ACC72B0350C3}"
+EndProject
+Global
+	GlobalSection(SolutionConfigurationPlatforms) = preSolution
+		Debug|Any CPU = Debug|Any CPU
+		Release|Any CPU = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(ProjectConfigurationPlatforms) = postSolution
+		{D1902730-20C6-46EA-8614-ACC72B0350C3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+		{D1902730-20C6-46EA-8614-ACC72B0350C3}.Debug|Any CPU.Build.0 = Debug|Any CPU
+		{D1902730-20C6-46EA-8614-ACC72B0350C3}.Release|Any CPU.ActiveCfg = Release|Any CPU
+		{D1902730-20C6-46EA-8614-ACC72B0350C3}.Release|Any CPU.Build.0 = Release|Any CPU
+	EndGlobalSection
+	GlobalSection(SolutionProperties) = preSolution
+		HideSolutionNode = FALSE
+	EndGlobalSection
+EndGlobal

Propchange: continuum/sandbox/examples/MySolution/MySolution.sln
------------------------------------------------------------------------------
    svn:executable = *