我正在尝试使用Visual Studio Online构建我的项目。

我收到以下错误。

C:\a\src\.nuget\nuget.targets (71): The task factory "CodeTaskFactory" could not be loaded from the assembly "C:\Program Files (x86)\MSBuild\12.0\bin\amd64\Microsoft.Build.Tasks.v4.0.dll". Could not load file or assembly 'file:///C:\Program Files (x86)\MSBuild\12.0\bin\amd64\Microsoft.Build.Tasks.v4.0.dll' or one of its dependencies. The system cannot find the file specified.

这来自我的解决方案中的nuget.targets文件。
  <UsingTask TaskName="SetEnvironmentVariable" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll">
        <ParameterGroup>
            <EnvKey ParameterType="System.String" Required="true" />
            <EnvValue ParameterType="System.String" Required="true" />
        </ParameterGroup>
        <Task>
            <Using Namespace="System" />
            <Code Type="Fragment" Language="cs">
                <![CDATA[
                try {
                    Environment.SetEnvironmentVariable(EnvKey, EnvValue, System.EnvironmentVariableTarget.Process);
                }
                catch  {
                }
            ]]>
            </Code>
        </Task>
    </UsingTask>

我已经将nuget.exe更新到最新版本,并且没有更改nuget.targets中的任何内容。

最佳答案

问题是解决方案中的某些类库具有默认值:

ToolsVersion="12.0"

将其更改为
ToolsVersion="4.0"

使它可以在线上运行TFS

关于tfs - 在Visual Studio Online TFS构建上缺少Microsoft.Build.Tasks.v4.0.dll,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20587425/

10-13 08:07
查看更多