Skip to content

Commit

Permalink
Bump dotnet sdk from 6 to 8 LTS (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanb authored Dec 3, 2023
1 parent 2ea462c commit c5880fb
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers/features/dotnet:1": {"version": "6.0"},
"ghcr.io/devcontainers/features/dotnet:1": {"version": "8.0"},
"ghcr.io/devcontainers/features/node:1": {}
},

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Install dotnet
uses: actions/setup-dotnet@v3
with:
dotnet-version: '6.0.x'
dotnet-version: '8.0.x'

- name: Checkout repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Depending on whether you want to author data, text or visualizations, you will n
To start developing you need to have the following requirements on:

- `node` https://nodejs.org/en/
- `.NET 6.0` https://dotnet.microsoft.com/en-us/download
- `.NET 8.0` https://dotnet.microsoft.com/en-us/download
- `python 3.11` https://www.python.org/
- `pipenv` https://pipenv.pypa.io/

Expand Down
2 changes: 1 addition & 1 deletion code/Components.fsproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion deployment/Dockerfile.dev.base
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bitnami/dotnet-sdk:6-debian-11 as builder
FROM bitnami/dotnet-sdk:8-debian-11 as builder
ARG NODE_MAJOR=20

WORKDIR /build
Expand Down
2 changes: 1 addition & 1 deletion deployment/Dockerfile.website
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM bitnami/dotnet-sdk:6-debian-11 as builder
FROM bitnami/dotnet-sdk:8-debian-11 as builder
ARG NODE_MAJOR=20

WORKDIR /build
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "6.0.100",
"version": "8.0.100",
"rollForward": "latestMinor"
}
}

0 comments on commit c5880fb

Please sign in to comment.