Skip to content

Update README.md

Update README.md #3

Workflow file for this run

name: Build
on:
push
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
architecture: [ x86, x64, ARM64 ]
configuration: [ Debug, Release ]
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
- name: Build
run: msbuild -restore -p:RestorePackagesConfig=true -p:Configuration=${{ matrix.configuration }} -p:Platform=${{ matrix.architecture }} -clp:ForceConsoleColor -warnaserror ${{ github.workspace }}\IExplorerCommand_Examples.sln