clariuslabs / TransformOnBuild

Transform Text Templates On Build
Apache License 2.0
48 stars 17 forks source link

Temporary directories #50

Closed binpick closed 5 years ago

binpick commented 6 years ago

Great tool, but could you kindly delete the temporary directories which contain the (generated?) file "Clarius.TransformOnBuild.MSBuild.Task.dll". My temp is full of them.

PhilipDaniels commented 6 years ago

I presume this is because of the difficulty of finding a reference to the dll, that it gets copied to a known, temp directory? In which case, it can be avoided by using the MSBuildThisFileDirectory property, this is what I do in one of my extensions:

<UsingTask AssemblyFile="$(MSBuildThisFileDirectory)MyExtension.dll" TaskName="MyCustomTask" />
mnaoumov commented 5 years ago

Fixed with #53