-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding wix files Signed-off-by: shivamkm07 <shivamkm07@gmail.com> * Adding msi build in workflow Signed-off-by: shivamkm07 <shivamkm07@gmail.com> * Updating .gitignore Signed-off-by: shivam <shivamkm07@gmail.com> * Updating Readme Signed-off-by: shivam <shivamkm07@gmail.com> * Updating Product/Manufacturer Name Signed-off-by: shivam <shivamkm07@gmail.com> * Removed unncessary whitespace Signed-off-by: shivam <shivamkm07@gmail.com> Signed-off-by: shivamkm07 <shivamkm07@gmail.com> Signed-off-by: shivam <shivamkm07@gmail.com> Co-authored-by: Mukundan Sundararajan <65565396+mukundansundar@users.noreply.github.com> Co-authored-by: Pravin Pushkar <ppushkar@microsoft.com>
- Loading branch information
1 parent
9e07fcd
commit 80f7bee
Showing
6 changed files
with
493 additions
and
0 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
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,47 @@ | ||
<?xml version='1.0' encoding='windows-1252'?> | ||
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'> | ||
|
||
<!-- Product IDs are autogenerated (*) at every build--> | ||
<Product Name='CLI' Id='*' UpgradeCode='ed31d74d-b958-4db2-910f-de85c0a9cea0' Language='1033' Codepage='1252' Version='$(var.Version)' Manufacturer='Dapr'> | ||
|
||
<!-- Installer Package--> | ||
<Package Id='*' Keywords='Installer' Description="Dapr CLI Installer" InstallerVersion='400' Languages='1033' Compressed='yes' SummaryCodepage='1252' /> | ||
|
||
<!-- License Agreement --> | ||
<WixVariable Id="WixUILicenseRtf" Value="$(var.DaprLicenseDirectory)/license.rtf" /> | ||
|
||
<!-- Upgrade logic --> | ||
<!-- AllowSameVersionUpgrades "yes" -> Always upgrade, never allow two versions to be installed next to each other --> | ||
<!-- AllowSameVersionUpgrades causes ICE61 which must be ignored --> | ||
<!-- AllowDowngrades "no" -> Prevents out-of-order installations i.e. installing an older version after installing a newer version --> | ||
<MajorUpgrade AllowSameVersionUpgrades="yes" AllowDowngrades="no" DowngradeErrorMessage="A later version of Dapr CLI is already installed. Setup will now exit."/> | ||
|
||
<Media Id='1' Cabinet='Dapr.cab' EmbedCab='yes' /> | ||
|
||
<!-- Directory Structure --> | ||
<Directory Id='TARGETDIR' Name='SourceDir'> | ||
<Directory Id='INSTALLDIR'> | ||
|
||
<!-- Dapr EXE Component --> | ||
<Component Id='DaprEXE_Comp' Guid='83363a24-2323-489c-b9b7-a3fd7f0dacd1'> | ||
<File Id='DaprEXE' Name='dapr.exe' DiskId='1' Source='$(var.DaprEXEDirectory)/dapr.exe' KeyPath='yes'> | ||
</File> | ||
</Component> | ||
|
||
</Directory> | ||
</Directory> | ||
|
||
<!-- Default Install Location is 'C:\dapr'--> | ||
<SetDirectory Id='INSTALLDIR' Value='[WindowsVolume]dapr' /> | ||
|
||
<Feature Id='Complete' Level='1'> | ||
<ComponentRef Id='DaprEXE_Comp' /> | ||
</Feature> | ||
|
||
<!-- Dialog to let the user choose a directory where the product will be installed--> | ||
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" /> | ||
<UIRef Id="WixUI_InstallDir" /> | ||
|
||
</Product> | ||
</Wix> | ||
|
Oops, something went wrong.