Create msbuild-test.yml github action
This tests out the github actions system, which is quite weird and undocumented. It says this only works with .NET core by default but also supports "4.5.1" as a version. It also says we aren't in the right github actions beta, so this shouldn't work at all.
This commit is contained in:
parent
e3bac1871a
commit
b40a6f41c2
1 changed files with 13 additions and 0 deletions
13
.github/msbuild-test.yml
vendored
Normal file
13
.github/msbuild-test.yml
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
name: MSBuild Test
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- uses: actions/setup-dotnet@v1
|
||||
with:
|
||||
dotnet-version: '4.5.1'
|
||||
- run: dotnet build --configuration Release ./TShockAPI/TShockAPI.csproj
|
||||
Loading…
Add table
Add a link
Reference in a new issue