Aaron Dandy
Aaron Dandy
I may make some issues later or revive some I find.
So if I understand you correctly, you want to explore an integration between msbuild targets and bau tasks, like interweaving them? I know a few people to ask, I'll see...
To reduce redundancy I wonder if a simpler approach would be to integrate Bau into each msbuild project using a tool. Something as simple as `bau.Task("core.csproj:before")` and `bau install core.csproj`...
Example in favor of keeping the monochrome theme: https://github.com/NancyFx/Nancy.Portfolio/blob/master/guidelines/guidelines.md#color
I was thinking about this again and I wonder if having a specialized IDE icon would be a bad thing in a way. For me, the reason I like Bau...
May need to create something to parse `Environment.GetEnvironmentVariable ("PATH")` for multiple platforms.
xbuild looks like it creates a temporary script file containing for example "bower install" and then it calls that script using an absolute path.
I would propose the addition of a boolean property, like `public bool SearchPath { get; set; }` that will trigger logic that will search the PATH environment variable for the...
I designed the implementation/port to be read-only and immutable. There could be thread safety issues with mutating a dictionary after it is loaded and the use case I was targeting...
I just had a thought, one way this could be practical is based on how I had to create a "query" object to represent each suggestion and check call. I...