Browse Source

Attempt to workaround SDK changes

pull/2362/head
James Jackson-South 3 years ago
parent
commit
7047cb775a
  1. 2
      .github/workflows/build-and-test.yml
  2. 2
      ci-pack.ps1

2
.github/workflows/build-and-test.yml

@ -114,7 +114,6 @@ jobs:
if: ${{ matrix.options.sdk-preview != true }}
uses: actions/setup-dotnet@v3
with:
include-prerelease: true
dotnet-version: |
6.0.x
@ -122,7 +121,6 @@ jobs:
if: ${{ matrix.options.sdk-preview == true }}
uses: actions/setup-dotnet@v3
with:
include-prerelease: true
dotnet-version: |
7.0.x

2
ci-pack.ps1

@ -3,4 +3,4 @@ dotnet clean -c Release
$repositoryUrl = "https://github.com/$env:GITHUB_REPOSITORY"
# Building for packing and publishing.
dotnet pack -c Release --output "$PSScriptRoot/artifacts" /p:RepositoryUrl=$repositoryUrl
dotnet pack -c Release -p:PackageOutputPath="$PSScriptRoot/artifacts" -p:RepositoryUrl=$repositoryUrl

Loading…
Cancel
Save