From: <br...@us...> - 2009-09-01 13:00:55
|
Revision: 553 http://acmcontester.svn.sourceforge.net/acmcontester/?rev=553&view=rev Author: brus07 Date: 2009-09-01 13:00:45 +0000 (Tue, 01 Sep 2009) Log Message: ----------- Create clean solution. Added Paths: ----------- nera/projects/nera.tester.data/trunk/Build.dependencies nera/projects/nera.tester.data/trunk/Build.version nera/projects/nera.tester.data/trunk/Component Sources.csproj nera/projects/nera.tester.data/trunk/Component Tests.csproj nera/projects/nera.tester.data/trunk/Reference.targets nera/projects/nera.tester.data/trunk/docs/build help.txt nera/projects/nera.tester.data/trunk/go.bat nera/projects/nera.tester.data/trunk/lib/AcmLibraryExtention.dll nera/projects/nera.tester.data/trunk/nera.tester.data VS 2005.sln Added: nera/projects/nera.tester.data/trunk/Build.dependencies =================================================================== --- nera/projects/nera.tester.data/trunk/Build.dependencies (rev 0) +++ nera/projects/nera.tester.data/trunk/Build.dependencies 2009-09-01 13:00:45 UTC (rev 553) @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <!--Directory structure of the component.--> + <BuildDir>build</BuildDir> + <BuildClassDir>$(BuildDir)\classes</BuildClassDir> + <SrcDir>src</SrcDir> + <TestFilesDir>test_files</TestFilesDir> + <BuildObjDir>obj</BuildObjDir> + <!--Src directory structure.--> + <DotNetSrc>$(SrcDir)\csharp</DotNetSrc> + <DotNetMain>$(DotNetSrc)\main</DotNetMain> + <OutputPath>$(BuildClassDir)</OutputPath> + <OutputType>Library</OutputType> + <TargetFrameworkVersion>v2.0</TargetFrameworkVersion> + </PropertyGroup> + + <ItemGroup> + <Reference Include="AcmLibraryExtention, Version=1.0.3482.26401, Culture=neutral, processorArchitecture=MSIL"> + <SpecificVersion>False</SpecificVersion> + <HintPath>lib\AcmLibraryExtention.dll</HintPath> + </Reference> + <Reference Include="System" /> + <Reference Include="System.Data" /> + <Reference Include="System.Xml" /> + </ItemGroup> + + <Choose> + <When Condition="$(ProjectKind)=='ComponentSources'"> + <!--Component sources and referenced assemblies--> + <PropertyGroup> + <AssemblyName>$(ComponentPackage)</AssemblyName> + <RootNamespace>$(ComponentPackage)</RootNamespace> + <DocumentationFile>$(BuildClassDir)\$(ComponentPackage).xml</DocumentationFile> + </PropertyGroup> + <ItemGroup> + <Compile Include="$(DotNetMain)\**\*.cs"> + <Visible>true</Visible> + </Compile> + </ItemGroup> + </When> + <When Condition="$(ProjectKind)=='ComponentTests'"> + <!--Component test sources and referenced assemblies--> + <PropertyGroup> + <AssemblyName>$(ComponentPackage).Test</AssemblyName> + <RootNamespace>$(ComponentPackage)</RootNamespace> + <DocumentationFile>$(BuildClassDir)\$(ComponentPackage).Test.xml</DocumentationFile> + </PropertyGroup> + <ItemGroup> + <Compile Include="$(DotNetSrc)\**\*.cs"> + <Visible>true</Visible> + </Compile> + </ItemGroup> + <ItemGroup> + <Reference Include="nunit.framework"> + <SpecificVersion>False</SpecificVersion> + <HintPath>$(NUnit)</HintPath> + </Reference> + </ItemGroup> + </When> + </Choose> +</Project> Added: nera/projects/nera.tester.data/trunk/Build.version =================================================================== --- nera/projects/nera.tester.data/trunk/Build.version (rev 0) +++ nera/projects/nera.tester.data/trunk/Build.version 2009-09-01 13:00:45 UTC (rev 553) @@ -0,0 +1,12 @@ +<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> +<PropertyGroup> + <!-- Component Name and Version Information --> + <ComponentName>Nera.Tester.Data</ComponentName> + <ComponentDistFileName>nera.tester.data</ComponentDistFileName> + <ComponentPackage>Nera.Tester.Data</ComponentPackage> + <ComponentVersionMajor>1</ComponentVersionMajor> + <ComponentVersionMinor>1</ComponentVersionMinor> + <ComponentVersionMicro>99</ComponentVersionMicro> + <ComponentVersionBuild>99</ComponentVersionBuild> + </PropertyGroup> +</Project> Copied: nera/projects/nera.tester.data/trunk/Component Sources.csproj (from rev 520, ACMServer/trunk/ACMServer/Library/Data/Data.csproj) =================================================================== --- nera/projects/nera.tester.data/trunk/Component Sources.csproj (rev 0) +++ nera/projects/nera.tester.data/trunk/Component Sources.csproj 2009-09-01 13:00:45 UTC (rev 553) @@ -0,0 +1,19 @@ +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <SchemaVersion>2.0</SchemaVersion> + <ProjectGuid>{30C0EFA3-36A8-4C6F-8FEC-28F771D4933F}</ProjectGuid> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> + <DebugSymbols>true</DebugSymbols> + <DebugType>full</DebugType> + <Optimize>false</Optimize> + <DefineConstants>DEBUG;TRACE</DefineConstants> + <!-- Added for making the difference in Build.dependencies file between sources & tests projects --> + <ProjectKind>ComponentSources</ProjectKind> + </PropertyGroup> + + <Import Project="Reference.targets" /> + +</Project> \ No newline at end of file Added: nera/projects/nera.tester.data/trunk/Component Tests.csproj =================================================================== --- nera/projects/nera.tester.data/trunk/Component Tests.csproj (rev 0) +++ nera/projects/nera.tester.data/trunk/Component Tests.csproj 2009-09-01 13:00:45 UTC (rev 553) @@ -0,0 +1,19 @@ +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <SchemaVersion>2.0</SchemaVersion> + <ProjectGuid>{F25399A7-23F8-41c1-BE01-66EF4A608DFD}</ProjectGuid> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> + <DebugSymbols>true</DebugSymbols> + <DebugType>full</DebugType> + <Optimize>false</Optimize> + <DefineConstants>DEBUG;TRACE</DefineConstants> + <!-- Added for making the difference in Build.dependencies file between sources & tests projects --> + <ProjectKind>ComponentTests</ProjectKind> + </PropertyGroup> + + <Import Project="Reference.targets" /> + +</Project> \ No newline at end of file Added: nera/projects/nera.tester.data/trunk/Reference.targets =================================================================== --- nera/projects/nera.tester.data/trunk/Reference.targets (rev 0) +++ nera/projects/nera.tester.data/trunk/Reference.targets 2009-09-01 13:00:45 UTC (rev 553) @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="Build.version" /> + <Import Project="Build.dependencies" Condition="!Exists('Bamboo.Build.Dependencies')" /> + <PropertyGroup> + <GlobalTargetsPath>..\..\..\Targets\Global.targets</GlobalTargetsPath> + <CommonTargetsFile>..\..\..\Targets\Common.targets</CommonTargetsFile> + </PropertyGroup> + <Import Project="$(GlobalTargetsPath)" Condition="Exists($(GlobalTargetsPath))" /> + <Import Project="$(DistributionTargetsFile)" Condition="Exists($(DistributionTargetsFile))" /> + <Import Project="$(CommonTargetsFile)" Condition="Exists($(CommonTargetsFile))" /> +</Project> Added: nera/projects/nera.tester.data/trunk/docs/build help.txt =================================================================== --- nera/projects/nera.tester.data/trunk/docs/build help.txt (rev 0) +++ nera/projects/nera.tester.data/trunk/docs/build help.txt 2009-09-01 13:00:45 UTC (rev 553) @@ -0,0 +1,11 @@ +For build component: +go.bat "Component Sources.csproj" /t:build + +For build test project: +go.bat "Component Tests.csproj" /t:build + +For clean solution: +go.bat "Component Sources.csproj" /t:CleanSolution + +For testing solution: +go.bat "Component Tests.csproj" /t:test \ No newline at end of file Added: nera/projects/nera.tester.data/trunk/go.bat =================================================================== --- nera/projects/nera.tester.data/trunk/go.bat (rev 0) +++ nera/projects/nera.tester.data/trunk/go.bat 2009-09-01 13:00:45 UTC (rev 553) @@ -0,0 +1 @@ +%windir%\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe %* \ No newline at end of file Added: nera/projects/nera.tester.data/trunk/lib/AcmLibraryExtention.dll =================================================================== (Binary files differ) Property changes on: nera/projects/nera.tester.data/trunk/lib/AcmLibraryExtention.dll ___________________________________________________________________ Added: svn:mime-type + application/octet-stream Added: nera/projects/nera.tester.data/trunk/nera.tester.data VS 2005.sln =================================================================== --- nera/projects/nera.tester.data/trunk/nera.tester.data VS 2005.sln (rev 0) +++ nera/projects/nera.tester.data/trunk/nera.tester.data VS 2005.sln 2009-09-01 13:00:45 UTC (rev 553) @@ -0,0 +1,21 @@ + +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual Studio 2005 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Component Sources", "Component Sources.csproj", "{30C0EFA3-36A8-4C6F-8FEC-28F771D4933F}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Component Tests", "Component Tests.csproj", "{F25399A7-23F8-41c1-BE01-66EF4A608DFD}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {30C0EFA3-36A8-4C6F-8FEC-28F771D4933F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {30C0EFA3-36A8-4C6F-8FEC-28F771D4933F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F25399A7-23F8-41c1-BE01-66EF4A608DFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F25399A7-23F8-41c1-BE01-66EF4A608DFD}.Debug|Any CPU.Build.0 = Debug|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |