Jonathan Dodds
Jonathan Dodds
If you are intentionally setting the Dark theme by default then shouldn't the Proxyman preferences show that 'Dark Theme' is selected? When 'macOS Theme' is selected I expect the Proxyman...
Task batching is idiomatic in MSBuild and the documentation of the Copy task includes an example of copying a directory. Speaking for myself, I don't find it 'gnarly'. But I...
I disagree that > "Too many parameters" is not an objective downside. There is general consensus that a function or class method should be limited in the number of arguments....
Hi @mikerochip, The feature request is to extend the Copy task and it has been tagged as 'needs-design' and 'up-for-grabs'. I see discussion of the design issues and trade-offs involved...
@mikerochip It may be a recent change (I haven't looked at the history) but [Example 2](https://docs.microsoft.com/en-us/visualstudio/msbuild/copy-task?view=vs-2022#example-2) in the Copy task documentation is what you need to copy a directory.
Invoking the `Copy` task with the `RecursiveDir` metadata is invoking task batching. ``` ``` Task batching will invoke the `Copy` task for each 'batch'. I haven't tested but it seems...
# Design Proposal This issue is currently tagged as 'needs-design'. This is a possible way that the feature request could be satisfied. ## Background For source and destination, the `Copy`...
> @jrdodds are you interested in contributing the implementation? Yes. Thank you.
> ... if I have SourceFolders="C:\A\A1;C:\B\B1" and the DestinationFolder="C:\D", what is the resulting layout on disk? C:\D\A1 and C:\D\B1 or are the contents of A1 and B1 copied directly to...
The `-targets` and `-preprocess` switches are both documented as not executing a build process. However, both will exclude a solution file from their respective operations and then incorrectly build the...