chore(deps): bump ExMod.Exiled from 9.0.0-alpha.2 to 9.0.0-alpha.4 #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Build project" | |
description: "Test if the project builds, if not then fail the build" | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: windows-2019 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup NuGet | |
uses: NuGet/setup-nuget@v1.0.5 | |
- name: setup-msbuild | |
uses: microsoft/setup-msbuild@v1.1 | |
- name: Restore Packages | |
run: nuget restore SillySCP.sln | |
- name: Build solution | |
run: msbuild SillySCP.sln -t:rebuild -property:Configuration=Debug |