|
|
|
@ -90,13 +90,21 @@ jobs: |
|
|
|
restore-keys: ${{ runner.os }}-nuget- |
|
|
|
|
|
|
|
- name: DotNet Setup |
|
|
|
if: ${{ matrix.options.sdk-preview != true }} |
|
|
|
uses: actions/setup-dotnet@v2 |
|
|
|
with: |
|
|
|
include-prerelease: true |
|
|
|
dotnet-version: | |
|
|
|
7.0.x |
|
|
|
6.0.x |
|
|
|
|
|
|
|
- name: DotNet Setup Preview |
|
|
|
if: ${{ matrix.options.sdk-preview == true }} |
|
|
|
uses: actions/setup-dotnet@v2 |
|
|
|
with: |
|
|
|
include-prerelease: true |
|
|
|
dotnet-version: | |
|
|
|
7.0.x |
|
|
|
|
|
|
|
- name: DotNet Build |
|
|
|
if: ${{ matrix.options.sdk-preview != true }} |
|
|
|
shell: pwsh |
|
|
|
|