c# – 如何从msbuild获取构建日志?

c# – 如何从msbuild获取构建日志?,第1张

概述我正在使用下面的代码来编译我的蛋糕脚本项目,我想在文本文件中获取构建日志. if(IsRunningOnWindows()){ // Use MSBuild foreach(string currenproject in projectslocation) { MSBuild(currenproject, new MSBuildSettings() .SetConfigur 我正在使用下面的代码来编译我的蛋糕脚本项目,我想在文本文件中获取构建日志.

if(IsRunningOnwindows()){  // Use MSBuild  foreach(string currenproject in projectslocation)  {  MSBuild(currenproject,new MSBuildSettings()  .SetConfiguration(configuration)  .SetVerbosity(Verbosity.Minimal));  }}

这可以创建构建日志文件吗?

解决方法 来到Cake的下一个版本(0.17.0)(希望我们在本周末发布)我们实现了这个 feature request,它允许使用一个新的扩展方法,允许你传入 MSBuildFileLogger.这个扩展方法将阻止进入ArgumentCustomization路由.

这应该允许你这样的事情:

MSBuild("./myproject.sln",new MSBuildSettings()    .AddfileLogger(new MSBuildfileLogger {        Logfile = "./errors.txt",MSBuildfileLoggerOutput = MSBuildfileLoggerOutput.ErrorsOnly   });

你今天可以使用Cake的MyGet feed获得预发布的v0.17.0版本的Cake.

如果您使用nuget Cli来安装Cake,就像在default bootstrapper中一样,您将-Source https://www.myget.org/F/cake/API/v3/index.Json添加到nuget install语句中.

然后:

>如果您使用package.config来固定Cake版本,请指定版本0.17.0-Alpha0092或更高版本.>如果您只是使用Cake包ID安装,那么您只需添加-PreRelease,它将从Feed获取最新版本或指定-Version 0.17.0-Alpha009参数.

总结

以上是内存溢出为你收集整理的c# – 如何从msbuild获取构建日志?全部内容,希望文章能够帮你解决c# – 如何从msbuild获取构建日志?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1220203.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存