Skip to content

删除 VC++ 依赖

删除 VC++ 依赖 #4

name: build and package
on:
push:
branches: [main]
pull_request:
branches: [main]
paths:
- '.github/workflows/build-and-package.yml'
- 'CoreAppUAP**'
workflow_dispatch:
env:
DOTNET_VERSION: '9.0.x' # The .NET SDK version to use
jobs:
build-and-package:
name: build-and-package
runs-on: windows-latest
env:
Solution_Name: CoreAppUAP.sln
Project_Directory: CoreAppUAP
Signing_Certificate: CoreAppUAP_TemporaryKey.pfx
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# Decode the base 64 encoded pfx and save the Signing_Certificate
- name: Decode the pfx
run: |
$pfx_cert_byte = [System.Convert]::FromBase64String("$env:Certificate")
$certificatePath = Join-Path -Path $env:Project_Directory -ChildPath $env:Signing_Certificate
[IO.File]::WriteAllBytes("$certificatePath", $pfx_cert_byte)
env:
Certificate: ${{ secrets.Base64_Encoded_Pfx }}
# Install the .NET Core App workload
- name: Install .NET Core App
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2
with:
msbuild-architecture: x64
# 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 `
/p:Platform=$env:Platform
env:
Configuration: Release
Platform: 'x64'
- name: Nuget restore
run: nuget restore $env:Solution_Name
# Create the app package by building and packaging the Windows Application Packaging project
- name: Create the app package (x64)
run: msbuild $env:Solution_Name `
/p:AppxBundlePlatforms="$env:Appx_Bundle_Platforms" `
/p:Configuration=$env:Configuration `
/p:Platform=$env:Platform `
/p:UapAppxPackageBuildMode=$env:Appx_Package_Build_Mode `
/p:AppxBundle=$env:Appx_Bundle `
/p:AppxPackageDir="$env:Appx_Package_Dir" `
/p:GenerateAppxPackageOnBuild=true `
/p:AppxPackageSigningEnabled=true `
/p:PackageCertificateThumbprint="$env:Thumbprint" `
/p:PackageCertificateKeyFile=$env:Signing_Certificate `
/p:PackageCertificatePassword="$env:Password"
env:
Appx_Bundle: Never
Appx_Bundle_Platforms: x64
Appx_Package_Build_Mode: SideloadOnly
Appx_Package_Dir: AppxPackages\
Configuration: Release
Platform: 'x64'
Thumbprint: 0CDF4A03E9BE9DD789894BB3C7AD3DEDECD9AB25
Password: ${{ secrets.Password }}
- name: Create the app package (ARM64)
run: msbuild $env:Solution_Name `
/p:AppxBundlePlatforms="$env:Appx_Bundle_Platforms" `
/p:Configuration=$env:Configuration `
/p:Platform=$env:Platform `
/p:UapAppxPackageBuildMode=$env:Appx_Package_Build_Mode `
/p:AppxBundle=$env:Appx_Bundle `
/p:AppxPackageDir="$env:Appx_Package_Dir" `
/p:GenerateAppxPackageOnBuild=true `
/p:AppxPackageSigningEnabled=true `
/p:PackageCertificateThumbprint="$env:Thumbprint" `
/p:PackageCertificateKeyFile=$env:Signing_Certificate `
/p:PackageCertificatePassword="$env:Password"
env:
Appx_Bundle: Never
Appx_Bundle_Platforms: ARM64
Appx_Package_Build_Mode: SideloadOnly
Appx_Package_Dir: AppxPackages\
Configuration: Release
Platform: 'ARM64'
Thumbprint: 0CDF4A03E9BE9DD789894BB3C7AD3DEDECD9AB25
Password: ${{ secrets.Password }}
# Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: MSIX Package
path: CoreAppUAP/AppxPackages/**