diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 5faf588..84a2f9a 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -18,7 +18,7 @@ jobs:
- name: Enable Developer Command Prompt
uses: ilammy/msvc-dev-cmd@v1
- name: Build
- run: msbuild LaunchTree.sln /p:ProjectName="LaunchTree" /p:Configuration="Release" /p:Platform="x64" /p:AppxBundle="Always" /p:UapAppxPackageBuildMode="Sideload" /p:AppxBundlePlatforms="x64|ARM64" /p:AppxPackageDir="AppPackages"
+ run: msbuild LaunchTree.sln /p:ProjectName="LaunchTree" /p:Configuration="Release" /p:Platform="x64" /p:AppxBundle="Always" /p:AppxPackageSigningEnabled=true /p:PackageCertificateThumbprint="6de63fea060da67479e25dfaa28619111060bac3" /p:PackageCertificateKeyFile="Packaging_TemporaryKey.pfx" /p:UapAppxPackageBuildMode="Sideload" /p:AppxBundlePlatforms="x64|ARM64" /p:AppxPackageDir="AppPackages"
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
diff --git a/.gitignore b/.gitignore
index a288ec3..cbf1c99 100644
--- a/.gitignore
+++ b/.gitignore
@@ -239,6 +239,7 @@ ClientBin/
*.dbproj.schemaview
*.jfm
*.pfx
+!Packaging_TemporaryKey.pfx
*.publishsettings
orleans.codegen.cs
diff --git a/src/Packaging/Package.appxmanifest b/src/Packaging/Package.appxmanifest
index 854b893..e667562 100644
--- a/src/Packaging/Package.appxmanifest
+++ b/src/Packaging/Package.appxmanifest
@@ -8,8 +8,8 @@
+ Publisher="CN=LaunchTree Test"
+ Version="0.0.0.1" />
LaunchTree
diff --git a/src/Packaging/Packaging.wapproj b/src/Packaging/Packaging.wapproj
index 75b3430..6aa97a4 100644
--- a/src/Packaging/Packaging.wapproj
+++ b/src/Packaging/Packaging.wapproj
@@ -36,14 +36,6 @@
Release
ARM64
-
- Debug
- AnyCPU
-
-
- Release
- AnyCPU
-
$(MSBuildExtensionsPath)\Microsoft\DesktopBridge\
@@ -77,11 +69,6 @@
-
-
- True
- fmtd.dll
- fmtd.dll
-
+
\ No newline at end of file
diff --git a/src/Packaging/Packaging_TemporaryKey.pfx b/src/Packaging/Packaging_TemporaryKey.pfx
new file mode 100644
index 0000000..af9eb9f
Binary files /dev/null and b/src/Packaging/Packaging_TemporaryKey.pfx differ