Created
November 14, 2019 19:08
-
-
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
This file contains hidden or 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: 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