Skip to content

Commit

Permalink
Add temporary signing key (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenmc authored Jul 19, 2024
1 parent cca36bb commit 2117183
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,7 @@ ClientBin/
*.dbproj.schemaview
*.jfm
*.pfx
!Packaging_TemporaryKey.pfx
*.publishsettings
orleans.codegen.cs

Expand Down
4 changes: 2 additions & 2 deletions src/Packaging/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<Identity
Name="44137a23-3609-4369-98f6-5c724595e008"
Publisher="CN=Hayden"
Version="1.0.0.0" />
Publisher="CN=LaunchTree Test"
Version="0.0.0.1" />

<Properties>
<DisplayName>LaunchTree</DisplayName>
Expand Down
15 changes: 1 addition & 14 deletions src/Packaging/Packaging.wapproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,6 @@
<Configuration>Release</Configuration>
<Platform>ARM64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Debug|AnyCPU">
<Configuration>Debug</Configuration>
<Platform>AnyCPU</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|AnyCPU">
<Configuration>Release</Configuration>
<Platform>AnyCPU</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup>
<WapProjPath Condition="'$(WapProjPath)'==''">$(MSBuildExtensionsPath)\Microsoft\DesktopBridge\</WapProjPath>
Expand Down Expand Up @@ -77,11 +69,6 @@
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22000.194" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\LaunchTree\LaunchTree.vcxproj">
<!--<Private>True</Private>-->
<CopyLocalSatelliteAssemblies>True</CopyLocalSatelliteAssemblies>
<IncludeAssets>fmtd.dll</IncludeAssets>
<PrivateAssets>fmtd.dll</PrivateAssets>
</ProjectReference>
<ProjectReference Include="..\LaunchTree\LaunchTree.vcxproj" />
</ItemGroup>
</Project>
Binary file added src/Packaging/Packaging_TemporaryKey.pfx
Binary file not shown.

0 comments on commit 2117183

Please sign in to comment.