フォークス2012年に初めて作成された一連のサービスは、Vs2010、Vs2013、Vs2013、Vs2013、Vs2015とシームレスに構築されています。MSBuild.Community.Tasks with vs2017
私はVs2017を構築しようとした際、私はMSBuild.Community.Tasks.AttribタスクはアセンブリがC:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\MSBuild\MSBuildCommunityTasks
フォルダの下に住んでいるアセンブリ からロードすることができませんでした
を取得するには、どんなにMSBuildCommunityTasks
フォルダがありません\2017\Professional\MSBuild
フォルダの下にあります。
ここVs2015とVs2017の間で何が変わった完全なエラー
C:\working\MySolution\build\Build.proj" (default target) (1) ->
(SetAssemblyVersion target) ->
C:\working\MySolution\build\Build.proj(100,5): error MSB4062: The "MSBuild.Community.Tasks.Attrib" task could not be loaded from the assembly C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\MSBuild\MSBuildCommunityTasks\MSBuild.Community.Tasks.dll.
Could not load file or assembly 'file:///C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\MSBuild\MSBuildCommunityTasks\MSBuild.Community.Tasks.dll' or one of its dependencies.
The system cannot find the file specified. Confirm that the <UsingTask> declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.
ですか?
これを解決するには何が必要ですか?
主な変更点はインストールパスです。スタンドアロンのビルドツールをインストールする場合を除いて、エディションフォルダを含むVSフォルダの下にネストされました。リリースノートについては、[MSBuild release notes](https://docs.microsoft.com/en-us/visualstudio/msbuild/what-s-new-in-msbuild-15-0)を参照してください。 あなたの問題は、ターゲットが正しい新しい場所に配置されていないことが原因である可能性があります。 Azure SDKのgit [MSBuildの問題](https://github.com/Microsoft/msbuild/issues/1888)に問題があり、試してみてください。 –
ありがとうSiobhan、私は月曜日にそれをチェックします –
あなたはそれを探しているところで 'MSBuildCommunityTasks'をコピーできます。つまり、C:¥Program Files(x86)¥MSBuild¥MSBuildCommunityTasks'をC:¥Program Files(x86)¥Microsoft Visual Studio¥2017¥Community¥MSBuild'にコピーします。 – wal