DisplayMagician/DisplayMagicianShared/Scaling.cs
Terry MacDonald 9e1ef4a095 [WIP] First working WiX installer
Installer works, but there are a few issues with it.
- It doesn't register the DesktopBackground COM server
- It doesn't create a start menu shortcut with the AUMID
- It doesn't check for .Net Framework 4.8 or later
- It doesn't try to install .Net Framework 4.8 or later if not there
- It doesn't have any customised backgrounds...
- It doesn't ask to run DisplayMagician when install is finished
2020-12-20 20:42:04 +13:00

13 lines
217 B
C#

namespace DisplayMagicianShared
{
public enum Scaling
{
NotSpecified,
Identity,
Centered,
Stretched,
AspectRatioCenteredMax,
Custom,
Preferred
}
}