web-dev-qa-db-ja.com

MsBuild MsDeployPublishを使用してローカルファイルシステムをターゲットにする方法

UIの[発行方法]で[ファイルシステム]を選択するVisual Studio 2010の[発行...]コマンド(Webアプリケーションプロジェクトに適用可能)を複製しようとしています。

これで私の試みは...

%msbuild%/ t:MsDeployPublish/property:MsDeployServiceUrl = "file:/// d:\ MyDeploymentFolder"; MsDeployPublishMethod = "ファイルシステム" "d:\ MySourceFolder\Project.csproj"

...そして、「FileSystem」、「File System」、「Local」などのメソッドを試しました。

私が受け取るエラーは、MsDeployがIISサーバーにプッシュしようとしていることを意味します。

"D:\MySourceFolder\Project.csproj" (MsDeployPub
lish target) (1) ->
(MSDeployPublish target) ->
  C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web
.Publishing.targets(3847,5): error : Web deployment task failed.(The metabase k
ey '/lm/w3svc' could not be found.) [D:\MySourceFolder\Project.csproj]
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.P
ublishing.targets(3847,5): error : \r [D:\MySourceFolder\Project.csproj]
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.P
ublishing.targets(3847,5): error : The metabase key '/lm/w3svc' could not be fo
und.\r [D:\MySourceFolder\Project.csproj]
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.P
ublishing.targets(3847,5): error : Unable to access the IIS configuration syste
m. Please make sure you have IIS 7 (or later) installed.\r [D:\MySourceFolder\Project.csproj]
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.P
ublishing.targets(3847,5): error : Retrieving the COM class factory for compone
nt with CLSID {2B72133B-3F5B-4602-8952-803546CE3344} failed due to the followin
g error: 80040154 Class not registered (Exception from HRESULT: 0x80040154 (REG
DB_E_CLASSNOTREG)). [D:\MySourceFolder\Project.csproj]

Visual Studioで通常GUIを使用できるため、どのようにファイルシステムを展開対象に設定できますか?

37
DuckMaestro

MSBuildを使用して、コマンドラインからMVC4ソリューションをビルドし(プロセスにWeb.config変換を適用する)、フォルダーに出力するにはどうすればよいですか

msbuild ProjectFile.csproj /p:Configuration=Release ^
                           /p:Platform=AnyCPU ^
                           /t:WebPublish ^
                           /p:WebPublishMethod=FileSystem ^
                           /p:DeleteExistingFiles=True ^
                           /p:publishUrl=c:\output

または、ソリューションファイルを作成している場合:

msbuild Solution.sln /p:Configuration=Release ^ 
                     /p:DeployOnBuild=True ^
                     /p:DeployDefaultTarget=WebPublish ^
                     /p:WebPublishMethod=FileSystem ^
                     /p:DeleteExistingFiles=True ^
                     /p:publishUrl=c:\output

ソリューションを介してプロジェクトをターゲットにする/t:SolutionFolder/Project:Target構文:

msbuild Solution.sln /t:SolutionFolder/ProjectFile:WebPublish ^
                     /p:Configuration=Release ^ 
                     /p:WebPublishMethod=FileSystem ^
                     /p:DeleteExistingFiles=True ^
                     /p:publishUrl=c:\output
129
Richard Szalay

MSBuildで展開可能なWebファイルをコピーしようとするのをgaveめ(それ以外は何もしません)、PowerShellでスクリプトを作成し、結果に本当に満足しています。 MSBuildで試したものよりもはるかに高速です。ここに要点があります( literally ):

function copy-deployable-web-files($proj_path, $deploy_dir) {
  # copy files where Build Action = "Content" 
  $proj_dir = split-path -parent $proj_path
  [xml]$xml = get-content $proj_path
  $xml.Project.ItemGroup | % { $_.Content } | % { $_.Include } | ? { $_ } | % {
    $from = "$proj_dir\$_"
    $to = split-path -parent "$deploy_dir\$_"
    if (!(test-path $to)) { md $to }
    cp $from $to
  }

  # copy everything in bin
  cp "$proj_dir\bin" $deploy_dir -recurse
}
2
Todd Menier

私はあなたがmsbuildに伝えていることについて十分に具体的であるとは思わない。

この件に関する私のブックマークの1つからこれを引き出して、うまくいけば: http://www.digitallycreated.net/Blog/59/locally-publishing-a-vs2010-asp.net-web-application -using-msbuild

0
Jesse