Skip to content

Commit

Permalink
Upgrade dotnet app to use 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cweibel committed Nov 21, 2024
1 parent 68940ad commit 5024c86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dotnet-core/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
endpoints.MapGet("/", async context =>
{
await context.Response.WriteAsync("Hello World from .Net Core 6.0!");
await context.Response.WriteAsync("Hello World from .Net Core 8.0!");
});
});
}
Expand Down
2 changes: 1 addition & 1 deletion dotnet-core/dotnet-core-hello-world.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>netcoreapp6.0</TargetFramework>
<TargetFramework>netcoreapp8.0</TargetFramework>
<RootNamespace>dot_net_gov</RootNamespace>
</PropertyGroup>

Expand Down

0 comments on commit 5024c86

Please sign in to comment.