-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/v0.6.1' into develop
- Loading branch information
Showing
13 changed files
with
146 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
44 changes: 44 additions & 0 deletions
44
AvalonStudio/AvalonStudio.Windows.Installer/Components.wxs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> | ||
<Fragment> | ||
<ComponentGroup Id="ProductComponents"> | ||
|
||
<ComponentRef Id="MainAppShortcut" /> | ||
<ComponentRef Id="ASBuildComponent" /> | ||
|
||
</ComponentGroup> | ||
|
||
<DirectoryRef Id="INSTALLASFOLDER" FileSource="..\AvalonStudio\bin\Release\netcoreapp2.2\win7-x64\publish\"> | ||
<Component Id="MainAppShortcut" Guid="{52CCFB0B-489A-4A7D-9BD3-E8704792C8FF}"> | ||
<Shortcut Id="MainAppShortcut" | ||
Name="AvalonStudio" | ||
Target="[INSTALLASFOLDER]AvalonStudio.exe" | ||
Directory="InstallProgramMenuFolder" | ||
WorkingDirectory="INSTALLASFOLDER" | ||
Icon="app.icon" /> | ||
|
||
<RegistryValue Id="RegShortcutKet" Root="HKCU" Key="SOFTWARE\AvalonStudio" Name="Shortcut" Value="1" Type="integer" KeyPath="yes" /> | ||
|
||
<CreateFolder Directory="ExtensionsASFolder" /> | ||
|
||
<RemoveFolder Id="RemoveStartMenu" Directory="InstallProgramMenuFolder" On="uninstall" /> | ||
<RemoveFolder Id="RemoveVESmFolder" Directory="VitalElementFolder" On="uninstall" /> | ||
</Component> | ||
</DirectoryRef> | ||
|
||
<DirectoryRef Id="INSTALLABFOLDER" FileSource="..\AvalonStudioBuild\bin\Release\netcoreapp2.2\win7-x64\publish\"> | ||
<Component Id="ASBuildComponent" Guid="{89C57461-C489-47FB-80D1-80345C25B335}"> | ||
<CreateFolder /> | ||
<CreateFolder Directory="ExtensionsABFolder" /> | ||
<Environment | ||
Id="Environment" | ||
Name="PATH" | ||
Part="last" | ||
System="yes" | ||
Value="[INSTALLABFOLDER]" | ||
Action="set" /> | ||
</Component> | ||
</DirectoryRef> | ||
|
||
</Fragment> | ||
</Wix> |
24 changes: 24 additions & 0 deletions
24
AvalonStudio/AvalonStudio.Windows.Installer/Directories.wxs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> | ||
<Fragment> | ||
|
||
<Directory Id="TARGETDIR" Name="SourceDir"> | ||
<Directory Id="ProgramMenuFolder"> | ||
<Directory Id="VitalElementFolder" Name="VitalElement"> | ||
<Directory Id="InstallProgramMenuFolder" Name="AvalonStudio" /> | ||
</Directory> | ||
</Directory> | ||
|
||
<Directory Id="ProgramFiles64Folder"> | ||
<Directory Id="VITALELEMENTFOLDER" Name="VitalElement"> | ||
<Directory Id="INSTALLASFOLDER" Name="AvalonStudio"> | ||
<Directory Id="ExtensionsASFolder" Name="Extensions" /> | ||
</Directory> | ||
<Directory Id="INSTALLABFOLDER" Name="AvalonBuild"> | ||
<Directory Id="ExtensionsABFolder" Name="Extensions" /> | ||
</Directory> | ||
</Directory> | ||
</Directory> | ||
</Directory> | ||
</Fragment> | ||
</Wix> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.