From: <mar...@us...> - 2010-02-06 23:01:51
|
Revision: 13 http://cronoscontrol.svn.sourceforge.net/cronoscontrol/?rev=13&view=rev Author: marioarce Date: 2010-02-06 23:01:44 +0000 (Sat, 06 Feb 2010) Log Message: ----------- Ticket #5 Common library: added base files and structure This Library is created to implement Helper classes, miscellaneous and utility functionality, for general use by other libraries and the website Added Paths: ----------- source/trunk/CronosControl/Libraries/Common/Common.csproj source/trunk/CronosControl/Libraries/Common/Properties/ source/trunk/CronosControl/Libraries/Common/Properties/AssemblyInfo.cs source/trunk/CronosControl/Libraries/Common/Utils/ source/trunk/CronosControl/Libraries/Common/bin/ source/trunk/CronosControl/Libraries/Common/bin/Debug/ source/trunk/CronosControl/Libraries/Common/bin/Debug/CronosControl.Common.dll source/trunk/CronosControl/Libraries/Common/bin/Debug/CronosControl.Common.pdb source/trunk/CronosControl/Libraries/Common/obj/ source/trunk/CronosControl/Libraries/Common/obj/Debug/ source/trunk/CronosControl/Libraries/Common/obj/Debug/Common.csproj.FileListAbsolute.txt source/trunk/CronosControl/Libraries/Common/obj/Debug/CronosControl.Common.dll source/trunk/CronosControl/Libraries/Common/obj/Debug/CronosControl.Common.pdb source/trunk/CronosControl/Libraries/Common/obj/Debug/TempPE/ Added: source/trunk/CronosControl/Libraries/Common/Common.csproj =================================================================== --- source/trunk/CronosControl/Libraries/Common/Common.csproj (rev 0) +++ source/trunk/CronosControl/Libraries/Common/Common.csproj 2010-02-06 23:01:44 UTC (rev 13) @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <ProductVersion>9.0.30729</ProductVersion> + <SchemaVersion>2.0</SchemaVersion> + <ProjectGuid>{D3EBAC29-E2B4-4E13-97B2-B09FD3F04254}</ProjectGuid> + <OutputType>Library</OutputType> + <AppDesignerFolder>Properties</AppDesignerFolder> + <RootNamespace>CronosControl.Common</RootNamespace> + <AssemblyName>CronosControl.Common</AssemblyName> + <TargetFrameworkVersion>v3.5</TargetFrameworkVersion> + <FileAlignment>512</FileAlignment> + </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.Core"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> + <Reference Include="System.Web" /> + <Reference Include="System.Xml.Linq"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> + <Reference Include="System.Data.DataSetExtensions"> + <RequiredTargetFramework>3.5</RequiredTargetFramework> + </Reference> + <Reference Include="System.Data" /> + <Reference Include="System.Xml" /> + </ItemGroup> + <ItemGroup> + <Compile Include="Properties\AssemblyInfo.cs" /> + <Compile Include="Utils\CommonHelper.cs" /> + <Compile Include="Utils\DateTimeHelper.cs" /> + </ItemGroup> + <Import Project="$(MSBuildToolsPath)\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: source/trunk/CronosControl/Libraries/Common/Properties/AssemblyInfo.cs =================================================================== --- source/trunk/CronosControl/Libraries/Common/Properties/AssemblyInfo.cs (rev 0) +++ source/trunk/CronosControl/Libraries/Common/Properties/AssemblyInfo.cs 2010-02-06 23:01:44 UTC (rev 13) @@ -0,0 +1,36 @@ +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("CronosControl.Common")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("CronosControl.Common")] +[assembly: AssemblyCopyright("Copyright © 2010")] +[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("7d2446d1-3a10-4719-ad14-37bce16c372d")] + +// 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 Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] Added: source/trunk/CronosControl/Libraries/Common/bin/Debug/CronosControl.Common.dll =================================================================== (Binary files differ) Property changes on: source/trunk/CronosControl/Libraries/Common/bin/Debug/CronosControl.Common.dll ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: source/trunk/CronosControl/Libraries/Common/bin/Debug/CronosControl.Common.pdb =================================================================== (Binary files differ) Property changes on: source/trunk/CronosControl/Libraries/Common/bin/Debug/CronosControl.Common.pdb ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: source/trunk/CronosControl/Libraries/Common/obj/Debug/Common.csproj.FileListAbsolute.txt =================================================================== --- source/trunk/CronosControl/Libraries/Common/obj/Debug/Common.csproj.FileListAbsolute.txt (rev 0) +++ source/trunk/CronosControl/Libraries/Common/obj/Debug/Common.csproj.FileListAbsolute.txt 2010-02-06 23:01:44 UTC (rev 13) @@ -0,0 +1,5 @@ +G:\Mario\developer-SVN\Cronos Control\source\trunk\CronosControl\Libraries\Common\bin\Debug\CronosControl.Common.dll +G:\Mario\developer-SVN\Cronos Control\source\trunk\CronosControl\Libraries\Common\bin\Debug\CronosControl.Common.pdb +G:\Mario\developer-SVN\Cronos Control\source\trunk\CronosControl\Libraries\Common\obj\Debug\ResolveAssemblyReference.cache +G:\Mario\developer-SVN\Cronos Control\source\trunk\CronosControl\Libraries\Common\obj\Debug\CronosControl.Common.dll +G:\Mario\developer-SVN\Cronos Control\source\trunk\CronosControl\Libraries\Common\obj\Debug\CronosControl.Common.pdb Added: source/trunk/CronosControl/Libraries/Common/obj/Debug/CronosControl.Common.dll =================================================================== (Binary files differ) Property changes on: source/trunk/CronosControl/Libraries/Common/obj/Debug/CronosControl.Common.dll ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: source/trunk/CronosControl/Libraries/Common/obj/Debug/CronosControl.Common.pdb =================================================================== (Binary files differ) Property changes on: source/trunk/CronosControl/Libraries/Common/obj/Debug/CronosControl.Common.pdb ___________________________________________________________________ Added: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |