[chaos-svn] SF.net SVN: chaos: [1233] trunk/chaos.net
Status: Pre-Alpha
Brought to you by:
sf_hal
|
From: <per...@us...> - 2007-03-15 13:14:04
|
Revision: 1233
http://chaos.svn.sourceforge.net/chaos/?rev=1233&view=rev
Author: perlundberg
Date: 2007-03-15 06:14:02 -0700 (Thu, 15 Mar 2007)
Log Message:
-----------
Added the Chaos.Service assembly.
Added Paths:
-----------
trunk/chaos.net/Chaos.Service/
trunk/chaos.net/Chaos.Service/AssemblyInfo.cs
trunk/chaos.net/Chaos.Service/Chaos.Service.csproj
trunk/chaos.net/Chaos.Service/Chaos.Service.sln
trunk/chaos.net/Chaos.Service/MainClass.cs
Added: trunk/chaos.net/Chaos.Service/AssemblyInfo.cs
===================================================================
--- trunk/chaos.net/Chaos.Service/AssemblyInfo.cs (rev 0)
+++ trunk/chaos.net/Chaos.Service/AssemblyInfo.cs 2007-03-15 13:14:02 UTC (rev 1233)
@@ -0,0 +1,31 @@
+using System.Reflection;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+
+// Information about this assembly is defined by the following
+// attributes.
+//
+// change them to the information which is associated with the assembly
+// you compile.
+
+[assembly: AssemblyTitle("Chaos.Service")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("Chaos.Service")]
+[assembly: AssemblyCopyright("")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// This sets the default COM visibility of types in the assembly to invisible.
+// If you need to expose a type to COM, use [ComVisible(true)] on that type.
+[assembly: ComVisible(false)]
+
+// The assembly version has following format :
+//
+// Major.Minor.Build.Revision
+//
+// You can specify all values by your own or you can build default build and revision
+// numbers with the '*' character (the default):
+
+[assembly: AssemblyVersion("1.0.*")]
Added: trunk/chaos.net/Chaos.Service/Chaos.Service.csproj
===================================================================
--- trunk/chaos.net/Chaos.Service/Chaos.Service.csproj (rev 0)
+++ trunk/chaos.net/Chaos.Service/Chaos.Service.csproj 2007-03-15 13:14:02 UTC (rev 1233)
@@ -0,0 +1,35 @@
+<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <OutputType>Library</OutputType>
+ <RootNamespace>Chaos.Service</RootNamespace>
+ <AssemblyName>Chaos.Service</AssemblyName>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <ProjectGuid>{B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}</ProjectGuid>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
+ <OutputPath>bin\Debug\</OutputPath>
+ <Optimize>False</Optimize>
+ <DefineConstants>DEBUG;TRACE</DefineConstants>
+ <DebugSymbols>True</DebugSymbols>
+ <DebugType>Full</DebugType>
+ <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
+ </PropertyGroup>
+ <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
+ <OutputPath>bin\Release\</OutputPath>
+ <Optimize>True</Optimize>
+ <DefineConstants>TRACE</DefineConstants>
+ <DebugSymbols>False</DebugSymbols>
+ <DebugType>None</DebugType>
+ <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
+ </PropertyGroup>
+ <ItemGroup>
+ <Reference Include="System" />
+ <Reference Include="System.Xml" />
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="MainClass.cs" />
+ <Compile Include="AssemblyInfo.cs" />
+ </ItemGroup>
+ <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
+</Project>
\ No newline at end of file
Added: trunk/chaos.net/Chaos.Service/Chaos.Service.sln
===================================================================
--- trunk/chaos.net/Chaos.Service/Chaos.Service.sln (rev 0)
+++ trunk/chaos.net/Chaos.Service/Chaos.Service.sln 2007-03-15 13:14:02 UTC (rev 1233)
@@ -0,0 +1,16 @@
+Microsoft Visual Studio Solution File, Format Version 9.00
+# SharpDevelop 2.0.0.1591
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Chaos.Service", "Chaos.Service.csproj", "{B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}.Release|Any CPU.Build.0 = Release|Any CPU
+ {B38BA300-40EA-4306-84DB-EF0D2D4D0A5D}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ EndGlobalSection
+EndGlobal
Added: trunk/chaos.net/Chaos.Service/MainClass.cs
===================================================================
--- trunk/chaos.net/Chaos.Service/MainClass.cs (rev 0)
+++ trunk/chaos.net/Chaos.Service/MainClass.cs 2007-03-15 13:14:02 UTC (rev 1233)
@@ -0,0 +1,21 @@
+/*
+ * Created by SharpDevelop.
+ * User: per
+ * Date: 2007-03-15
+ * Time: 14:12
+ *
+ * To change this template use Tools | Options | Coding | Edit Standard Headers.
+ */
+using System;
+using System.Collections.Generic;
+
+namespace Chaos.Service
+{
+ /// <summary>
+ /// Description of MainClass.
+ /// </summary>
+ public class MainClass
+ {
+
+ }
+}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|