Skip to content

Commit

Permalink
ProjectFileParser is now extracted in the plugin temp dir
Browse files Browse the repository at this point in the history
  • Loading branch information
tekuser committed Apr 25, 2015
1 parent d8a5b9a commit 18d83df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/groovy/com/ullink/Msbuild.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ class Msbuild extends ConventionTask {
throw new GradleException("Project/Solution file $file does not exist")
}

def tmp = File.createTempFile('ProjectFileParser', '.exe')
File tmp = File.createTempFile('ProjectFileParser', '.exe', temporaryDir)
try {
def src = getClass().getResourceAsStream(resolver.getFileParserPath())
tmp.newOutputStream().leftShift(src).close();
Expand Down

0 comments on commit 18d83df

Please sign in to comment.