私はほとんどカスタムmsbuildスクリプトなしで動作しました。関連するTeamCityビルド構成設定は次のとおりです。
アーティファクトパス:%system.teamcity.build.workingDir%\ MyProject \ obj \ Debug \ Package \ PackageTmp
ランナーのタイプ:MSBuild(MSBuildファイルのランナー)
ビルドファイルのパス:MyProject \ MyProject.csproj
作業ディレクトリ:チェックアウトディレクトリと同じ
MSBuildバージョン:Microsoft .NET Framework 4.0
MSBuildツールバージョン:4.0
実行プラットフォーム:x86
ターゲット:パッケージ
MSBuild.exeのコマンドラインパラメータ:/ p:Configuration = Debug
これにより、(web.config変換を使用して)コンパイル、パッケージ化、および出力がアーティファクトとして保存されます。欠けている唯一のことは、指定された場所に出力をコピーすることですが、それは、アーティファクト依存関係を持つ別のTeamCityビルド構成またはmsbuildスクリプトで行うことができます。
更新
これは、コンパイルして(web.config変換を使用して)パッケージ化し、出力をステージングサーバーにコピーするmsbuildスクリプトです
<?xml version="1.0" encoding="utf-8" ?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<SolutionName>MySolution</SolutionName>
<SolutionFile>$(SolutionName).sln</SolutionFile>
<ProjectName>MyProject</ProjectName>
<ProjectFile>$(ProjectName)\$(ProjectName).csproj</ProjectFile>
</PropertyGroup>
<Target Name="Build" DependsOnTargets="BuildPackage;CopyOutput" />
<Target Name="BuildPackage">
<MSBuild Projects="$(SolutionFile)" ContinueOnError="false" Targets="Rebuild" Properties="Configuration=$(Configuration)" />
<MSBuild Projects="$(ProjectFile)" ContinueOnError="false" Targets="Package" Properties="Configuration=$(Configuration)" />
</Target>
<Target Name="CopyOutput">
<ItemGroup>
<PackagedFiles Include="$(ProjectName)\obj\$(Configuration)\Package\PackageTmp\**\*.*"/>
</ItemGroup>
<Copy SourceFiles="@(PackagedFiles)" DestinationFiles="@(PackagedFiles->'\\build02\wwwroot\$(ProjectName)\$(Configuration)\%(RecursiveDir)%(Filename)%(Extension)')"/>
</Target>
</Project>
PropertyGroupタグからSolutionNameプロパティとProjectNameプロパティを削除して、msbuildに渡すこともできます。
msbuild build.xml /p:Configuration=Deploy;SolutionName=MySolution;ProjectName=MyProject
アップデート2
この質問はまだかなりの量のトラフィックを取得しているので、Web配置(MSDeployとも呼ばれます)を使用する現在のスクリプトで回答を更新する価値があると思いました。
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build" ToolsVersion="4.0">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<ProjectFile Condition=" '$(ProjectFile)' == '' ">$(ProjectName)\$(ProjectName).csproj</ProjectFile>
<DeployServiceUrl Condition=" '$(DeployServiceUrl)' == '' ">http://staging-server/MSDeployAgentService</DeployServiceUrl>
</PropertyGroup>
<Target Name="VerifyProperties">
<!-- Verify that we have values for all required properties -->
<Error Condition=" '$(ProjectName)' == '' " Text="ProjectName is required." />
</Target>
<Target Name="Build" DependsOnTargets="VerifyProperties">
<!-- Deploy using windows authentication -->
<MSBuild Projects="$(ProjectFile)"
Properties="Configuration=$(Configuration);
MvcBuildViews=False;
DeployOnBuild=true;
DeployTarget=MSDeployPublish;
CreatePackageOnPublish=True;
AllowUntrustedCertificate=True;
MSDeployPublishMethod=RemoteAgent;
MsDeployServiceUrl=$(DeployServiceUrl);
SkipExtraFilesOnServer=True;
UserName=;
Password=;"
ContinueOnError="false" />
</Target>
</Project>
TeamCityにはenv.Configuration
、env.ProjectName
およびという名前のパラメーターがありますenv.DeployServiceUrl
。MSBuildランナーにはビルドファイルのパスがあり、パラメーターは自動的に渡されます(コマンドラインパラメーターで指定する必要はありません)。
コマンドラインから実行することもできます:
msbuild build.xml /p:Configuration=Staging;ProjectName=MyProject;DeployServiceUrl=http://staging-server/MSDeployAgentService