2010-02-07 12:10:12 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
2010-02-07 12:35:45 +08:00
|
|
|
<!-- Initialization -->
|
|
|
|
|
2010-02-07 12:10:12 +08:00
|
|
|
<PropertyGroup>
|
|
|
|
<LibFolder>$(MSBuildProjectDirectory)\lib</LibFolder>
|
|
|
|
<SrcFolder>$(MSBuildProjectDirectory)\src</SrcFolder>
|
|
|
|
<BuildFolder>$(MSBuildProjectDirectory)\build</BuildFolder>
|
|
|
|
|
|
|
|
<CompileFolder>$(BuildFolder)\Compile</CompileFolder>
|
|
|
|
<WebSitesFolder>$(CompileFolder)\_PublishedWebsites</WebSitesFolder>
|
|
|
|
<StageFolder>$(BuildFolder)\Stage</StageFolder>
|
2010-04-06 04:30:02 +08:00
|
|
|
|
|
|
|
<BuildPlatform Condition="$(ProgramW6432) != ''">x64</BuildPlatform>
|
|
|
|
<BuildPlatform Condition="$(BuildPlatform) == ''">x86</BuildPlatform>
|
2010-02-07 12:10:12 +08:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2010-02-07 12:35:45 +08:00
|
|
|
<Import Project="$(LibFolder)\msbuild\MSBuild.Community.Tasks.Targets"/>
|
|
|
|
|
|
|
|
<!-- Coordinating Targets -->
|
2010-02-07 12:10:12 +08:00
|
|
|
|
|
|
|
<Target Name ="Build">
|
|
|
|
<CallTarget Targets="Clean"/>
|
|
|
|
<CallTarget Targets="Compile"/>
|
2010-02-07 13:20:38 +08:00
|
|
|
<CallTarget Targets="Test"/>
|
2010-02-07 12:35:45 +08:00
|
|
|
<CallTarget Targets="Package"/>
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
<Target Name="Package">
|
|
|
|
<CallTarget Targets="Package-Stage"/>
|
|
|
|
<CallTarget Targets="Package-Zip"/>
|
2010-02-07 12:10:12 +08:00
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
2010-02-07 12:35:45 +08:00
|
|
|
<!-- Building -->
|
|
|
|
|
2010-02-07 12:10:12 +08:00
|
|
|
<Target Name="Clean">
|
|
|
|
<MSBuild Projects="$(SrcFolder)\Orchard.sln" Targets="Clean" />
|
|
|
|
<RemoveDir Directories="$(BuildFolder)" />
|
|
|
|
</Target>
|
|
|
|
|
|
|
|
<Target Name ="Compile">
|
|
|
|
<MSBuild
|
|
|
|
Projects="$(SrcFolder)\Orchard.sln"
|
|
|
|
Targets="Build"
|
|
|
|
Properties="Configuration=Release;OutputPath=$(CompileFolder)" />
|
|
|
|
</Target>
|
|
|
|
|
2010-02-07 12:35:45 +08:00
|
|
|
|
2010-02-07 13:20:38 +08:00
|
|
|
<!-- Testing -->
|
|
|
|
|
|
|
|
<Target Name ="Test">
|
2010-04-06 05:01:56 +08:00
|
|
|
<PropertyGroup>
|
|
|
|
<UseSqlite64 Condition="'$(teamcity_version)'=='' And '$(BuildPlatform)' == 'x64'">True</UseSqlite64>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<Message Condition="'$(UseSqlite64)' == 'True'" Text="Testing with x64 version of Sqlite"/>
|
|
|
|
|
2010-04-06 04:30:02 +08:00
|
|
|
<CreateItem Include="$(CompileFolder)\*.Tests.*dll">
|
|
|
|
<Output TaskParameter="Include" ItemName="TestAssemblies" />
|
|
|
|
</CreateItem>
|
|
|
|
|
|
|
|
<!-- use x64 sqlite for tests depending on build platform -->
|
2010-04-06 05:01:56 +08:00
|
|
|
<Copy Condition="'$(UseSqlite64)' == 'True'"
|
2010-04-06 04:30:02 +08:00
|
|
|
SourceFiles="$(LibFolder)\sqlite\x64\System.Data.SQLite.dll"
|
|
|
|
DestinationFiles="$(CompileFolder)\System.Data.SQLite.dll" />
|
|
|
|
|
|
|
|
<NUnit Assemblies="@(TestAssemblies)" ToolPath="$(LibFolder)\nunit" WorkingDirectory="$(CompileFolder)" OutputXmlFile="$(BuildFolder)\Orchard.Tests.xml" />
|
|
|
|
|
|
|
|
<!-- restore sqlite version if needed -->
|
2010-04-06 05:01:56 +08:00
|
|
|
<Copy Condition="'$(UseSqlite64)' == 'True'"
|
2010-04-06 04:30:02 +08:00
|
|
|
SourceFiles="$(LibFolder)\sqlite\System.Data.SQLite.dll"
|
|
|
|
DestinationFiles="$(CompileFolder)\System.Data.SQLite.dll" />
|
2010-02-07 13:20:38 +08:00
|
|
|
</Target>
|
|
|
|
|
2010-04-06 04:30:02 +08:00
|
|
|
<Target Name ="Spec">
|
|
|
|
<CreateItem Include="$(CompileFolder)\*.Specs.dll">
|
|
|
|
<Output TaskParameter="Include" ItemName="SpecAssemblies" />
|
|
|
|
</CreateItem>
|
|
|
|
<NUnit Assemblies="@(SpecAssemblies)" ToolPath="$(LibFolder)\nunit" />
|
|
|
|
</Target>
|
2010-02-07 13:20:38 +08:00
|
|
|
|
2010-02-07 12:35:45 +08:00
|
|
|
<!-- Packaging -->
|
2010-02-08 17:09:38 +08:00
|
|
|
|
|
|
|
<UsingTask AssemblyFile="$(CompileFolder)\MSBuild.Orchard.Tasks.dll" TaskName="MSBuild.Orchard.Tasks.StageProjectAlteration" />
|
|
|
|
|
2010-02-07 12:35:45 +08:00
|
|
|
<Target Name="Package-Stage">
|
2010-02-07 12:10:12 +08:00
|
|
|
<ItemGroup>
|
|
|
|
<Stage-Bin-Exclude Include="$(WebSitesFolder)\**\bin\**\*" />
|
|
|
|
|
2010-02-08 17:09:38 +08:00
|
|
|
<Stage-Web Include="$(WebSitesFolder)\Orchard.Web\**\*;$(SrcFolder)\Orchard.Web\*.csproj" />
|
2010-02-07 12:10:12 +08:00
|
|
|
<Stage-Core Include="$(WebSitesFolder)\Orchard.Core\**\*" Exclude="@(Stage-Bin-Exclude)" />
|
2010-02-07 17:16:22 +08:00
|
|
|
<Stage-Modules Include="$(WebSitesFolder)\**\*" Exclude="@(Stage-Web);@(Stage-Core);@(Stage-Bin-Exclude)" />
|
2010-02-07 13:20:38 +08:00
|
|
|
<Stage-License Include="$(MSBuildProjectDirectory)\*.txt" />
|
2010-02-07 12:10:12 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
2010-02-07 13:20:38 +08:00
|
|
|
<Copy SourceFiles="@(Stage-Web);@(Stage-License)" DestinationFolder="$(StageFolder)\%(RecursiveDir)" />
|
2010-02-07 12:10:12 +08:00
|
|
|
<Copy SourceFiles="@(Stage-Core)" DestinationFolder="$(StageFolder)\Core\%(RecursiveDir)" />
|
2010-02-07 17:16:22 +08:00
|
|
|
<Copy SourceFiles="@(Stage-Modules)" DestinationFolder="$(StageFolder)\Modules\%(RecursiveDir)" />
|
2010-02-08 17:09:38 +08:00
|
|
|
|
|
|
|
|
|
|
|
<!-- extra processing of the staged csproj file -->
|
|
|
|
<StageProjectAlteration ProjectFileName="$(StageFolder)\Orchard.Web.csproj" AddContentFiles="
|
|
|
|
@(Stage-Modules->'Modules\%(RecursiveDir)%(Filename)%(Extension)');
|
|
|
|
@(Stage-Core->'Core\%(RecursiveDir)%(Filename)%(Extension)')">
|
|
|
|
<Output TaskParameter="ExtraFiles" ItemName="StageProjectAlteration-ExtraFiles"/>
|
|
|
|
</StageProjectAlteration>
|
|
|
|
|
|
|
|
<!-- move over extra non-content files the csproj referenced -->
|
|
|
|
<Copy SourceFiles="@(StageProjectAlteration-ExtraFiles->'$(SrcFolder)\Orchard.Web\%(Identity)')"
|
|
|
|
DestinationFolder="$(StageFolder)\%(RecursiveDir)"/>
|
|
|
|
|
2010-02-07 12:10:12 +08:00
|
|
|
</Target>
|
|
|
|
|
2010-02-07 12:35:45 +08:00
|
|
|
<Target Name="Package-Zip">
|
|
|
|
<ItemGroup>
|
2010-02-07 13:20:38 +08:00
|
|
|
<Zip-Exclude Include="
|
|
|
|
$(MSBuildProjectDirectory)\src\**\bin\**\*;
|
|
|
|
$(MSBuildProjectDirectory)\src\**\obj\**\*;
|
|
|
|
$(MSBuildProjectDirectory)\**\App_Data\**\*;
|
|
|
|
$(MSBuildProjectDirectory)\**\_ReSharper*\**\*;
|
|
|
|
$(MSBuildProjectDirectory)\**\*.sln.cache;
|
|
|
|
$(MSBuildProjectDirectory)\**\*.suo;
|
|
|
|
$(MSBuildProjectDirectory)\**\*.user;
|
|
|
|
$(MSBuildProjectDirectory)\**\*.patch;
|
|
|
|
$(MSBuildProjectDirectory)\**\*.hg;
|
|
|
|
" />
|
|
|
|
|
2010-02-07 12:35:45 +08:00
|
|
|
<Zip-Stage Include="$(StageFolder)\**\*" />
|
2010-02-07 13:20:38 +08:00
|
|
|
|
|
|
|
<Zip-Source Include="
|
|
|
|
$(MSBuildProjectDirectory)\lib\**\*;
|
|
|
|
$(MSBuildProjectDirectory)\src\**\*;
|
|
|
|
$(MSBuildProjectDirectory)\*.txt;
|
|
|
|
" Exclude="@(Zip-Exclude)" />
|
|
|
|
|
2010-02-07 12:35:45 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<Zip Files="@(Zip-Stage)" WorkingDirectory="$(StageFolder)" ZipFileName="$(BuildFolder)\Orchard.Web.zip" />
|
2010-02-07 13:20:38 +08:00
|
|
|
<Zip Files="@(Zip-Source)" WorkingDirectory="$(MSBuildProjectDirectory)" ZipFileName="$(BuildFolder)\Orchard.Source.zip" />
|
2010-02-07 12:35:45 +08:00
|
|
|
</Target>
|
|
|
|
|
2010-02-07 12:10:12 +08:00
|
|
|
</Project>
|