File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed
frameworks/CSharp/appmpower Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1- FROM mcr.microsoft.com/dotnet/sdk:8 .0.100 AS build
1+ FROM mcr.microsoft.com/dotnet/sdk:9 .0.100 AS build
22RUN apt-get update
33RUN apt-get -yqq install clang zlib1g-dev
44RUN apt-get update
@@ -8,7 +8,7 @@ COPY src .
88RUN dotnet publish -c Release -o out /p:Database=mysql
99
1010# Construct the actual image that will run
11- FROM mcr.microsoft.com/dotnet/aspnet:8 .0.0 AS runtime
11+ FROM mcr.microsoft.com/dotnet/aspnet:9 .0.0 AS runtime
1212
1313RUN apt-get update
1414# The following installs standard versions unixodbc and pgsqlodbc
Original file line number Diff line number Diff line change 1- FROM mcr.microsoft.com/dotnet/sdk:8 .0.100 AS build
1+ FROM mcr.microsoft.com/dotnet/sdk:9 .0.100 AS build
22RUN apt-get update
33RUN apt-get -yqq install clang zlib1g-dev libkrb5-dev libtinfo5
44
@@ -7,7 +7,7 @@ COPY src .
77RUN dotnet publish -c Release -o out /p:Database=postgresql
88
99# Construct the actual image that will run
10- FROM mcr.microsoft.com/dotnet/aspnet:8 .0.0 AS runtime
10+ FROM mcr.microsoft.com/dotnet/aspnet:9 .0.0 AS runtime
1111
1212RUN apt-get update
1313RUN apt-get install -y unixodbc odbc-postgresql
Original file line number Diff line number Diff line change 1- FROM mcr.microsoft.com/dotnet/sdk:8 .0.100 AS build
1+ FROM mcr.microsoft.com/dotnet/sdk:9 .0.100 AS build
22RUN apt-get update
33RUN apt-get -yqq install clang zlib1g-dev libkrb5-dev libtinfo5
44
@@ -8,7 +8,7 @@ COPY src .
88RUN dotnet publish -c Release -o out
99
1010# Construct the actual image that will run
11- FROM mcr.microsoft.com/dotnet/aspnet:8 .0.0 AS runtime
11+ FROM mcr.microsoft.com/dotnet/aspnet:9 .0.0 AS runtime
1212# Full PGO
1313ENV DOTNET_TieredPGO 1
1414ENV DOTNET_TC_QuickJitForLoops 1
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >net8 .0</TargetFramework >
4+ <TargetFramework >net9 .0</TargetFramework >
55 <ImplicitUsings >enable</ImplicitUsings >
66
77 <PublishAot >true</PublishAot >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.Web" >
22
33 <PropertyGroup >
4- <TargetFramework >net8 .0</TargetFramework >
4+ <TargetFramework >net9 .0</TargetFramework >
55 <OutputType >Exe</OutputType >
66 <AllowUnsafeBlocks >true</AllowUnsafeBlocks >
77 </PropertyGroup >
You can’t perform that action at this time.
0 commit comments