Skip to content

Commit cfe009c

Browse files
author
LLT21
committed
Dotnet 9.0
1 parent c83480a commit cfe009c

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

frameworks/CSharp/appmpower/appmpower-odbc-my.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:8.0.100 AS build
1+
FROM mcr.microsoft.com/dotnet/sdk:9.0.100 AS build
22
RUN apt-get update
33
RUN apt-get -yqq install clang zlib1g-dev
44
RUN apt-get update
@@ -8,7 +8,7 @@ COPY src .
88
RUN 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

1313
RUN apt-get update
1414
# The following installs standard versions unixodbc and pgsqlodbc

frameworks/CSharp/appmpower/appmpower-odbc-pg.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:8.0.100 AS build
1+
FROM mcr.microsoft.com/dotnet/sdk:9.0.100 AS build
22
RUN apt-get update
33
RUN apt-get -yqq install clang zlib1g-dev libkrb5-dev libtinfo5
44

@@ -7,7 +7,7 @@ COPY src .
77
RUN 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

1212
RUN apt-get update
1313
RUN apt-get install -y unixodbc odbc-postgresql

frameworks/CSharp/appmpower/appmpower.dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:8.0.100 AS build
1+
FROM mcr.microsoft.com/dotnet/sdk:9.0.100 AS build
22
RUN apt-get update
33
RUN apt-get -yqq install clang zlib1g-dev libkrb5-dev libtinfo5
44

@@ -8,7 +8,7 @@ COPY src .
88
RUN 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
1313
ENV DOTNET_TieredPGO 1
1414
ENV DOTNET_TC_QuickJitForLoops 1

frameworks/CSharp/appmpower/src/appMpower.Orm/appMpower.Orm.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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>

frameworks/CSharp/appmpower/src/appMpower/appMpower.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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>

0 commit comments

Comments
 (0)