Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@OsirisTerje
Created November 14, 2019 19:08
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save OsirisTerje/f8b5d2252dda2ceaed21787a078ae438 to your computer and use it in GitHub Desktop.
Save OsirisTerje/f8b5d2252dda2ceaed21787a078ae438 to your computer and use it in GitHub Desktop.
Actions yml starter workflow for a .NetFramework build using the legacy project format
name: NetFrameWork.Legacy.CI
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Setup Nuget.exe
uses: warrenbuckley/Setup-Nuget@v1
- name: Restore packages
run: nuget restore YOUR_SOLUTION_NAME
- name: Setup MSBuild.exe
uses: warrenbuckley/Setup-MSBuild@v1
- name: Build with MSBuild
run: msbuild YOUR_SOLUTION_NAME -p:Configuration=Release
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment