任何想法如何限制假構建中MSBuild任務生成的輸出? 我對看到所有編譯信息細節並不感興趣,因爲我有興趣看到警告消息。縮小MSBuild詳細程度以限制假構建輸出
我開始使用StyleCop.Analyzers,如果我得到一個單一的警告,很難觀察生成任務生成的所有消息之間。
以下是我有現在:
// Target Build Application
Target "BuildApp" (fun _ ->
MSBuildRelease buildDir "Build" appReferences
|> Log "AppBuild-Output: "
)
看看這個:http://stackoverflow.com/a/34006757/180286 –