From b40a6f41c269ffef5944adaa66c9e1305c4929f0 Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Wed, 4 Sep 2019 22:12:03 -0700 Subject: [PATCH] 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. --- .github/msbuild-test.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/msbuild-test.yml diff --git a/.github/msbuild-test.yml b/.github/msbuild-test.yml new file mode 100644 index 00000000..3ed2d884 --- /dev/null +++ b/.github/msbuild-test.yml @@ -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