Skip to content

Commit

Permalink
Update csharp-dotnet8 sandbox to dotnet8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
HeikkiHei committed May 20, 2024
1 parent 39e4c85 commit 9a29106
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions csharp-dotnet8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN useradd --create-home user && \
wget https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \
dpkg -i packages-microsoft-prod.deb && \
apt-get update && \
apt-get install -y dotnet-sdk-6.0 && \
apt-get install -y dotnet-sdk-8.0 && \
rm -rf /var/lib/apt/lists/*

# Make sure to install packages locales and locales-all in addition to these
Expand All @@ -36,7 +36,7 @@ RUN useradd --create-home user && \
wget https://packages.microsoft.com/config/debian/11/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \
dpkg -i packages-microsoft-prod.deb && \
apt-get update && \
apt-get install -y dotnet-sdk-6.0 && \
apt-get install -y dotnet-sdk-8.0 && \
rm -rf /var/lib/apt/lists/*

# Make sure to install packages locales and locales-all in addition to these
Expand Down
2 changes: 1 addition & 1 deletion csharp-dotnet8/NuGetDownloader/NuGetDownloader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RollForward>LatestMajor</RollForward>
Expand Down
4 changes: 2 additions & 2 deletions csharp-dotnet8/NuGetDownloader/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
"2.4.5"
],
"Microsoft.NETCore.App.Ref": [
"5.0.0"
"6.0.0"
],
"Microsoft.AspNetCore.App.Ref": [
"5.0.0"
"6.0.0"
]
}

0 comments on commit 9a29106

Please sign in to comment.