开发者

Bash - MSBuild - File Logger

开发者 https://www.devze.com 2023-04-10 14:14 出处:网络
I\'m trying to improve our local build implementation, by using Bash and p开发者_开发问答ending the success of a solution build, run the unit tests.

I'm trying to improve our local build implementation, by using Bash and p开发者_开发问答ending the success of a solution build, run the unit tests.

At the moment I want to pipe the results of the build in quite mode to the console (using default console logger) but pipe the results in more detail to a file using the file Logger.

From the bash I can execute the build fine, providing I don't specificy the FileLogger.

C:/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe /verbosity:q D:/MyDocs/Main.sln 

The minute I do this :

C:/Windows/Microsoft.NET/Framework/v4.0.30319/MSBuild.exe /verbosity:q D:/MyDocs/Main.sln /logger:FileLogger,Microsoft.Build.BuildEngine; /flp:logfile=Build.Log

The build fails and I get a could not load file or assembly Microsoft.Build.BuildEngine.

I've also tried changing dir so that I'm in the framework directory, but still get the same error.

As an aside I'm trying to provide the devs's with a quite verbosity for the local builds, but enable auto execution of the tests if the build is successful. I'll analyse build success by reviewing the contents of the Build.Log file for "Build Succeeded" Or "Build Failed"

I tried pushing the result to file using > "Build.log" but that impacts the colouring of the build output on the console which diminishes some of the value of what I'm trying to achieve.

Any help would be great.

Thanks


Microsoft.Build.BuildEngine is a namespace and not an ILogger. If you replace that portion in:

/logger:FileLogger,Microsoft.Build.BuildEngine;

... with a valid ILogger it's more likely to work.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号