You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/AsService/System.Diagnostics/UninstallAction.cs

12 lines
362 B

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

Powered by TurnKey Linux.