Skip to content

Bump System.Text.Json from 6.0.2 to 8.0.4 in /Moto.Net #27

Bump System.Text.Json from 6.0.2 to 8.0.4 in /Moto.Net

Bump System.Text.Json from 6.0.2 to 8.0.4 in /Moto.Net #27

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]
runs-on: windows-latest
env:
Solution_Name: Moto.Net.sln
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/[email protected]
- name: Setup NuGet
uses: NuGet/[email protected]
- name: Restore Packages
run: nuget restore $env:Solution_Name
- name: Use NoXNL app.config with default settings
run: copy .\MotoMond\App.config.noxnl .\MotoMond\App.config
- name: Build
run: msbuild $env:Solution_Name /p:platform="Any CPU" /p:configuration="${{ matrix.configuration }}"