vote up 0 vote down star

I'm trying to write a MSBuild Task that deletes the Obj directory and PDBs from my bin folder on my production build scripts and can't seem to get it to work right.

Does anyone have an example where they do this or similar, or a link to a simple example of removing files and a directory with MSBuild?

flag

2 Answers

vote up 2 vote down check

If you're looking to delete an entire directory you require the RemoveDir task:

<RemoveDir Directories="Path/To/Obj" />

And if you're wanting to delete the PDB files from bin you'll want the Delete task:

<Delete Files="Path/To/Bin/MyApp.pdb" />

Note that you cannot use wildcards in the Delete task, so if you have multiple pdb files you're have to provide an ItemGroup as an argument.

link|flag
Will the remove dir work with files in it? – Chris Marisic Sep 25 at 19:26
I'm not sure... The MSBuild tasks are simply wrappers around the commands. And since rmdir in windows doesn't delete the directory unless it is empty, I'm leaning towards No. – LFSR Consulting Sep 25 at 19:32
The RemoveDir task reference page (see above) says all files and subdirectories will be deleted. – Yawar Sep 27 at 2:17
I wish I could mark both of your answers because the link to the RemoveDir task showed me what was really missing was I that I didn't dereference my OutputPath property for finding the right directory. Sayeds response with the ItemGroup syntax was what I needed to do to grab all of the pdb's to delete them. Thank you both! – Chris Marisic Oct 11 at 17:48
vote up 1 vote down

You can delete the files in those directories first and then the dir itself with

<Target Name="SomeTarget">

<ItemGroup>
    <FilesToDelete Include="Path\To\Obj\**\*"/>
</ItemGroup>

<Delete Files="@(FilesToDelete)" />

<RemoveDir Directories="Path\To\Obj\" />
</Target>
link|flag
This helped me thanks alot! Sorry I couldn't mark both of your answers at the solution, I added some more in my comment above. – Chris Marisic Oct 11 at 17:49

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.