Skip to content

Commit 2eeadac

Browse files
committed
more info
1 parent 1d15114 commit 2eeadac

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/buildDev.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ jobs:
2424
run: dotnet restore ${{ env.PROJECT_PATH }}
2525
- name: Build
2626
run: dotnet build ${{ env.PROJECT_PATH }} -p:EnableMsixTooling=true
27+
- name: package
28+
shell: pwsh
29+
run: |
30+
Write-Host "Listing installed AppX packages..."
31+
Get-AppxPackage | Select-Object Name, PackageFullName, Version, Dependencies| Sort-Object Name | Format-Table -AutoSize
2732
- name: Test (auto-dump on hang)
2833
run: |
2934
mkdir TestResults

Tests/Tests.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<Nullable>enable</Nullable>
99
<WindowsSdkPackageVersion>10.0.22621.48</WindowsSdkPackageVersion>
1010
<IsPackable>false</IsPackable>
11+
<EnableMsixTooling>true</EnableMsixTooling>
1112
</PropertyGroup>
1213

1314
<ItemGroup>

Text-Grab/Text-Grab.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
2323
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2424
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
25-
<EnableMsixTooling>false</EnableMsixTooling>
25+
<EnableMsixTooling>true</EnableMsixTooling>
2626
<Version>4.10.0</Version>
2727
<WindowsAppSDKBootstrapAutoInitializeOptions_OnNoMatch_ShowUI>true</WindowsAppSDKBootstrapAutoInitializeOptions_OnNoMatch_ShowUI>
2828
</PropertyGroup>

0 commit comments

Comments
 (0)