Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This article describes the MSB3232 error code.
Message text
MSB3232: An empty directory was passed to RemoveDir and was ignored.
Description
This warning occurs when MSBuild tries to remove a directory, but the directory provided to the RemoveDir
task was an empty string. See RemoveDir task.
Resolution
If you're using RemoveDir
in your project code or your own imported MSBuild files, review the parameters for the RemoveDir
task, and make sure they're correct. Check that any property values provided have been defined at the point of the call, and have the correct value.
To find the RemoveDir
code that produces the error and debug its parameters, enable diagnostic logging (use the -v:diag
command-line switch for MSBuild), or generate a binary log (use the -bl
switch) and use the MSBuild structured log viewer.
Applies to
All versions of MSBuild