Aaron Dandy
Aaron Dandy
My office will be moving on Friday and I think I will be kicked out of work. I want to see this implemented so I intend to take a shot...
I also would like to see Option 2. Option 3 seems like it may add confusion unless the original package is renamed to include `1` in the name. If option...
It looks like with the exception of silent, v2 is a superset so that should work great. My only concern is that we would be pushing this versioning problem down...
@jasonmitchell @adamralph I think we are all mostly in agreement on this, at least enough for the issue to be worked.
:+1: Also possible to check for `Directory.Exists` in a loop and have a configurable `maxWaitMs` parameter.
I had tried to reproduce this issue myself recently and actually could not. I am 99% positive I have seen behavior where after deleting a directory it was not fully...
Here is an example of one of my create directory tasks for some ideas on usage. ``` .Task("create-artifact-folders").Do(() => { var dirsToCreate = new[] { artifactDir, nugetOutputDir, logsDir }.Where(di =>...
Only partially related to the issue: I have started defining DirectoryInfo and FileInfo instances at the top of my baufile instead of using strings. It's not for everybody but as...
As I have been watching this thread and thinking about things like async and passing things between tasks I wonder if there should be a complete redesign of what a...