namespace System.Diagnostics
{
/// Specifies what an installer should do during an uninstallation.
public enum UninstallAction
{
/// Removes the resource the installer created.
Remove,
/// Leaves the resource created by the installer as is.
NoAction
}
}