WebDeployを使用して、カスタムMSDeployスキップルールとVisualStudio2012に保存された公開プロファイルを使用してWebサイトを公開しようとしています。
コマンドラインから公開プロファイルを機能させていますが、フォルダーの削除をスキップするスキップルールが機能していません。
ErrorLog
Webアプリにサブフォルダーがあり、web.config
その中にファイルがあり、適切なフォルダーのアクセス許可を設定しています。スキップルールがない場合、ErrorLog
フォルダーとweb.config
ファイルは正常に公開されますが、サーバー上のフォルダー内の既存のエラーログファイルはすべて公開時に削除されます。
エラー<SkipAction>Delete</SkipAction>
カスタムスキップルールをファイルに追加すると、スキップルールは要素wpp.targets
の値を受け入れなくなります。<SkipAction>
を設定<SkipAction>Delete</SkipAction>
すると、次のエラーが発生します。
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v11.0\Web\Microsoft.Web.Publishing.targets(4377,5): error : Web deployment task failed. (Unrecognized skip directive 'skipaction'. Must be one of the following: "objectName," "keyAttribute," "absolutePath," "xPath," "attributes.<name>.") [C:\inetpub\wwwroot\My.Website\My.Website\My.Website.csproj]
<SkipAction>
要素を単純に省略するErrorLog
と、通常公開されるときにフォルダーが削除されます。
を設定<SkipAction></SkipAction>
すると、この場合も、ErrorLog
フォルダーは公開時に削除されます。
を設定<KeyAttribute>Delete</KeyAttribute>
するErrorLog
と、web.config
ファイルは正常に公開されます。
私の理解では、カスタムスキップルールを使用するには、VS 2012内から公開するのではなく、コマンドラインからMSBuildを呼び出す必要があります。ただし、保存した公開プロファイルを引き続き使用したいのですが、これが可能になったことを理解しています。 VS2012の。
私のMSBuildコマンドライン:
C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe My.Website.sln /p:Configuration=Release;DeployOnBuild=true;PublishProfile="Test Server - Web Deploy"
My.Website.wpp.targets:
<?xml version="1.0" encoding="utf-8" ?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<AfterAddIisSettingAndFileContentsToSourceManifest>AddCustomSkipRules</AfterAddIisSettingAndFileContentsToSourceManifest>
</PropertyGroup>
<Target Name="AddCustomSkipRules">
<Message Text="Adding Custom Skip Rules" />
<ItemGroup>
<MsDeploySkipRules Include="SkipErrorLogFolder1">
<SkipAction></SkipAction>
<KeyAttribute>Delete</KeyAttribute>
<ObjectName>dirPath</ObjectName>
<AbsolutePath>$(_Escaped_WPPAllFilesInSingleFolder)\\ErrorLog$</AbsolutePath>
<XPath></XPath>
</MsDeploySkipRules>
</ItemGroup>
</Target>
</Project>
カスタムスキップルールを示しているが、ファイルを削除しているMSBuildの出力:
GenerateMsdeployManifestFiles:
Generate source manifest file for Web Deploy package/publish ...
AddCustomSkipRules:
Adding Custom Skip Rules
MSDeployPublish:
Start Web Deploy Publish the Application/package to http://testserver.domain.com/MSDEPLOYAGENTSERVICE ...
Starting Web deployment task from source: manifest(C:\inetpub\wwwroot\My.Website\My.Website\obj\Release\Package\My.Website.SourceManifest.xml) to Destination: auto().
Deleting filePath (MyWeb/ErrorLog\test.txt).
Updating setAcl (MyWeb/).
Updating setAcl (MyWeb/).
Updating filePath (MyWeb/ErrorLog\Web.config).
Updating filePath (MyWeb/Web.config).
Updating setAcl (MyWeb/).
Updating setAcl (MyWeb/).
Successfully executed Web deployment task.
Publish is successfully deployed.