全新ASP.NET Core 2.1项目的构建时间缓慢

时间:2018-06-02 07:48:30

标签: c# visual-studio asp.net-core build asp.net-core-2.1

我在visual studio 15.7.3中创建了一个全新的ASP.NET Core 2.1应用程序。

新创建的应用程序的构建时间非常慢,大约需要20秒。

尽可能地追踪构建我似乎停在这里:

1>    C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.razor.extensions\2.1.0\lib\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll
1>    '
1>    Server execution failed with response Rejected. For more info, check 
the server log file in the location specified by the RAZORBUILDSERVER_LOG 
environment variable.
1>    Fallback to in-process execution.

当然这不正常,任何人都知道如何解决这个问题?

1 个答案:

答案 0 :(得分:6)

如果您的用户名中包含空格,则会出现错误-请参见https://github.com/aspnet/Razor/issues/2406

最适合我的解决方案是将以下内容放入我的csproj文件中

<PropertyGroup>
  <!-- see https://github.com/aspnet/Razor/issues/2406 -->
  <_RazorBuildServerPipeName>razor-issues-2406</_RazorBuildServerPipeName>
</PropertyGroup>