Itiviti / gradle-msbuild-plugin

Gradle plugin for msbuild execution, supports C# project files for now
Apache License 2.0
101 stars 57 forks source link

Is possible to specify a custom location of xbuild? #19

Closed FLMFreddy closed 9 years ago

FLMFreddy commented 9 years ago

Just wanted to know if this was possible to do this?

gluck commented 9 years ago

I think you can set msbuildDir within the task, i.e.:

msbuild { msbuildDir = "folder_which_contains_xbuild.exe" }

Give it a try maybe (never really tested, by default it mono executable parent folder)

FLMFreddy commented 9 years ago

Works like a charm, thanks!