Skip to content

Commit 2320a32

Browse files
Alprema_cpAlprema_cp
authored andcommitted
General:
- Fixed the Build.bat (I removed the Samples from the release because they don't build, I'll reintegrate them when they do) - Removed all the useless files (UpgradeReport, etc...) - Removed the binary files from the repo (They were needed by the Samples but they don't even build anymore... we should consider adding them to the main solution so they stay in sync with the code) - Removed the old PocketPC stuff
1 parent 57fba15 commit 2320a32

273 files changed

Lines changed: 202 additions & 63418 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

ActiveUp.Net.Compact.sln

Lines changed: 0 additions & 507 deletions
This file was deleted.

ActiveUp.Net.Samples.sln

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 2012
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ActiveUp.Net.Samples", "Samples\CS\ActiveUp.Net.Samples\ActiveUp.Net.Samples.csproj", "{D7048DA0-D973-4B69-9133-BF6620561E77}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|Any CPU = Debug|Any CPU
9+
MailSystem Dev|Any CPU = MailSystem Dev|Any CPU
10+
Release|Any CPU = Release|Any CPU
11+
Retail|Any CPU = Retail|Any CPU
12+
Trial|Any CPU = Trial|Any CPU
13+
EndGlobalSection
14+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
15+
{D7048DA0-D973-4B69-9133-BF6620561E77}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{D7048DA0-D973-4B69-9133-BF6620561E77}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{D7048DA0-D973-4B69-9133-BF6620561E77}.MailSystem Dev|Any CPU.ActiveCfg = MailSystem Dev|Any CPU
18+
{D7048DA0-D973-4B69-9133-BF6620561E77}.MailSystem Dev|Any CPU.Build.0 = MailSystem Dev|Any CPU
19+
{D7048DA0-D973-4B69-9133-BF6620561E77}.Release|Any CPU.ActiveCfg = Release|Any CPU
20+
{D7048DA0-D973-4B69-9133-BF6620561E77}.Release|Any CPU.Build.0 = Release|Any CPU
21+
{D7048DA0-D973-4B69-9133-BF6620561E77}.Retail|Any CPU.ActiveCfg = Retail|Any CPU
22+
{D7048DA0-D973-4B69-9133-BF6620561E77}.Retail|Any CPU.Build.0 = Retail|Any CPU
23+
{D7048DA0-D973-4B69-9133-BF6620561E77}.Trial|Any CPU.ActiveCfg = Trial|Any CPU
24+
{D7048DA0-D973-4B69-9133-BF6620561E77}.Trial|Any CPU.Build.0 = Trial|Any CPU
25+
EndGlobalSection
26+
GlobalSection(SolutionProperties) = preSolution
27+
HideSolutionNode = FALSE
28+
EndGlobalSection
29+
EndGlobal

ActiveUp.Net.sln

Lines changed: 2 additions & 405 deletions
Large diffs are not rendered by default.

Build.bat

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
1-
echo Compile
1+
@echo off
2+
IF NOT DEFINED SHFBROOT (
3+
echo Please install Sandcastle help file builder
4+
pause
5+
exit
6+
)
27

3-
%SystemRoot%\Microsoft.NET\Framework\v3.5\MSBuild.exe ActiveUp.Net.sln /p:Configuration=Retail
4-
rem %SystemRoot%\Microsoft.NET\Framework\v3.5\MSBuild.exe ActiveUp.Net.Compact.sln /p:Configuration=Retail
5-
%SystemRoot%\Microsoft.NET\Framework\v3.5\MSBuild.exe Build\Documentation.shfbproj /p:Configuration=Release
8+
echo Compiling...
9+
%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\MSBuild.exe ActiveUp.Net.sln /p:Configuration=Retail /p:Platform="Any CPU"
10+
rem %SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\MSBuild.exe Build\Documentation.shfbproj /p:Configuration=Release
611

7-
echo Prepare Release
12+
echo Preparing release...
813

9-
IF EXIST Release GOTO NOWINDIR
10-
MKDIR Release
11-
:NOWINDIR
14+
IF NOT EXIST Release (
15+
MKDIR Release
16+
)
1217

1318
Del Release\*.* /Q /S
14-
XCOPY "Class Library\ActiveUp.Net.Mail\bin\Retail\*.xml" Release\
15-
XCOPY "Class Library\ActiveUp.Net.Mail\bin\Retail\*.dll" Release\
16-
XCOPY Samples Release\Samples /s /i /y
19+
XCOPY "Class Library\bin\Retail\*.xml" Release\
20+
XCOPY "Class Library\bin\Retail\*.dll" Release\
21+
rem Samples shouldn't be released until they are fixed
22+
rem XCOPY Samples Release\Samples /s /i /y
1723
XCOPY Build\Help\Documentation.chm Release\
1824
XCOPY COPYRIGHT.txt Release\
1925
XCOPY LICENSE.txt Release\

Build/Documentation.shfbproj

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
1+
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
22
<PropertyGroup>
33
<!-- The configuration and platform will be used to determine which
44
assemblies to include from solution and project documentation
@@ -18,21 +18,22 @@
1818
<HtmlHelpName>Documentation</HtmlHelpName>
1919
<DocumentationSources>
2020
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Common.dll" xmlns="" />
21-
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Common.xml" xmlns="" />
22-
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Dns.dll" xmlns="" />
23-
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Dns.xml" xmlns="" />
24-
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Imap4.dll" xmlns="" />
25-
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Imap4.xml" xmlns="" />
26-
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Mail.dll" xmlns="" />
27-
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Mail.xml" xmlns="" />
28-
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Nntp.dll" xmlns="" />
29-
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Nntp.xml" xmlns="" />
30-
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.OpenPGP.dll" xmlns="" />
31-
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.OpenPGP.xml" xmlns="" />
32-
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Pop3.dll" xmlns="" />
33-
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Pop3.xml" xmlns="" />
34-
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Smtp.dll" xmlns="" />
35-
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Smtp.xml" xmlns="" /></DocumentationSources>
21+
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Common.xml" xmlns="" />
22+
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Dns.dll" xmlns="" />
23+
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Dns.xml" xmlns="" />
24+
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Imap4.dll" xmlns="" />
25+
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Imap4.xml" xmlns="" />
26+
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Mail.dll" xmlns="" />
27+
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Mail.xml" xmlns="" />
28+
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Nntp.dll" xmlns="" />
29+
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Nntp.xml" xmlns="" />
30+
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.OpenPGP.dll" xmlns="" />
31+
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.OpenPGP.xml" xmlns="" />
32+
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Pop3.dll" xmlns="" />
33+
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Pop3.xml" xmlns="" />
34+
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Smtp.dll" xmlns="" />
35+
<DocumentationSource sourceFile="..\Class Library\ActiveUp.Net.Mail\bin\Debug\ActiveUp.Net.Smtp.xml" xmlns="" />
36+
</DocumentationSources>
3637
</PropertyGroup>
3738
<!-- There are no properties for these two groups but they need to appear in
3839
order for Visual Studio to perform the build. -->

0 commit comments

Comments
 (0)