Skip to content

Commit

Permalink
Add GitHub actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
riskydissonance committed Jun 25, 2021
1 parent 387ec70 commit 2330e16
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: .NET Core Desktop

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
strategy:
matrix:
configuration: [Debug, Release]

runs-on: windows-latest

env:
Solution_Name: RunPE

steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Setup MSBuild.exe
uses: microsoft/[email protected]

- name: Build the application
run: msbuild $env:Solution_Name /p:Configuration=$env:Configuration /p:TargetFramework=v4.0
env:
Configuration: ${{ matrix.configuration }}

0 comments on commit 2330e16

Please sign in to comment.