在VSTS Hosted VS2017代理中,带有.NET Core1.1构建的Angular4.1失败

时间:2017-05-27 20:21:09

标签: angular typescript azure-pipelines asp.net-core-1.1

我在.NET Core 1.1上安装了一个Angular 4.1.1应用程序,我最近从VS2015 w / update 3迁移到了VS2017。我的csproj在我的本地机器上构建并运行良好,但在通过其托管的VS2017代理在VSTS上设置构建时失败。

在“构建”步骤期间发生故障,此处是日志文件中指示原因的部分:

Installed:
2017-05-27T14:23:05.5884539Z       301 package(s) to d:\a\1\s\src\MyApp.Web\MyApp.Web.csproj
2017-05-27T14:23:05.6244543Z ##[section]Finishing: Restore
2017-05-27T14:23:05.6254542Z ##[section]Starting: Build
2017-05-27T14:23:05.6264541Z ==============================================================================
2017-05-27T14:23:05.6264541Z Task         : .NET Core
2017-05-27T14:23:05.6264541Z Description  : Build, test and publish using dotnet core command-line.
2017-05-27T14:23:05.6264541Z Version      : 1.0.1
2017-05-27T14:23:05.6264541Z Author       : Microsoft Corporation
2017-05-27T14:23:05.6264541Z Help         : [More Information](https://go.microsoft.com/fwlink/?linkid=832194)
2017-05-27T14:23:05.6264541Z ==============================================================================
2017-05-27T14:23:05.9804666Z [command]"C:\Program Files\dotnet\dotnet.exe" build d:\a\1\s\src\MyApp.Web\Gitrub.Web.csproj --configuration release
2017-05-27T14:23:09.2404951Z Microsoft (R) Build Engine version 15.1.1012.6693
2017-05-27T14:23:09.2404951Z Copyright (C) Microsoft Corporation. All rights reserved.
2017-05-27T14:23:09.2404951Z 
2017-05-27T14:23:14.7693001Z C:\Users\buildguest\.nuget\packages\microsoft.typescript.msbuild\2.2.2\tools\microsoft.TypeScript.targets(168,5): error MSB4062: The "TypeScript.Tasks.FindConfigFiles" task could not be loaded from the assembly C:\Users\buildguest\.nuget\packages\microsoft.typescript.msbuild\2.2.2\tools\TypeScript.tasks.dll. Could not load file or assembly 'Microsoft.Build.Utilities.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. 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. [d:\a\1\s\src\MyApp.Web\MyApp.Web.csproj]
2017-05-27T14:23:15.0284154Z 
2017-05-27T14:23:15.0284154Z Build FAILED.
2017-05-27T14:23:15.0284154Z 
2017-05-27T14:23:15.0284154Z C:\Users\buildguest\.nuget\packages\microsoft.typescript.msbuild\2.2.2\tools\microsoft.TypeScript.targets(168,5): error MSB4062: The "TypeScript.Tasks.FindConfigFiles" task could not be loaded from the assembly C:\Users\buildguest\.nuget\packages\microsoft.typescript.msbuild\2.2.2\tools\TypeScript.tasks.dll. Could not load file or assembly 'Microsoft.Build.Utilities.v4.0, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'. 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. [d:\a\1\s\src\MyApp.Web\MyApp.Web.csproj]
2017-05-27T14:23:15.0284154Z     0 Warning(s)
2017-05-27T14:23:15.0284154Z     1 Error(s)
2017-05-27T14:23:15.0294178Z 
2017-05-27T14:23:15.0294178Z Time Elapsed 00:00:05.73
2017-05-27T14:23:15.0564018Z ##[error]Error: C:\Program Files\dotnet\dotnet.exe failed with return code: 1
2017-05-27T14:23:15.0564018Z ##[error]Dotnet command failed with non-zero exit code on the following projects : d:\a\1\s\src\MyApp.Web\MyApp.Web.csproj

我在VSTS网站上注意到,作为VS2017托管代理支持的一部分,并不包括Typescript(以及“托管”代理的v2.0.6),我认为这可能是上述原因错误,但是在我将我的应用程序迁移到VS2017之前,我已经能够在“托管”代理上运行成功构建,同时使用我正在尝试部署的打字稿的SAME版本(2.2)...

我很感激能帮我解决这个问题的人。这是我的csproj供参考:

<Project Sdk="Microsoft.NET.Sdk.Web">

  <PropertyGroup>
    <TargetFramework>netcoreapp1.1</TargetFramework>
    <PreserveCompilationContext>true</PreserveCompilationContext>
    <AssemblyName>MyApp.Web</AssemblyName>
    <OutputType>Exe</OutputType>
    <PackageId>MyApp.Web</PackageId>
    <RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion>
    <PackageTargetFallback>$(PackageTargetFallback);dotnet5.6;portable-net45+win8</PackageTargetFallback>
  </PropertyGroup>

  <ItemGroup>
    <None Update="wwwroot\**\*">
      <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
    </None>
  </ItemGroup>

  <ItemGroup>
    <PackageReference Include="Microsoft.AspNetCore.Diagnostics" Version="1.1.1" />
    <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="1.1.2" />
    <PackageReference Include="Microsoft.AspNetCore.Server.IISIntegration" Version="1.1.2" />
    <PackageReference Include="Microsoft.AspNetCore.Server.Kestrel" Version="1.1.1" />
    <PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.2" />
    <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="1.1.2" />
    <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="1.1.1" />
    <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="1.1.1" />
    <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.2" />
    <PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="1.1.1" />
    <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="1.1.1" />
    <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.1" />
    <PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.1" />
    <PackageReference Include="Microsoft.TypeScript.Compiler" Version="2.2.1" />
    <PackageReference Include="Microsoft.TypeScript.MSBuild" Version="2.2.2" />
  </ItemGroup>

</Project>

2 个答案:

答案 0 :(得分:0)

我最近设置了类似的版本并遇到了同样的问题。我能够通过为#34; dotnet restore添加.NET Core步骤来解决它。&#34;

答案 1 :(得分:0)

使用 Microsoft.TypeScript.MSBuild 2.3.3 。 (有2.2.2的问题)。

这是我的csproj(不需要添加Microsoft.TypeScript.Compiler包)

<Project Sdk="Microsoft.NET.Sdk.Web">

  <PropertyGroup Label="Globals">
    <SccProjectName>SAK</SccProjectName>
    <SccProvider>SAK</SccProvider>
    <SccAuxPath>SAK</SccAuxPath>
    <SccLocalPath>SAK</SccLocalPath>
  </PropertyGroup>

  <PropertyGroup>
    <TargetFramework>netcoreapp1.1</TargetFramework>
  </PropertyGroup>

  <PropertyGroup>
    <PackageTargetFallback>$(PackageTargetFallback);portable-net45+win8+wp8+wpa81;</PackageTargetFallback>
  </PropertyGroup>
  <ItemGroup>
    <PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.0.0" />
    <PackageReference Include="Microsoft.AspNetCore" Version="1.1.1" />
    <PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.2" />
    <PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.1" />
    <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.1" />
    <PackageReference Include="Microsoft.TypeScript.MSBuild" Version="2.3.3" />
    <PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="1.1.0" />
  </ItemGroup>
  <ItemGroup>
    <DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="1.0.0" />
  </ItemGroup>

</Project>

注意:根据我的测试,Typescript 2.1可用于Hosted VS2017代理。