Skip to content

Update README with detailed information about the toolkit #24

Update README with detailed information about the toolkit

Update README with detailed information about the toolkit #24

Workflow file for this run

name: .NET Core Desktop
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
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: Nano11Toolkit.sln # Replace with your solution name, i.e. MyWpfApp.sln
Project_Name: Nano11Toolkit/Nano11Toolkit.csproj
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/[email protected]
# 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 }}
- name: Build
run: msbuild $env:Project_Name /p:Configuration=$env:Configuration
env:
Configuration: ${{matrix.configuration}}
- name: List
run: tree .
# Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: Build (${{matrix.configuration}})
path: "Nano11Toolkit/bin/${{matrix.configuration}}/net8.0-windows/*"