使用“ Microsoft.CodeDom.Providers.DotNetCompilerPlatform”包时,csc.exe编译时间降低

时间:2018-10-11 21:02:32

标签: c# .net compilation roslyn csc

我们的团队目前正在从C#5.0迁移到C#6.0语法,因此应使用Roslyn编译器代替旧版编译器。

我们必须在复杂的解决方案编译过程中使用“ csc.exe”。构建命令如下所示:

c:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe -nologo -target:library  -out:c:\repo\bin64\deb\common.dll @.\rspE0FF.tmp

此命令执行需要〜400ms

“ rspE0FF.tmp”内容看起来像这样(它包含更多* .cs文件,但是,没关系,这在任何文件集上都可以重现):

"c:\repo\shared\common\estimation\complexjob.cs"
"c:\repo\shared\common\stringdecorator.cs"
"c:\repo\shared\common\tplextensions.cs"
"/reference:mscorlib.dll" "/reference:System.dll" "/reference:System.Data.dll" "/reference:System.Xml.dll" "/reference:System.ServiceModel.Activation.dll" "/reference:System.IdentityModel.dll" "/reference:System.Data.Entity.dll" 

使用Roslyn编译器时,执行时间喊到〜4100ms 命令与从包文件夹中调用csc.exe相同:

c:\NewRepo\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1\tools\RoslynLatest\csc.exe -nologo -target:library -out:c:\repo\bin64\deb\common.dll @.\rspE0FF.tmp

我们必须通过依次运行数百个csc.exe命令来构建解决方案。总编译时间从2分钟增加到8分钟。

这会导致性能下降吗?

关于如何进行调整的任何建议?

1 个答案:

答案 0 :(得分:1)

roslyn团队不认为有人在调用csc.exe作为其性能调查的一部分。今天,您将在每次调用时关闭所有csc.exe(有关更多信息,请参见here)。

可能的解决方案:

  • 在您使用的csc版本上运行ngen,所以希望您只 需要准时一次
  • 使用编译器服务器,该服务器除了重复使用csc实例外,还缓存各个版本之间的元数据。

注意:msbuild任务会自动为您执行此操作,但是,根据您的情况,您将需要手动执行此操作。

您需要设置服务器(复制this的代码)并将/server传递给所有csc调用