Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
Previous Versions
.NET Framework 2.0
General Reference
MSBuild Reference
Task Reference
 Delete Task
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2005/.NET Framework 2.0

Other versions are also available for the following:

Want more? Here are some additional resources on this topic:

.NET Framework General Reference 
Delete Task 

Deletes the specified files.

The following table describes the parameters of the Delete task.

Parameter Description

DeletedFiles

Optional ITaskItem[] output parameter.

Specifies the files that were successfully deleted.

Files

Required ITaskItem[] parameter.

Specifies the files to delete.

TreatErrorsAsWarnings

Optional Boolean parameter

If true, errors are logged as warnings. The defalut value is false.

The following example deletes the file MyApp.pdb.

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

    <PropertyGroup>
        <AppName>MyApp</AppName>
    </PropertyGroup>

    <Target Name="DeleteFiles">
        <Delete Files="$(AppName).pdb" />
    </Target>
</Project>

Concepts

MSBuild Tasks

Other Resources

MSBuild Task Reference

Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement | Site Feedback
Page view tracker