Skip to content

Commit

Permalink
add msi json for testing purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
cricketthomas committed Jul 28, 2024
1 parent 3ac8087 commit fd2cedf
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.0.0.5
1.0.0.0
Binary file added mpdev/AppIcon.ico
Binary file not shown.
56 changes: 56 additions & 0 deletions mpdev/msix.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"outputTypes": [
"msi",
"msix"
],
"outputDirectory": "Azure Key Vault Explorer\\output",
"packageName": "AzureKeyVaultExplorer",
"publisher": "Arthur Thomas",
"version": "1.0.0",
"platform": "x86",
"installDir": "%ProgramFiles(x86)%\\Azure Key Vault Explorer",
"icon": "AppIcon.ico",
"fileSystemEntries": [
{
"sourcePath": "publish",
"targetPath": "$.installDir"
}
],
"registries": [
{
"key": "HKEY_LOCAL_MACHINE\\SOFTWARE\\AzureKeyVaultExplorer",
"value": "This is value for default key."
},
{
"key": "HKEY_LOCAL_MACHINE\\SOFTWARE\\AzureKeyVaultExplorer",
"name": "SomeName",
"value": "Packaging should not be hard!"
}
],
"shortcuts": [
{
"target": "$.installDir\\keyvaultexplorerdesktop.exe",
"name": "Azure Key Vault Explorer"
}
],
"environmentVariables": [],
"digitalSignature": {
"generateTestCertificate": true,
"timestampServer": "http://timestamp.comodoca.com"
},
"msi": {
"upgradeCode": "{B1E93764-4E4C-499D-A55E-3324B6327E9F}",
"installDialog": {
"packageDescription": "Azure Key Vault Explorer, a GUI for finding secrets in Microsoft Azure Key Vault",
"publisherUrl": "https://sidesteplabs.us/",
"releaseNotesUrl": "https://github.com/sidestep-labs/AzureKeyVaultExplorer/releases",
"eulaUrl": "https://github.com/sidestep-labs/AzureKeyVaultExplorer/blob/master/LICENSE",
"primaryAccent": "#ff6200"
}
},
"msix": {
"installDialog": {
"primaryAccent": "#ff6200"
}
}
}

0 comments on commit fd2cedf

Please sign in to comment.