Skip to content

Code cleanup

Code cleanup #145

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: windows-2022
env:
Configuration: Debug
Solution_Name: Source\EpubReader.sln
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.1.3
- name: Restore dependencies
run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration /p:RestorePackagesConfig=true
- name: Build solution
run: msbuild $env:Solution_Name /p:Configuration=$env:Configuration