mirror of https://github.com/ogoun/Zero.git
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.
12 lines
362 B
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
|
|
}
|
|
}
|