Skip to content

Commit

Permalink
Merge pull request #30 from tekuser/master
Browse files Browse the repository at this point in the history
ProjectFileParser is now extracted in the plugin temp dir
  • Loading branch information
gluck committed Apr 25, 2015
2 parents d8a5b9a + 18d83df commit fe7be5e
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 fe7be5e

Please sign in to comment.