Switch back to dotnet 9.0
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-11-10 23:54:01 +01:00
parent 457641ac58
commit d4b4b0f2d4
4 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@ name: default
steps:
- name: build
image: mcr.microsoft.com/dotnet/sdk:8.0
image: mcr.microsoft.com/dotnet/sdk:9.0
commands:
- dotnet publish -c Release -o out

View File

@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/aspnet:8.0
FROM mcr.microsoft.com/dotnet/aspnet:9.0
COPY ./out/ /App/
WORKDIR /App
ENTRYPOINT ["dotnet", "StreamCinemaWeb.dll"]

View File

@@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

View File

@@ -5,7 +5,7 @@
</ItemGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>