Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
shell: pwsh
run: |
dotnet build src/avalonia/kv.sln;
dotnet build src/uno/AzureKeyVaultStudio/AzureKeyVaultStudio.slnx
dotnet build src/uno/AzureKeyVaultStudio.slnx

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
Expand Down
26 changes: 14 additions & 12 deletions .github/workflows/uno-dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ env:
STEP_TIMEOUT_MINUTES: 60
CONFIGURATION: Release
dotnetVersion: 10.0.x
APP_VERSION_NUMBER: 2.1.${{ github.run_number }}

jobs:
build_windows_x64:
name: Build Windows x64
Expand All @@ -38,8 +40,8 @@ jobs:
- name: Publish Windows x64
shell: pwsh
run: |
cd ./src/uno/AzureKeyVaultStudio/AzureKeyVaultStudio
dotnet publish -f net10.0-windows10.0.26100 -r win-x64 -p:SelfContained=true -p:PublishSingleFile=true -p:PublishReadyToRun=true -p:Version=2.0.${{ github.run_number }} -c Release -p:WindowsPackageType=None ./AzureKeyVaultStudio.csproj
cd ./src/uno/AzureKeyVaultStudio
dotnet publish -f net10.0-windows10.0.26100 -r win-x64 -p:SelfContained=true -p:PublishSingleFile=true -p:PublishReadyToRun=true -p:Version=${{ env.APP_VERSION_NUMBER }} -c Release -p:WindowsPackageType=None ./AzureKeyVaultStudio.csproj
New-Item -ItemType Directory -Path "$env:GITHUB_WORKSPACE/win-x64" -Force
Move-Item -Path ".\bin\Release\net10.0-windows10.0.26100\win-x64\publish\*.exe" -Destination "$env:GITHUB_WORKSPACE\win-x64\" -Force
- name: Create Package
Expand Down Expand Up @@ -69,8 +71,8 @@ jobs:
- name: Publish Windows ARM64
shell: pwsh
run: |
cd ./src/uno/AzureKeyVaultStudio/AzureKeyVaultStudio
dotnet publish -f net10.0-windows10.0.26100 -r win-arm64 -p:Platform=arm64 -p:SelfContained=true -p:PublishSingleFile=true -p:PublishReadyToRun=true -p:PublishTrimmed=false -p:Version=2.0.${{ github.run_number }} -c Release -p:WindowsPackageType=None ./AzureKeyVaultStudio.csproj
cd ./src/uno/AzureKeyVaultStudio
dotnet publish -f net10.0-windows10.0.26100 -r win-arm64 -p:Platform=arm64 -p:SelfContained=true -p:PublishSingleFile=true -p:PublishReadyToRun=true -p:PublishTrimmed=false -p:Version=${{ env.APP_VERSION_NUMBER }} -c Release -p:WindowsPackageType=None ./AzureKeyVaultStudio.csproj
New-Item -ItemType Directory -Path "$env:GITHUB_WORKSPACE/win-arm64" -Force
Move-Item -Path ".\bin\Release\net10.0-windows10.0.26100\win-arm64\publish\*.exe" -Destination "$env:GITHUB_WORKSPACE\win-arm64\" -Force
- name: Create Package
Expand Down Expand Up @@ -101,8 +103,8 @@ jobs:
shell: pwsh
run: |
dotnet workload restore
cd ./src/uno/AzureKeyVaultStudio/AzureKeyVaultStudio
dotnet publish -f net10.0-desktop -p:UnoMacOSCustomInfoPlist=Info.plist -p:PackageFormat=app -p:SelfContained=true -p:PublishReadyToRun=true -r osx-x64 -p:Version=2.0.${{ github.run_number }} -c Release ./AzureKeyVaultStudio.csproj
cd ./src/uno/AzureKeyVaultStudio
dotnet publish -f net10.0-desktop -p:UnoMacOSCustomInfoPlist=Info.plist -p:PackageFormat=app -p:SelfContained=true -p:PublishReadyToRun=true -r osx-x64 -p:Version=${{ env.APP_VERSION_NUMBER }} -c Release ./AzureKeyVaultStudio.csproj
New-Item -ItemType Directory -Path "$env:GITHUB_WORKSPACE/osx-x64" -Force
Move-Item -Path "./bin/Release/net10.0-desktop/osx-x64/publish/*.app" -Destination "$env:GITHUB_WORKSPACE/osx-x64/" -Force
- name: Create Package
Expand Down Expand Up @@ -132,9 +134,9 @@ jobs:
- name: Publish macOS ARM64
shell: pwsh
run: |
cd ./src/uno/AzureKeyVaultStudio/AzureKeyVaultStudio
cd ./src/uno/AzureKeyVaultStudio
dotnet workload restore
dotnet publish -f net10.0-desktop -p:UnoMacOSCustomInfoPlist=Info.plist -p:PackageFormat=app -p:PublishReadyToRun=true -r osx-arm64 -p:Version=2.0.${{ github.run_number }} -c Release ./AzureKeyVaultStudio.csproj
dotnet publish -f net10.0-desktop -p:UnoMacOSCustomInfoPlist=Info.plist -p:PackageFormat=app -p:PublishReadyToRun=true -r osx-arm64 -p:Version=${{ env.APP_VERSION_NUMBER }} -c Release ./AzureKeyVaultStudio.csproj
New-Item -ItemType Directory -Path "$env:GITHUB_WORKSPACE/osx-arm64" -Force
Move-Item -Path "./bin/Release/net10.0-desktop/osx-arm64/publish/*.app" -Destination "$env:GITHUB_WORKSPACE/osx-arm64/" -Force
- name: Create Package
Expand Down Expand Up @@ -164,8 +166,8 @@ jobs:
- name: Publish Linux x64
shell: pwsh
run: |
cd ./src/uno/AzureKeyVaultStudio/AzureKeyVaultStudio
dotnet publish -f net10.0-desktop -r linux-x64 -p:SelfContained=true -p:PublishReadyToRun=true -p:Version=2.0.${{ github.run_number }} -c Release ./AzureKeyVaultStudio.csproj
cd ./src/uno/AzureKeyVaultStudio
dotnet publish -f net10.0-desktop -r linux-x64 -p:SelfContained=true -p:PublishReadyToRun=true -p:Version=${{ env.APP_VERSION_NUMBER }} -c Release ./AzureKeyVaultStudio.csproj
New-Item -ItemType Directory -Path "$env:GITHUB_WORKSPACE/linux-x64" -Force
Move-Item -Path ".\bin\Release\net10.0-desktop\linux-x64\publish\*" -Destination "$env:GITHUB_WORKSPACE\linux-x64\" -Force
- name: Create Package
Expand Down Expand Up @@ -194,8 +196,8 @@ jobs:
run: Get-ChildItem -Recurse
- name: Create Release
run: |
gh release create v2.0.${{ github.run_number }} --draft --title "AzureKeyVaultStudio v2.0.${{ github.run_number }}" || true
gh release upload v2.0.${{ github.run_number }} "./azurekeyvaultstudio.win-x64.tar/azurekeyvaultstudio.win-x64.tar" "./azurekeyvaultstudio.win-arm64.tar/azurekeyvaultstudio.win-arm64.tar" "./azurekeyvaultstudio.macos-x64.tar/azurekeyvaultstudio.macos-x64.tar" "./azurekeyvaultstudio.macos-arm64.tar/azurekeyvaultstudio.macos-arm64.tar" "./azurekeyvaultstudio.linux-x64.tar/azurekeyvaultstudio.linux-x64.tar" --clobber || true
gh release create v${{ env.APP_VERSION_NUMBER }} --draft --title "Azure Key Vault v${{ env.APP_VERSION_NUMBER }}" || true
gh release upload v${{ env.APP_VERSION_NUMBER }} "./azurekeyvaultstudio.win-x64.tar/azurekeyvaultstudio.win-x64.tar" "./azurekeyvaultstudio.win-arm64.tar/azurekeyvaultstudio.win-arm64.tar" "./azurekeyvaultstudio.macos-x64.tar/azurekeyvaultstudio.macos-x64.tar" "./azurekeyvaultstudio.macos-arm64.tar/azurekeyvaultstudio.macos-arm64.tar" "./azurekeyvaultstudio.linux-x64.tar/azurekeyvaultstudio.linux-x64.tar" --clobber || true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
shell: bash
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

<p align="center">
<img width="280" align="center" src="src\uno\[email protected]">
<img width="280" align="center" src="src\uno\AzureKeyVaultStudio\[email protected]">
</p>
<h1 align="center">
Azure Key Vault Explorer
Expand All @@ -19,11 +19,12 @@
winget install "Key Vault Explorer" --source msstore
```

### macOS and Linux
### [macOS](#macos) and Linux
Download from the [releases page](https://github.com/cricketthomas/AzureKeyVaultExplorer/releases).


![Downloads](https://img.shields.io/github/downloads/cricketthomas/AzureKeyVaultExplorer/total)
![CodeQL](https://github.com/cricketthomas/azurekeyvaultexplorer/workflows/CodeQL/badge.svg)
<p style="display: block" align="center">
<sup>Named 'Key Vault Explorer' in the Microsoft Store.</sub>
</p>
Expand All @@ -32,7 +33,7 @@ Download from the [releases page](https://github.com/cricketthomas/AzureKeyVault
## Overview
Visit the releases section to download the application for mac and linux.

**Key Vault Explorer** is a lightweight tool with the idea to simplify finding and accessing secrets (and certificates and keys) stored in Azure Key Vault, providing a interface for aggregating, filtering, and quickly getting secret values. The app was inspired by the original [AzureKeyVaultExplorer](https://github.com/microsoft/AzureKeyVaultExplorer) with the goal to eventually bring some more feature parity but first brining the application to macOS.
**Key Vault Explorer** is a lightweight tool with the idea to simplify finding and accessing secrets (and certificates and keys) stored in Azure Key Vault, providing a interface for aggregating, filtering, and quickly getting secret values. The app was inspired by the original [AzureKeyVaultExplorer](https://github.com/microsoft/AzureKeyVaultExplorer) with the goal to eventually bring some more feature parity but first bringing the application to macOS.

### Key features

Expand Down Expand Up @@ -72,7 +73,7 @@ The SQLite database is encrypted using DPAPI on windows, and on macOS the passwo

### Get it from the [releases](https://github.com/cricketthomas/AzureKeyVaultExplorer/releases) page or the Microsoft Store.

#### macOS
### macOS
After downloading the `.app` bundle, macOS may block it because it's from an unidentified developer. To fix this, run:

```bash
Expand Down
2 changes: 1 addition & 1 deletion src/uno/AzureKeyVaultStudio.slnx
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
<File Path="Directory.Packages.props" />
<File Path="global.json" />
</Folder>
<Project Path="AzureKeyVaultStudio/AzureKeyVaultStudio/AzureKeyVaultStudio.csproj" />
<Project Path="AzureKeyVaultStudio/AzureKeyVaultStudio.csproj" />
</Solution>
167 changes: 0 additions & 167 deletions src/uno/AzureKeyVaultStudio/.editorconfig

This file was deleted.

63 changes: 0 additions & 63 deletions src/uno/AzureKeyVaultStudio/.gitattributes

This file was deleted.

Loading
Loading