0

我正在尝试在 MSBuild 中使用 MSDeploy 任务(而不是从命令行调用它)。我认为这个任务是内置在 MSBuild 中的,但我似乎很难找到这个任务。我得到的错误如下。我刚刚重新安装了 Web 部署工具,看看它是否有帮助。

C:\CLIENTS\DAM\Components\Umbraco\SiteTemplate_v6_1_6\Build>msbuild MSBuildScript.csproj -t:Deploy_v2
Microsoft (R) Build Engine version 4.0.30319.17929
[Microsoft .NET Framework, version 4.0.30319.18052]

<!-- some other stuff -->

error MSB4036: The "MSDeploy" task was not found. Check
     the following: 1.) The name of the task in the project file is the same as the name of the task class. 2.) The task class is "public" and imple
    ments the Microsoft.Build.Framework.ITask interface. 3.) The task is correctly declared with <UsingTask> in the project file, or in the *.tasks
    files located in the "c:\Windows\Microsoft.NET\Framework\v4.0.30319" directory.
4

1 回答 1

2

v10.0可以变化(例如 v11.0)

搜索您的“Microsoft.WebApplication.targets”文件并更改导入语句以匹配。

<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="AllTargetsWrapped">

        <Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />

    <!-- Bunch of Other Stuff -->



    <Target Name="AllTargetsWrapped">

        <CallTarget Targets="ShowVariables" />

    </Target>


    <Target Name="ShowVariables" >
        <Message Text="MSBuildExtensionsPath = $(MSBuildExtensionsPath)" />
    </Target>
于 2013-10-25T13:13:01.370 回答