1、MSBuildhtml
在微軟軟件開發中,每日構建是最重要的過程之一,被稱爲微軟產品開發的「心跳」。簡單來看,天天構建系統將整個產品解決方案完整構建一遍,生成的目標文件和安裝文件被放置在一個共享位置。接着,安裝文件被自動部署到release server上,隨後能夠自動運行BVT(build verification test),並將全部結果寄送每一個team member的信箱。web
微軟有一套完善的內部系統來完成整個自動化流程,以及流程管理、reporting等工做,而若是咱們沒有這套系統,也想實現完整的daily build流程,該怎麼作呢?ide
在VS.NET2003時代,IDE能夠控制整個方案的構建,可是全部的構建邏輯被IDE控制,對於開發人員來講,整個構建流程就像一個黑箱,很難修改和管理。固然可使用PreBuildEvent和PostBuildEvent來控制,可是這些event都寫在csproj/vbproj文件中,不便於修改,不適於擴展。並且使用IDE來作每日構建的話,要求構建系統自己裝有VS.NET,這會帶來額外的成本。另外一種辦法是使用NAnt,經過XML配置文件,來管理構建流程,這會使得整個流程易於修改,可擴展,而且不要求構建系統安裝IDE,只須要有framework便可。問題是使用NAnt必須額外寫一堆複雜的XML配置文件,足以讓不少developer看了頭疼。post
VS.NET2005中引入了一套全新的構建系統:MSBuild。簡單來說,MSBuild能夠直接讀取csproj文件,控制csc/vbc等編譯器,生成整個方案。實際上,VS2005的IDE自身就是調用MSBuild來完成編譯的,這與VS2003有很大的不一樣。而且因爲VS2005的csproj文件服從MSBuild的配置schema,所以咱們能夠直接使用csproj,稍稍修改一下,就能組織起完整的構建流程了。測試
2、示例項目的組織ui
來看一個完整的例子。this
咱們將創建一個簡單的Hello方案,包括一個HelloService(Windows NT Service),一個HelloSite(ASP.NET Web Site),和一個共用組件(class library)。如圖所示。spa
build目錄中,將用來存放構建使用的配置文件。private目錄中存放解決方案自己。public目錄中存放用來完成構建所使用的編譯器,例如WiX(用來生成安裝包)。先在private目錄中新建一個空解決方案,能夠命名爲「HelloSolution」。而後依次新建SharedComponents、HelloService和HelloSite項目,並創建引用關係:HelloService引用了SharedComponents。最後的文件組織如圖所示。.net
刪除Default.aspx第一行的引用,刪除Default.aspx.cs,添加一個App_Code目錄,在App_Code中新建一個Hello.cs文件,保持初始代碼不用修改。命令行
在IDE中編譯整個Solution,沒問題。能夠關閉IDE了。
打開SDK的控制檯,輸入兩條命令:
CD /d C:\Hello\private\HelloSolution
msbuild
很快就能看到構建結果了:
但這並不徹底是我想要的。例如我想將全部的項目輸出都放在C:\Hello\target目錄;我想讓HelloSite有一個本身的主目錄;我想自動生成MSI安裝包,而且也放在target目錄下。
3、修改構建流程
首先咱們將SharedComponent.csproj和HelloService.csproj文件copy至build目錄下,並將擴展名更名爲proj。用記事本打開SharedComponents.proj,看到以下內容。
<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>{FF79BA82-D6CE-4E89-9AFA-C5EF83A62C2D}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>SharedComponents</RootNamespace>
<AssemblyName>SharedComponents</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="Class1.cs" />
<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>
觀察能夠發現,紅色的部分是給VS IDE用的,與MSBuild無關,所以能夠刪除。最後幾行中的BeforeBuild和AfterBuild暫時沒用,也能夠刪除。
從第一行開始看:
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
首先看到一個屬性組,裏面的每一條屬性均可以理解成一個環境變量。屬性組第一行是說,若是環境變量「Configuration」爲空,那麼設置屬性 「Configuration」爲「Debug」。一樣,第二行是說,若是環境變量「Platform」爲空,那麼設置屬性「Platform」爲「AnyCPU」。這裏我不想使用「AnyCPU」,因而將其改爲「x86」。
<OutputType>Library</OutputType>
<AssemblyName>SharedComponents</AssemblyName>
</PropertyGroup>
OutputType指定了輸出類型爲類庫。AssemblyName指定輸出文件名,改成Hello.SharedComponents。
<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>
在這一段中,若是Configuration屬性並上「|」 並上Platform屬性,等於「Debug|AnyCPU」的話,那麼定義一個屬性組。換句話說,就是爲debug、AnyCPU的組合配置一段編譯器使用的屬性。將第一行的Condition改爲「'$(Configuration)' == 'Debug'」(假設咱們並不須要在其它platform上進行編譯)。以一樣的方式修改Release的PropertyGroup。
接着是一個ItemGroup,指定了這個項目引用的組件。
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
而後又是一個ItemGroup,指定了參加編譯的源代碼文件。
<ItemGroup>
<Compile Include="Class1.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
再接下來,引入了一個targets文件:
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
$(MSBuildBinPath)是一個環境變量,或者是以前定義的屬性。Microsoft.CSharp.targets位於C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727目錄下,用記事本打開,查找「Name="CoreCompile"」,能夠找到真正控制編譯器運行的核心配置。其中$(xxx)表示一個以前定義的屬性,@(xxx)表示以前定義的ItemGroup。能夠發現,先前在SharedComponents.proj中定義的屬性和Item,最後實際上都是給這一段CoreCompile用的。由這個target來控制csc編譯器執行最終的編譯。
在第一個PropertyGroup中添加一個屬性:SrcDir,其值爲「C:\Hello\private\HelloSolution\Shared\SharedComponents」,表示此項目源代碼文件的位置。相應修改Compile項目組的Include屬性爲:
<ItemGroup>
<Compile Include="$(SrcDir)\Class1.cs" />
<Compile Include="$(SrcDir)\Properties\AssemblyInfo.cs" />
</ItemGroup>
回到HelloService.proj文件,依上所述,進行相似的修改。
注意ProjectReference這個ItemGroup,這一段將會被用來解析依賴關係,須要對Include屬性作些修改。
最後造成的兩個文件爲:
SharedComponents.proj
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<SrcDir>C:\Hello\private\HelloSolution\Shared\SharedComponents</SrcDir>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<OutputType>Library</OutputType>
<AssemblyName>Hello.SharedComponents</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<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)' == 'Release' ">
<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="$(SrcDir)\Class1.cs" />
<Compile Include="$(SrcDir)\Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>
HelloService.proj
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<SrcDir>C:\Hello\private\HelloSolution\Services\HelloService</SrcDir>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<OutputType>WinExe</OutputType>
<AssemblyName>Hello.HelloService</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<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)' == 'Release' ">
<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.ServiceProcess" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="$(SrcDir)\Service1.cs" />
<Compile Include="$(SrcDir)\Service1.Designer.cs" />
<Compile Include="$(SrcDir)\Program.cs" />
<Compile Include="$(SrcDir)\Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="SharedComponents.proj" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>
最後參考上面的兩個文件和MSDN上MSBuild的資料,新建HelloSite.proj文件:
<Project DefaultTargets="PrecompileWeb" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VirtualPath>/Hello</VirtualPath>
<PhysicalPath>C:\Hello\private\HelloSolution\Web\HelloSite\</PhysicalPath>
<TargetPath>Web</TargetPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugCompile>true</DebugCompile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugCompile>false</DebugCompile>
</PropertyGroup>
<Target Name="PrecompileWeb">
<AspNetCompiler
VirtualPath="$(VirtualPath)"
PhysicalPath="$(PhysicalPath)"
TargetPath="$(TargetPath)"
Force="true"
Debug="$(DebugCompile)"
Updateable="true" />
</Target>
</Project>
轉到控制檯,在C:\Hello\build目錄下執行msbuild HelloService.proj,觀察執行結果,發現MSBuild成功解析出HelloService引用了SharedComponent組件,並首先編譯了被引用的組件,而後才編譯目標組件。如圖所示:
再執行msbuild HelloSite.proj,構建也成功了。
4、進一步完善
在這部分中,咱們使用環境變量來替代長路徑,把項目輸出放到指定位置,將公用的屬性配置放在一個引用文件裏。因爲在MSBuild系統中,系統環境變量和屬性是通用的,所以這些目標並不難完成。
在C:\Hello\build目錄中新建一個include.cmd文件。
@echo off
@set public=%inetroot%\public
@set private=%inetroot%\private
@set target=%inetroot%\target
@set product=%private%\HelloSolution
@set setup=%product%\Setup
@set wix=%public%\WiX
@set Platform=%PROCESSOR_ARCHITECTURE%
call "C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\Bin\sdkvars.bat"
在include.cmd中,咱們指定了所需的環境變量,並調用了SDK的環境變量設置命令。
新建include.property文件,內容爲:
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<BaseIntermediateOutputPath>$(target)\</BaseIntermediateOutputPath>
<OutputPath>$(target)\$(Platform)\$(Configuration)\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DebugCompile>true</DebugCompile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DebugCompile>false</DebugCompile>
</PropertyGroup>
</Project>
修改SharedComponents.proj:
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="include.property" />
<PropertyGroup>
<SrcDir>$(product)\Shared\SharedComponents</SrcDir>
<OutputType>Library</OutputType>
<AssemblyName>Hello.SharedComponents</AssemblyName>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="$(SrcDir)\Class1.cs" />
<Compile Include="$(SrcDir)\Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>
修改HelloService.proj:
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="include.property" />
<PropertyGroup>
<SrcDir>$(product)\Services\HelloService</SrcDir>
<OutputType>WinExe</OutputType>
<AssemblyName>Hello.HelloService</AssemblyName>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.ServiceProcess" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="$(SrcDir)\Service1.cs" />
<Compile Include="$(SrcDir)\Service1.Designer.cs" />
<Compile Include="$(SrcDir)\Program.cs" />
<Compile Include="$(SrcDir)\Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="SharedComponents.proj" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
</Project>
修改HelloSite.proj:
<Project DefaultTargets="PrecompileWeb" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="include.property" />
<PropertyGroup>
<VirtualPath>/Hello</VirtualPath>
<PhysicalPath>C:\Hello\private\HelloSolution\Web\HelloSite\</PhysicalPath>
<TargetPath>$( OutputPath)\Web</TargetPath>
</PropertyGroup>
<Target Name="PrecompileWeb">
<AspNetCompiler
VirtualPath="$(VirtualPath)"
PhysicalPath="$(PhysicalPath)"
TargetPath="$(TargetPath)"
Force="true"
Debug="$(DebugCompile)"
Updateable="true" />
</Target>
</Project>
在C:\Hello目錄下新建一個build.proj文件:
<Project DefaultTargets="Compile"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="Build">
<MSBuild Projects="build\HelloService.proj" />
<MSBuild Projects="build\HelloSite.proj" />
</Target>
</Project>
在C:\Hello目錄中新建一個build.cmd文件:
@echo off
@set Configuration=Debug
msbuild build.proj /t:Build
@set Configuration=Release
msbuild build.proj /t:Build
在桌面上新建一個快捷方式,命名爲「Hello」,Target設置爲:
C:\WINDOWS\system32\cmd.exe /K set inetroot=C:\Hello&"C:\Hello\build\Include.cmd"
Start in設置爲C:\Hello,Option中選上「QuickEdit mode」。
退出命令行,雙擊桌面上的Hello快捷方式,運行build,大約五秒鐘後,整個方案就被成功構建了,全部的項目輸出都在C:\Hello\target目錄下。
5、Installer
VS.NET中能夠新建一個安裝項目,用來編譯生成安裝包,可是這種生成方式相似用IDE來build項目同樣,不適於擴展,並且很難經過命令行來執行編譯。
替代的方法是使用WiX toolset。WiX是Windows Installer XML的縮寫,是微軟的第一個開源項目,能夠在SourceForge上下載。
在C:\Hello\private\HelloSolution目錄下新建一個Setup目錄。新建一個HelloService.wxs文件:
<Wix xmlns="http://schemas.microsoft.com/wix/2003/01/wi">
<Product Id="YOURGUID" Language="1033" Manufacturer="Hello Corporation" Name="HelloService" Version="1.0.0.0">
<Package Id="YOURGUID"
Description='Hello Service Windows Installer package'
Manufacturer='Hello Corporation' InstallerVersion='200' Compressed='yes' />
<Condition Message="You need to be an administrator to install this product.">
Privileged
</Condition>
<Condition Message='This product can only be installed on Windows Server 2003'>
VersionNT = 502
</Condition>
<Media Id="1" Cabinet='product.cab' EmbedCab='yes' />
<Directory Id='TARGETDIR' Name='SourceDir'>
<Directory Id='ProgramFilesFolder' Name='PFiles'>
<Directory Id='Hello' Name='Hello'>
<Directory Id='INSTALLDIR' Name='Service'>
<Component Id='MainExecutable' Guid=' YOURGUID '>
<File Id='HelloSvc' Name='Svc.exe' LongName='Hello.HelloService.exe' DiskId='1' src='$(env.target)\$(env.Platform)\$(env.Configuration)\Hello.HelloService.exe' Vital='yes' ProcessorArchitecture="x86" />
<ServiceInstall Id='ServiceInstall' DisplayName='Hello Service' Name='HelloService' ErrorControl='normal' Start='demand' Type='ownProcess' Vital='yes' Description="Hello service" />
<ServiceControl Id="ServiceUninstall" Name="HelloService" Stop="both" Remove="uninstall" Wait="yes" />
</Component>
<Component Id="ReferencedLib" Guid='YOURGUID'>
<File Id='SharedComponents' Name='shared.dll' LongName='Hello.SharedComponents.dll' DiskId='1' src='$(env.target)\$(env.Platform)\$(env.Configuration)\Hello.SharedComponents.dll' Vital='yes' ProcessorArchitecture="x86" />
</Component>
</Directory>
</Directory>
</Directory>
</Directory>
<Feature Id='Complete' Level='1'>
<ComponentRef Id='MainExecutable' />
<ComponentRef Id='ReferencedLib' />
</Feature>
</Product>
</Wix>
其中的YOURGUID須要用一個本身生成的guid來代替,能夠用C:\Program Files\Microsoft Visual Studio 8\Common7\Tools\guidgen.exe來生成guid。
新建HelloSite.wxs文件:
<Wix xmlns="http://schemas.microsoft.com/wix/2003/01/wi">
<Product Id="YOURGUID" Language="1033" Manufacturer="Hello Corporation" Name="HelloSite" Version="1.0.0.0">
<Package Id="YOURGUID"
Description='Hello Site Windows Installer package'
Manufacturer='Hello Corporation' InstallerVersion='200' Compressed='yes' />
<Condition Message="You need to be an administrator to install this product.">
Privileged
</Condition>
<Condition Message='This product can only be installed on Windows Server 2003'>
VersionNT = 502
</Condition>
<Media Id="1" Cabinet='product.cab' EmbedCab='yes' />
<Directory Id='TARGETDIR' Name='SourceDir'>
<Directory Id='ProgramFilesFolder' Name='PFiles'>
<Directory Id='Hello' Name='Hello'>
<Directory Id='INSTALLDIR' Name='Site'>
<Component Id='Page' Guid='YOURGUID'>
<File Id='Default_aspx' Name='Default.asp' LongName='Default.aspx' DiskId='1' src='$(env.target)\$(env.Platform)\$(env.Configuration)\Web\Default.aspx' Vital='yes' />
</Component>
<Directory Id='binDir' Name='bin'>
<Component Id="ReferencedLib" Guid='YOURGUID'>
<File Id='AppCode' Name='App_Code.dll' LongName='App_Code.dll' DiskId='1' src='$(env.target)\$(env.Platform)\$(env.Configuration)\Web\bin\App_Code.dll' Vital='yes' ProcessorArchitecture="x86" />
</Component>
</Directory>
</Directory>
</Directory>
</Directory>
<Component Id='SiteInstall' Guid='YOURGUID'>
<WebSite Id='DefaultWebSite' Description='Default Web Site' Directory='INSTALLDIR' DirProperties='webSiteProp'>
<WebAddress Id='AllUnassigned' Port='80' />
<WebApplication Id='HelloSite' Name='HelloSite' />
</WebSite>
</Component>
</Directory>
<Feature Id='Complete' Level='1'>
<ComponentRef Id='Page' />
<ComponentRef Id='ReferencedLib' />
<ComponentRef Id='SiteInstall' />
</Feature>
<WebDirProperties Id='webSiteProp' Script='yes' />
<CustomAction Id='ToggleASPNETVersion' ExeCommand='aspnet_regiis -s W3SVC/1/Root/' />
</Product>
</Wix>
注意HelloSite將在把Site程序安裝在WebSite下,所以不要在你的關鍵機器上安裝這個示例,而且安裝HelloSite前要備份你的IIS設置。
修改build.cmd文件:
@echo off
@set Configuration=Debug
msbuild build.proj /t:Build
if not exist "%target%\%Platform%\%Configuration%\Setup" (mkdir "%target%\%Platform%\%Configuration%\Setup") ELSE (del "%target%\%Platform%\%Configuration%\Setup\*.*" /q)
%wix%\candle %setup%\HelloService.wxs -out "%target%\%Platform%\%Configuration%\Setup\\"
%wix%\light "%target%\%Platform%\%Configuration%\Setup\HelloService.wixobj" /out "%target%\%Platform%\%Configuration%\Setup\HelloService.msi"
%wix%\candle %setup%\HelloSite.wxs -out "%target%\%Platform%\%Configuration%\Setup\\"
%wix%\light "%target%\%Platform%\%Configuration%\Setup\HelloSite.wixobj" "%wix%\ca\sca.wixlib" /out "%target%\%Platform%\%Configuration%\Setup\HelloSite.msi"
@set Configuration=Release
msbuild build.proj /t:Build
if not exist "%target%\%Platform%\%Configuration%\Setup" (mkdir "%target%\%Platform%\%Configuration%\Setup") ELSE (del "%target%\%Platform%\%Configuration%\Setup\*.*" /q)
%wix%\candle %setup%\HelloService.wxs -out "%target%\%Platform%\%Configuration%\Setup\\"
%wix%\light "%target%\%Platform%\%Configuration%\Setup\HelloService.wixobj" /out "%target%\%Platform%\%Configuration%\Setup\HelloService.msi"
%wix%\candle %setup%\HelloSite.wxs -out "%target%\%Platform%\%Configuration%\Setup\\"
%wix%\light "%target%\%Platform%\%Configuration%\Setup\HelloSite.wixobj" "%wix%\ca\sca.wixlib" /out "%target%\%Platform%\%Configuration%\Setup\HelloSite.msi"
運行build,構建完成後,發現target目錄中,MSI installer也被生成了。接下去運行
msiexec /i %target%\%Platform%\%Configuration%\Setup\HelloService.msi
C:\Program Files\Hello\Service目錄中出現了安裝好的文件。打開services.msc,找到「Hello Service」,試着運行一下。
運行msiexec /x %target%\%Platform%\%Configuration%\Setup\HelloService.msi卸載。
運行msiexec /i %target%\%Platform%\%Configuration%\Setup\HelloSite.msi安裝Web程序。
運行msiexec /x %target%\%Platform%\%Configuration%\Setup\HelloSite.msi卸載。
6、自動化
最後一個任務就是實現自動化,每日定時構建。
在C:\Hello目錄中新建一個DailyBuild.bat文件:
@echo off
@set inetroot=C:\Hello
call C:\Hello\build\Include.cmd
call C:\Hello\build.cmd
在Services.msc中enable 「Task Scheduler」服務。在控制面板的「Scheduled Tasks」中,新建一個任務:Build Hello,指定其天天03:00AM運行C:\DailyBuild.bat。
右鍵點擊這個task,選擇運行,能夠先看一下結果。
就這樣,daily build的任務徹底實現自動化了。
7、擴展
在示例方案中,因爲MSI安裝包都已經自動生成了,接下去能作的就更多了,例如實現自動部署,自動測試(BVT),自動report結果,等等。這些工做須要與tester合做,本文再也不展開。
自動化流程是保持項目良好運做的關鍵,在微軟公司,這一流程受到高度的重視,一般由developer manager直接負責。若是哪天出現了build break,那麼developer在開始一天的coding以前,必須先找到昨天的build哪裏出現了問題,先去修復,從新build,直到build成功爲止,沒有例外。
出處:http://www.cnblogs.com/xgcblog/archive/2011/09/17/2179507.html