[Nmailserver-commits] SF.net SVN: nmailserver: [278] NMail/trunk
Brought to you by:
dframpton-oss,
tmyroadctfig
|
From: <tmy...@us...> - 2007-10-12 13:22:37
|
Revision: 278
http://nmailserver.svn.sourceforge.net/nmailserver/?rev=278&view=rev
Author: tmyroadctfig
Date: 2007-10-12 06:22:39 -0700 (Fri, 12 Oct 2007)
Log Message:
-----------
Added networking test. Updated output location for local store data admin tool.
Modified Paths:
--------------
NMail/trunk/NMail.LocalStoreData.Admin/NMail.LocalStoreData.Admin.csproj
NMail/trunk/NMail.LocalStoreData.Admin.UnitTests/NMail.LocalStoreData.Admin.UnitTests.csproj
NMail/trunk/NMail.sln
Added Paths:
-----------
NMail/trunk/NMail.NetworkingTests/
NMail/trunk/NMail.NetworkingTests/NMail.NetworkingTests.csproj
NMail/trunk/NMail.NetworkingTests/Properties/
NMail/trunk/NMail.NetworkingTests/Properties/AssemblyInfo.cs
Modified: NMail/trunk/NMail.LocalStoreData.Admin/NMail.LocalStoreData.Admin.csproj
===================================================================
--- NMail/trunk/NMail.LocalStoreData.Admin/NMail.LocalStoreData.Admin.csproj 2007-10-12 13:11:22 UTC (rev 277)
+++ NMail/trunk/NMail.LocalStoreData.Admin/NMail.LocalStoreData.Admin.csproj 2007-10-12 13:22:39 UTC (rev 278)
@@ -14,7 +14,7 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
+ <OutputPath>..\References\NMail\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@@ -22,7 +22,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
+ <OutputPath>..\References\NMail\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Modified: NMail/trunk/NMail.LocalStoreData.Admin.UnitTests/NMail.LocalStoreData.Admin.UnitTests.csproj
===================================================================
--- NMail/trunk/NMail.LocalStoreData.Admin.UnitTests/NMail.LocalStoreData.Admin.UnitTests.csproj 2007-10-12 13:11:22 UTC (rev 277)
+++ NMail/trunk/NMail.LocalStoreData.Admin.UnitTests/NMail.LocalStoreData.Admin.UnitTests.csproj 2007-10-12 13:22:39 UTC (rev 278)
@@ -14,7 +14,7 @@
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
- <OutputPath>bin\Debug\</OutputPath>
+ <OutputPath>..\References\NMail\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
@@ -22,7 +22,7 @@
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
- <OutputPath>bin\Release\</OutputPath>
+ <OutputPath>..\References\NMail\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
Added: NMail/trunk/NMail.NetworkingTests/NMail.NetworkingTests.csproj
===================================================================
--- NMail/trunk/NMail.NetworkingTests/NMail.NetworkingTests.csproj (rev 0)
+++ NMail/trunk/NMail.NetworkingTests/NMail.NetworkingTests.csproj 2007-10-12 13:22:39 UTC (rev 278)
@@ -0,0 +1,46 @@
+<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>{85C038DA-64AF-4CBB-90ED-C3F43731791B}</ProjectGuid>
+ <OutputType>Library</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <RootNamespace>NMail.NetworkingTests</RootNamespace>
+ <AssemblyName>NMail.NetworkingTests</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="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: NMail/trunk/NMail.NetworkingTests/Properties/AssemblyInfo.cs
===================================================================
--- NMail/trunk/NMail.NetworkingTests/Properties/AssemblyInfo.cs (rev 0)
+++ NMail/trunk/NMail.NetworkingTests/Properties/AssemblyInfo.cs 2007-10-12 13:22:39 UTC (rev 278)
@@ -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("NMail.NetworkingTests")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("NMail.NetworkingTests")]
+[assembly: AssemblyCopyright("Copyright © 2007")]
+[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("004c305a-919e-40e7-84f7-6f71da189380")]
+
+// 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")]
Modified: NMail/trunk/NMail.sln
===================================================================
--- NMail/trunk/NMail.sln 2007-10-12 13:11:22 UTC (rev 277)
+++ NMail/trunk/NMail.sln 2007-10-12 13:22:39 UTC (rev 278)
@@ -62,6 +62,8 @@
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CommandLineParser.UnitTests", "CommandLineParser.UnitTests\CommandLineParser.UnitTests.csproj", "{744039D4-8E08-491C-98D2-1B6EC01765BA}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NMail.NetworkingTests", "NMail.NetworkingTests\NMail.NetworkingTests.csproj", "{85C038DA-64AF-4CBB-90ED-C3F43731791B}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -318,6 +320,14 @@
{744039D4-8E08-491C-98D2-1B6EC01765BA}.Release|Any CPU.Build.0 = Release|Any CPU
{744039D4-8E08-491C-98D2-1B6EC01765BA}.Release2005|Any CPU.ActiveCfg = Release|Any CPU
{744039D4-8E08-491C-98D2-1B6EC01765BA}.Release2005|Any CPU.Build.0 = Release|Any CPU
+ {85C038DA-64AF-4CBB-90ED-C3F43731791B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {85C038DA-64AF-4CBB-90ED-C3F43731791B}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {85C038DA-64AF-4CBB-90ED-C3F43731791B}.Debug2005|Any CPU.ActiveCfg = Debug|Any CPU
+ {85C038DA-64AF-4CBB-90ED-C3F43731791B}.Debug2005|Any CPU.Build.0 = Debug|Any CPU
+ {85C038DA-64AF-4CBB-90ED-C3F43731791B}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {85C038DA-64AF-4CBB-90ED-C3F43731791B}.Release|Any CPU.Build.0 = Release|Any CPU
+ {85C038DA-64AF-4CBB-90ED-C3F43731791B}.Release2005|Any CPU.ActiveCfg = Release|Any CPU
+ {85C038DA-64AF-4CBB-90ED-C3F43731791B}.Release2005|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|