File tree 4 files changed +22
-61
lines changed
4 files changed +22
-61
lines changed Original file line number Diff line number Diff line change 1
- FROM mcr.microsoft.com/dotnet/sdk:6 .0 AS build
1
+ FROM mcr.microsoft.com/dotnet/sdk:9 .0 AS build
2
2
WORKDIR /app
3
3
4
4
# copy csproj and restore as distinct layers
5
- COPY *.sln .
5
+ COPY *.slnx .
6
6
COPY src/Hops/*.csproj ./src/Hops/
7
7
RUN dotnet restore
8
8
@@ -11,7 +11,7 @@ COPY src/Hops/. ./src/Hops/
11
11
WORKDIR /app/src/Hops
12
12
RUN dotnet publish -c Release -o out
13
13
14
- FROM mcr.microsoft.com/dotnet/aspnet:6 .0 AS runtime
14
+ FROM mcr.microsoft.com/dotnet/aspnet:9 .0 AS runtime
15
15
16
16
WORKDIR /app
17
17
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ <Solution>
2
+ <Configurations>
3
+ <Platform Name="Any CPU" />
4
+ <Platform Name="ARM" />
5
+ <Platform Name="x64" />
6
+ <Platform Name="x86" />
7
+ </Configurations>
8
+ <Folder Name="/Solution Items/">
9
+ <File Path=".github/workflows/workflow.yml" />
10
+ <File Path="Dockerfile" />
11
+ <File Path="README.md" />
12
+ </Folder>
13
+ <Folder Name="/src/">
14
+ <Project Path="src/Hops/Hops.csproj" />
15
+ </Folder>
16
+ </Solution>
Original file line number Diff line number Diff line change 1
- <Project Sdk =" Microsoft.NET.Sdk.Web" >
1
+ <Project Sdk =" Microsoft.NET.Sdk.Web" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net6 .0</TargetFramework >
4
+ <TargetFramework >net9 .0</TargetFramework >
5
5
<Nullable >enable</Nullable >
6
6
</PropertyGroup >
7
7
8
8
<ItemGroup >
9
- <PackageReference Include =" Microsoft.EntityFrameworkCore.Sqlite" Version =" 6 .0.9 " />
9
+ <PackageReference Include =" Microsoft.EntityFrameworkCore.Sqlite" Version =" 9 .0.3 " />
10
10
<PackageReference Include =" Microsoft.Web.LibraryManager.Build" Version =" 2.1.175" />
11
11
</ItemGroup >
12
12
You can’t perform that action at this time.
0 commit comments