Skip to content

Added crash error dialog. #27

Added crash error dialog.

Added crash error dialog. #27

Workflow file for this run

name: .NET Core Desktop
on:
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
configuration: [Release]
platform: [x64]
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: Cpu_affinity.sln
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Set up a Rust toolchain
uses: hecrj/[email protected]
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2
# Build
- name: Build the application
run: dotnet build src\PPM.InstallerBundle\PPM.InstallerBundle.wixproj -c ${{ matrix.configuration}} -p:Platform=${{ matrix.platform }}
# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test src -c ${{ matrix.configuration}} -p:Platform=${{ matrix.platform }}