Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
msbuild $env:Wap_Project_Path/$env:Wap_Project_Path.wapproj `
/t:Restore ` /p:Configuration=${{ matrix.configuration }} ` /p:TargetFramework=net8.0-windows ` /p:RuntimeIdentifiers="win-x86;win-x64" if ($LASTEXITCODE -ne 0) { Write-Error "MSBuild Restore failed with exit code $LASTEXITCODE" exit $LASTEXITCODE } echo "MSBuild Restore succeeded" msbuild $env:Wap_Project_Path/$env:Wap_Project_Path.wapproj ` /t:Build ` /p:AppxBundlePlatforms="$env:Appx_Bundle_Platforms" ` /p:Configuration=${{ matrix.configuration }} ` /p:UapAppxPackageBuildMode=$env:BuildMode ` /p:AppxBundle=$env:AppxBundle ` /p:PackageCertificateKeyFile=$env:CERT_FILE_PATH ` /p:AppxPackageDir="$env:AppxPackageDir" ` /p:GenerateAppxPackageOnBuild=true ` /p:TargetFramework=net8.0-windows ` /p:RuntimeIdentifiers="win-x86;win-x64"
- Loading branch information