Update to .NET 9 preview
This commit is contained in:
parent
8066478447
commit
2f5212f8d0
@ -1,6 +1,6 @@
|
||||
# syntax=docker/dockerfile:1.7-labs
|
||||
|
||||
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine AS build1
|
||||
FROM mcr.microsoft.com/dotnet/sdk:9.0-preview-alpine AS build1
|
||||
|
||||
WORKDIR /src
|
||||
COPY ./.config ./
|
||||
@ -10,7 +10,7 @@ WORKDIR Groceries
|
||||
COPY ./Groceries/libman.json ./
|
||||
RUN dotnet libman restore
|
||||
|
||||
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine AS build2
|
||||
FROM mcr.microsoft.com/dotnet/sdk:9.0-preview-alpine AS build2
|
||||
|
||||
WORKDIR /src
|
||||
COPY ./Groceries.sln ./
|
||||
@ -23,7 +23,7 @@ COPY . ./
|
||||
COPY --from=build1 /src ./
|
||||
RUN dotnet publish --no-restore --output /out
|
||||
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine-composite AS base
|
||||
FROM mcr.microsoft.com/dotnet/aspnet:9.0-preview-alpine-composite AS base
|
||||
WORKDIR /groceries
|
||||
|
||||
COPY --from=build2 /out .
|
||||
|
@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<WarningsAsErrors>nullable</WarningsAsErrors>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<WarningsAsErrors>nullable</WarningsAsErrors>
|
||||
|
Loading…
x
Reference in New Issue
Block a user