Skip to content
Merged
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 AdbExtension/AdbExtension.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>

<WindowsPackageType>None</WindowsPackageType>
<AppxPackageVersion>1.0.0.0</AppxPackageVersion>
<AppxPackageVersion>1.0.0.1</AppxPackageVersion>
<EnableMsixTooling>true</EnableMsixTooling>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion AdbExtension/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<Identity
Name="AdbExtension"
Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"
Version="1.0.0.0" />
Version="1.0.0.1" />
<!-- When you're ready to publish your extension, you'll need to change the
Publisher= to match your own identity -->

Expand Down
2 changes: 1 addition & 1 deletion AdbExtension/app.manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="1.0.0.0" name="AdbExtension.app"/>
<assemblyIdentity version="1.0.0.1" name="AdbExtension.app"/>

<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
Expand Down
2 changes: 1 addition & 1 deletion AdbExtension/build-exe.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
param(
[string]$ExtensionName = "AdbExtension",
[string]$Configuration = "Release",
[string]$Version = "1.0.0.0",
[string]$Version = "1.0.0.1",
[string[]]$Platforms = @("x64", "arm64")
)

Expand Down
2 changes: 1 addition & 1 deletion AdbExtension/setup-template.iss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
; Inno Setup Script for ADB Extension for Command Palette

#define AppVersion "1.0.0.0"
#define AppVersion "1.0.0.1"

[Setup]
AppId={{d857a76b-60ad-4db5-a14c-22f1d4f7bfaa}}
Expand Down
6 changes: 3 additions & 3 deletions publishing_checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The extension was scaffolded from Microsoft's template, which leaves several pla
### ~~Step 1 — Fixes you can do RIGHT NOW~~ ✅ DONE

**`AdbExtension/Package.appxmanifest`** — all updated:
- Version: `1.0.0.0`
- Version: `1.0.0.1`
- All display names: `ADB Extension for Command Palette`
- All descriptions: `Run ADB commands for connected Android devices directly from Command Palette.`

Expand Down Expand Up @@ -42,7 +42,7 @@ The extension was scaffolded from Microsoft's template, which leaves several pla
<Identity
Name="<from Partner Center>"
Publisher="<from Partner Center>"
Version="1.0.0.0" />
Version="1.0.0.1" />
<Properties>
<PublisherDisplayName><from Partner Center></PublisherDisplayName>
...
Expand All @@ -65,7 +65,7 @@ The extension was scaffolded from Microsoft's template, which leaves several pla
cd AdbExtension\AdbExtension
dotnet build --configuration Release -p:GenerateAppxPackageOnBuild=true -p:Platform=x64 -p:AppxPackageDir="AppPackages\x64\"
dotnet build --configuration Release -p:GenerateAppxPackageOnBuild=true -p:Platform=ARM64 -p:AppxPackageDir="AppPackages\ARM64\"
makeappx bundle /v /d bin\Release\ /p AdbExtensionForCommandPalette_1.0.0.0_Bundle.msixbundle
makeappx bundle /v /d bin\Release\ /p AdbExtensionForCommandPalette_1.0.0.1_Bundle.msixbundle
```

Upload `.msixbundle` to Partner Center. In the Store description, note that reviewer needs PowerToys + Command Palette installed.
Expand Down
Loading