Skip to content

Commit

Permalink
Install .NET 8 in appveyor job
Browse files Browse the repository at this point in the history
  • Loading branch information
z4kn4fein committed Nov 21, 2023
1 parent 7e2d37a commit 0eb0bef
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,14 @@ dotnet_csproj:
file_version: $(build_version)
informational_version: $(build_version)
install:
- cmd: dotnet tool install -g InheritDocTool
build_script:
- ps: |
dotnet tool install -g InheritDocTool
Invoke-WebRequest 'https://dot.net/v1/dotnet-install.ps1' -OutFile dotnet-install.ps1
./dotnet-install.ps1 -Channel 8.0
build_script:
- cmd: echo __BUILD__
- dotnet restore src/ConfigCatClient.sln
- dotnet build -c %configuration% /p:ContinuousIntegrationBuild=true src/ConfigCatClient.sln
- dotnet build -c %configuration% /p:ContinuousIntegrationBuild=true src/ConfigCatClient.sln
after_build:
- cmd: echo __PACK__
- inheritdoc -o
Expand All @@ -33,7 +36,7 @@ test_script:
- dotnet test src\ConfigCat.Client.Tests\ConfigCat.Client.Tests.csproj -f net6.0 -c %configuration% --no-build
artifacts:
- path: artifacts\ConfigCat.Client.*.*nupkg
name: NuGet
name: NuGet
notifications:
- provider: Email
to:
Expand Down

0 comments on commit 0eb0bef

Please sign in to comment.