Merge pull request #800 from robertojrojas/v1.10-update-dotnet-v7

[WIP] v1.11 - Updates quickstarts/tutorials/pub-sub to dotnet v7
This commit is contained in:
Paul Yuknewicz 2023-05-17 09:38:48 -07:00 committed by GitHub
commit 605d5a46eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# Note: we cannot do a staged dotnet docker build here for arm/arm64.
# Build runtime image
FROM mcr.microsoft.com/dotnet/aspnet:6.0
FROM mcr.microsoft.com/dotnet/aspnet:7.0
WORKDIR /app
COPY /out .
ENTRYPOINT ["dotnet", "csharp-subscriber.dll"]

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>