Closed tekuser closed 9 years ago
Do you know where the std location is for gradle-downloaded-binaries ? I've mostly seen ppl use HOME/.gradle, but not sure it's a standard
Gradle download dependencies in the user's HOME/.gradle/ (there is a cache inside). So gradle-msbuild-plugin.jar is downloaded somewhere in HOME/.gradle. But the plugin extract the ProjectFileParser.exe in the user's temp dir (defined by the env var %TEMP% or %TMP%).
So we can do the same thing as in the gradle-nuget-plugin: https://github.com/Ullink/gradle-nuget-plugin/blob/master/src/main/groovy/com/ullink/BaseNuGet.groovy
l28: File nugetExe = new File(temporaryDir, NUGET_EXE)
Proposition for Issue https://github.com/Ullink/gradle-msbuild-plugin/issues/28