web-dev-qa-db-ja.com

MSBuild復元ターゲット-MSB4057:ターゲット「復元」がプロジェクトに存在しません

メインの製品ポートフォリオには20を超えるソリューション(880以上のプロジェクト)があり、うまく機能する複雑なビルドスクリプトのセットがありますが、msbuildパイプライン内からのnugetパッケージの復元を自動化しようとしています。現在、これはnugetを手動で呼び出してパッケージを復元することで行われます。

https://docs.Microsoft.com/en-us/nuget/schema/msbuild-targets によると、このコマンドを実行して復元を実行できるはずです。

# works
& $script:msBuildPath $solutionName /t:build /v:q /clp:ErrorsOnly /nologo /p:...
# doesn't works
& $script:msBuildPath $solutionName /t:restore,build /v:q /clp:ErrorsOnly /nologo /p:...

しかし、上記にrestore,を追加すると、エラーがスローされます

MSB4057: The target "restore" does not exist in the project

このターゲットが見つからない理由を理解するために、どこから調査を開始しますか?私たちは主にVS 2015と.NET 4.6.2を使用しています。 VS2017への移行は、現時点ではオプションではありません。


/v:qフラグと/clp:ErrorsOnlyフラグを省略した場合、これを取得します(わずかにサニタイズされたソリューション/プロジェクト名とパス)

PS Z:\git\company> build c
building Common\Common.sln
Build started 11/15/2017 11:08:54 AM.
     1>Project "Z:\git\company\Common\Common.sln" on node 1 (restore;build target(s)).
     1>ValidateSolutionConfiguration:
         Building solution configuration "DEBUG|Any CPU".
     1>Z:\git\company\Common\Common.sln.metaproj : error MSB4057: The target "restore" does not exist in the project. [Z:\git\company\Common\Common.sln]
     1>Done Building Project "Z:\git\company\Common\Common.sln" (restore;build target(s)) -- FAILED.

Build FAILED.

       "Z:\git\company\Common\Common.sln" (restore;build target) (1) ->
         Z:\git\company\Common\Common.sln.metaproj : error MSB4057: The target "restore" does not exist in the project. [Z:\git\company\Common\Common.sln]

    0 Warning(s)
    1 Error(s)

Time Elapsed 00:00:00.03
runBuildPackage :  ... failed
At Z:\git\company\psincludes\buildFunctions.ps1:11 char:5
+     runBuildPackage "Common\Common.sln"
+     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorException
    + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorException,runBuildPackage


msbuild failed
At Z:\git\company\psincludes\buildInternals.ps1:63 char:21
+                     throw "msbuild failed";
+                     ~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : OperationStopped: (msbuild failed:String) [], RuntimeException
    + FullyQualifiedErrorId : msbuild failed

私はこれの一部が内部ツールであることを理解していますが、その部分を不明瞭にする必要性を感じませんでした。

「インターネット」によれば、これはビルドプロセスの一部として「無料」である必要があり、ここのcsprojファイルに何が欠けているのかはわかりません。

10
jcolebrand

Msbuildに統合されたNuGet機能は、MS Build 15と組み合わせてNuGet 4.0+で使用できます。つまり、VS 2017でのみ使用できます。VS2015の復元ターゲットはサポートされていません。

VS 2017/NuGet 4の統合復元は、NuGetパッケージを参照する新しいPackageReferenceスタイルを使用するプロジェクトでのみ機能します。 packages.configを使用するプロジェクトでは機能しません。パッケージを参照するこの新しい方法は、ASP.NET Core(.NET Framework/.NET Coreの両方)、. NET Core、および.NET Standardプロジェクトのデフォルトオプションです。 NuGetプロパティ(ツール->オプション-> NuGet)で最初のインストールの前にスタイルを選択することにより、他のすべてのプロジェクトタイプに対してオプトインします。

/t:Restore,Buildを呼び出すことは、このターゲットを呼び出すのに適した方法ではないことに注意してください。これは、msbuildが再ロードしないファイルが復元によって生成または変更される可能性があるためです。 MSBuild 15.5(VS 2017の今後の更新)では、代わりに/restoreオプションが導入され、復元ターゲットが呼び出され、以前はクリアできなかったすべてのキャッシュがクリアされ、要求どおりに通常のビルドが実行されます。 15.5より前では、msbuildに対して2つの異なる呼び出しを行うのが最適です。

13
Martin Ullrich