Compare commits

..

No commits in common. "56f66dd51c62e6627b268c02200286f69558008c" and "4278b8565ba1c4dfa9b94df3a17cd1c6a3ee96c8" have entirely different histories.

2 changed files with 8 additions and 5 deletions

View File

@ -1,5 +1,5 @@
# Use the official .NET SDK image for building the application
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
WORKDIR /src
# Copy the source code
@ -9,7 +9,7 @@ COPY . .
RUN dotnet build -c Release -o /app
# Create clean run environment (without source and sdk)
# FROM mcr.microsoft.com/dotnet/runtime:9.0 AS base
# FROM mcr.microsoft.com/dotnet/runtime:6.0 AS base
# WORKDIR /app
# COPY --from=build /app .

View File

@ -2,15 +2,18 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerfileRunArguments>-p 9933:9933</DockerfileRunArguments>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ComponentAce.Compression.Libs.zlib" Version="1.0.4" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.6" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.6" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.19.4" />
</ItemGroup>
<ItemGroup>