From 318eaa950efc31d46844c8fc7e05d304c91e7a9e Mon Sep 17 00:00:00 2001 From: Leapward-Koex <30615050+Leapward-Koex@users.noreply.github.com> Date: Fri, 9 Feb 2024 21:47:15 +1300 Subject: [PATCH 1/7] Create dotnet-desktop.yml --- .github/workflows/dotnet-desktop.yml | 109 +++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 .github/workflows/dotnet-desktop.yml diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml new file mode 100644 index 0000000..86fa693 --- /dev/null +++ b/.github/workflows/dotnet-desktop.yml @@ -0,0 +1,109 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +# This workflow will build, test, sign and package a WPF or Windows Forms desktop application +# built on .NET Core. +# To learn how to migrate your existing application to .NET Core, +# refer to https://docs.microsoft.com/en-us/dotnet/desktop-wpf/migration/convert-project-from-net-framework +# +# To configure this workflow: +# +# 1. Configure environment variables +# GitHub sets default environment variables for every workflow run. +# Replace the variables relative to your project in the "env" section below. +# +# 2. Signing +# Generate a signing certificate in the Windows Application +# Packaging Project or add an existing signing certificate to the project. +# Next, use PowerShell to encode the .pfx file using Base64 encoding +# by running the following Powershell script to generate the output string: +# +# $pfx_cert = Get-Content '.\SigningCertificate.pfx' -Encoding Byte +# [System.Convert]::ToBase64String($pfx_cert) | Out-File 'SigningCertificate_Encoded.txt' +# +# Open the output file, SigningCertificate_Encoded.txt, and copy the +# string inside. Then, add the string to the repo as a GitHub secret +# and name it "Base64_Encoded_Pfx." +# For more information on how to configure your signing certificate for +# this workflow, refer to https://github.com/microsoft/github-actions-for-desktop-apps#signing +# +# Finally, add the signing certificate password to the repo as a secret and name it "Pfx_Key". +# See "Build the Windows Application Packaging project" below to see how the secret is used. +# +# For more information on GitHub Actions, refer to https://github.com/features/actions +# For a complete CI/CD sample to get started with GitHub Action workflows for Desktop Applications, +# refer to https://github.com/microsoft/github-actions-for-desktop-apps + +name: .NET Core Desktop + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + workflow_dispatch: + +jobs: + + build: + + strategy: + matrix: + configuration: [Debug, Release] + + runs-on: windows-latest # For a list of available runner types, refer to + # https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on + + env: + Solution_Name: WpfMaiTouchEmulator.sln # Replace with your solution name, i.e. MyWpfApp.sln. + + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + # Install the .NET Core workload + - name: Install .NET Core + uses: actions/setup-dotnet@v3 + with: + dotnet-version: 6.0.x + + # Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild + - name: Setup MSBuild.exe + uses: microsoft/setup-msbuild@v1.0.2 + + # Restore the application to populate the obj folder with RuntimeIdentifiers + - name: Restore the application + run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration + env: + Configuration: ${{ matrix.configuration }} + + # Decode the base 64 encoded pfx and save the Signing_Certificate + - name: Decode the pfx + run: | + $pfx_cert_byte = [System.Convert]::FromBase64String("${{ secrets.Base64_Encoded_Pfx }}") + $certificatePath = Join-Path -Path $env:Wap_Project_Directory -ChildPath GitHubActionsWorkflow.pfx + [IO.File]::WriteAllBytes("$certificatePath", $pfx_cert_byte) + + # Create the app package by building and packaging the Windows Application Packaging project + - name: Create the app package + run: msbuild $env:Wap_Project_Path /p:Configuration=$env:Configuration /p:UapAppxPackageBuildMode=$env:Appx_Package_Build_Mode /p:AppxBundle=$env:Appx_Bundle /p:PackageCertificateKeyFile=GitHubActionsWorkflow.pfx /p:PackageCertificatePassword=${{ secrets.Pfx_Key }} + env: + Appx_Bundle: Always + Appx_Bundle_Platforms: x86|x64 + Appx_Package_Build_Mode: StoreUpload + Configuration: ${{ matrix.configuration }} + + # Remove the pfx + - name: Remove the pfx + run: Remove-Item -path $env:Wap_Project_Directory\GitHubActionsWorkflow.pfx + + # Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact + - name: Upload build artifacts + uses: actions/upload-artifact@v3 + with: + name: MSIX Package + path: ${{ env.Wap_Project_Directory }}\AppPackages From ee9d300f788724fbba7d42a93178e0a47fa98ae1 Mon Sep 17 00:00:00 2001 From: Leapward-Koex <30615050+Leapward-Koex@users.noreply.github.com> Date: Fri, 9 Feb 2024 21:53:33 +1300 Subject: [PATCH 2/7] Update dotnet-desktop.yml --- .github/workflows/dotnet-desktop.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index 86fa693..f1f1f43 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -58,6 +58,8 @@ jobs: env: Solution_Name: WpfMaiTouchEmulator.sln # Replace with your solution name, i.e. MyWpfApp.sln. + Wap_Project_Directory: . # Replace with the Wap project directory relative to the solution, i.e. MyWpfApp.Package. + Wap_Project_Path: WpfMaiTouchEmulator.csproj # Replace with the path to your Wap project, i.e. MyWpf.App.Package\MyWpfApp.Package.wapproj. steps: - name: Checkout From 6a2a2818cc980513f973a8ec5e9fafc404d4b79c Mon Sep 17 00:00:00 2001 From: Leapward-Koex <30615050+Leapward-Koex@users.noreply.github.com> Date: Fri, 9 Feb 2024 21:55:59 +1300 Subject: [PATCH 3/7] Update dotnet-desktop.yml --- .github/workflows/dotnet-desktop.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index f1f1f43..f2da546 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -51,7 +51,7 @@ jobs: strategy: matrix: - configuration: [Debug, Release] + configuration: [Release] runs-on: windows-latest # For a list of available runner types, refer to # https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on @@ -71,7 +71,7 @@ jobs: - name: Install .NET Core uses: actions/setup-dotnet@v3 with: - dotnet-version: 6.0.x + dotnet-version: 8.0.x # Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild - name: Setup MSBuild.exe From f86c36835bae0d30c1f5ed9c691570d112f16418 Mon Sep 17 00:00:00 2001 From: Leapward-Koex <30615050+Leapward-Koex@users.noreply.github.com> Date: Fri, 9 Feb 2024 22:00:38 +1300 Subject: [PATCH 4/7] Update dotnet-desktop.yml --- .github/workflows/dotnet-desktop.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index f2da546..5c94454 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -103,6 +103,9 @@ jobs: - name: Remove the pfx run: Remove-Item -path $env:Wap_Project_Directory\GitHubActionsWorkflow.pfx + - name: List + run: Get-ChildItem -Path . -Recurse + # Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact - name: Upload build artifacts uses: actions/upload-artifact@v3 From b69e3e011b00039a26ec47dc95a794719cfbf8c6 Mon Sep 17 00:00:00 2001 From: Leapward-Koex <30615050+Leapward-Koex@users.noreply.github.com> Date: Fri, 9 Feb 2024 22:10:10 +1300 Subject: [PATCH 5/7] Update dotnet-desktop.yml --- .github/workflows/dotnet-desktop.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index 5c94454..7dfef89 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -102,13 +102,13 @@ jobs: # Remove the pfx - name: Remove the pfx run: Remove-Item -path $env:Wap_Project_Directory\GitHubActionsWorkflow.pfx - - - name: List - run: Get-ChildItem -Path . -Recurse + + - name: Zip package + run: Compress-Archive -Path bin/Debug/net8.0-windows/ -DestinationPath ./MaiTouchSensorEmulator.zip # Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact - name: Upload build artifacts uses: actions/upload-artifact@v3 with: - name: MSIX Package - path: ${{ env.Wap_Project_Directory }}\AppPackages + name: Emulator package + path: ./MaiTouchSensorEmulator.zip From 5dada6f5fa2087a20e8455099eb2fb88ffb43f78 Mon Sep 17 00:00:00 2001 From: Leapward-Koex <30615050+Leapward-Koex@users.noreply.github.com> Date: Sat, 10 Feb 2024 10:36:41 +1300 Subject: [PATCH 6/7] Update dotnet-desktop.yml --- .github/workflows/dotnet-desktop.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index 7dfef89..ae68180 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -104,7 +104,7 @@ jobs: run: Remove-Item -path $env:Wap_Project_Directory\GitHubActionsWorkflow.pfx - name: Zip package - run: Compress-Archive -Path bin/Debug/net8.0-windows/ -DestinationPath ./MaiTouchSensorEmulator.zip + run: Compress-Archive -Path ./bin/Release/net8.0-windows/ -DestinationPath ./MaiTouchSensorEmulator.zip # Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact - name: Upload build artifacts From fe0fa4b02cebc3ca24deacadc122bd80e71f915e Mon Sep 17 00:00:00 2001 From: Leapward-Koex <30615050+Leapward-Koex@users.noreply.github.com> Date: Sat, 10 Feb 2024 11:09:43 +1300 Subject: [PATCH 7/7] Update dotnet-desktop.yml --- .github/workflows/dotnet-desktop.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index ae68180..bbdc3b3 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -102,13 +102,10 @@ jobs: # Remove the pfx - name: Remove the pfx run: Remove-Item -path $env:Wap_Project_Directory\GitHubActionsWorkflow.pfx - - - name: Zip package - run: Compress-Archive -Path ./bin/Release/net8.0-windows/ -DestinationPath ./MaiTouchSensorEmulator.zip # Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact - name: Upload build artifacts uses: actions/upload-artifact@v3 with: name: Emulator package - path: ./MaiTouchSensorEmulator.zip + path: ./bin/Release/net8.0-windows/