mirror of
https://github.com/terrymacdonald/DisplayMagician.git
synced 2024-08-30 18:32:20 +00:00
Changed the process stopping logic to make it more relable, and also make it much more likely to actually stop the programs even if they do things like launch other programs and stop themselves Added more helpful instructions Added a link to the Example Start Programs settings on the wiki by clicking on a button in the ShortcutForm itself. Added helpful MessageBox telling people they need to select a Game Shortcut in order to run, edit, delete or save it. Also included text about the mouse right-click menu. Clarified text on the StartProgramControl.
30 lines
1.0 KiB
XML
30 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Include>
|
|
<!--
|
|
Versioning. These have to be changed for upgrades.
|
|
It's not enough to just include newer files.
|
|
-->
|
|
<?define MajorVersion="1" ?>
|
|
<?define MinorVersion="1" ?>
|
|
<?define PatchVersion="2" ?>
|
|
<!-- Revision is NOT used by WiX in the upgrade procedure -->
|
|
<!-- Full version number to display -->
|
|
<?define VersionNumber="$(var.MajorVersion).$(var.MinorVersion).$(var.PatchVersion)" ?>
|
|
|
|
<!--
|
|
Upgrade code HAS to be the same for all updates.
|
|
Once you've chosen it don't change it.
|
|
-->
|
|
<?define UpgradeCode="33E22B4C-982F-4B02-A3DE-085693742DB5" ?>
|
|
<!--
|
|
Path to the resources directory. resources don't really need to be included
|
|
in the project structure but I like to include them for for clarity
|
|
-->
|
|
<?define ResourcesDir="$(var.ProjectDir)Resources" ?>
|
|
<!--
|
|
The name of your application exe file. This will be used to kill the process when updating
|
|
and creating the desktop shortcut
|
|
-->
|
|
<?define ExeProcessName="DisplayMagician" ?>
|
|
|
|
</Include> |