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