Skip to content

Commit a4277ba

Browse files
authored
fix: adding dotnet 8 fixture (#4963)
1 parent 5a170a7 commit a4277ba

File tree

8 files changed

+3373
-26
lines changed

8 files changed

+3373
-26
lines changed

.circleci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ RUN scripts/jvm-install.sh
6868
ENV PATH=/home/circleci/.sdkman/candidates/scala/current/bin:/home/circleci/.sdkman/candidates/sbt/current/bin:/home/circleci/.sdkman/candidates/java/current/bin:$PATH
6969

7070
# install dotnet
71-
RUN curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --channel 7.0
71+
RUN curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --channel 8.0
7272
ENV PATH=/home/circleci/.dotnet:$PATH
7373
ENV TEMP=/tmp
7474
ENV TMP=$TEMP

.circleci/chocolatey.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@
44
<package id="make" version="4.4.1" />
55
<package id="gradle" version="8.1.1" />
66
<package id="python3" version="3.11.4" />
7+
<package id="dotnet-sdk" version="8.0.100" />
78
</packages>

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ executors:
3838
- image: alpine:3.17
3939
docker-amd64:
4040
docker:
41-
- image: bastiandoetsch209/cli-build:20231012-101806
41+
- image: bastiandoetsch209/cli-build:20231210-192113
4242
working_directory: /mnt/ramdisk/snyk
4343
resource_class: large
4444
docker-arm64:
4545
docker:
46-
- image: bastiandoetsch209/cli-build-arm64:20231012-101806
46+
- image: bastiandoetsch209/cli-build-arm64:20231210-192113
4747
working_directory: /mnt/ramdisk/snyk
4848
resource_class: arm.large
4949
linux-ubuntu-mantic-amd64:

test/acceptance/workspaces/nuget-app-6-7/dotnet_6_7.csproj renamed to test/acceptance/workspaces/nuget-app-6-7-8/dotnet_6_7_8.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
4+
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
55
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
66
</PropertyGroup>
77
<ItemGroup>

0 commit comments

Comments
 (0)