From 7fb5c950791352277b8c8009e91385742dcc25fe Mon Sep 17 00:00:00 2001 From: Hubert Plociniczak Date: Fri, 30 Jul 2021 15:50:20 +0200 Subject: [PATCH] Upgrade C# example to .NET 5 Updating target framework to demonstrate the ability to analyze .NET 5.0 apps, even if the app itself doesn't use latest stuff. --- README.md | 2 +- netcoreWebapi/netcoreWebapi.csproj | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7df0aab5..eeb1629d 100644 --- a/README.md +++ b/README.md @@ -11,4 +11,4 @@ For more information on how to setup ShiftLeft CORE on GitHub Actions see [the d | Application Name |Technology, architecture | Framework/Version | |------------------|-------------------------|-----------------| -| netcoreWebapi | WebAPI, REST | .NET Core 2.0 | +| netcoreWebapi | WebAPI, REST | .NET 5.0 | diff --git a/netcoreWebapi/netcoreWebapi.csproj b/netcoreWebapi/netcoreWebapi.csproj index daba2ec3..f19b0a84 100644 --- a/netcoreWebapi/netcoreWebapi.csproj +++ b/netcoreWebapi/netcoreWebapi.csproj @@ -1,8 +1,8 @@ - netcoreapp3.1 - 6 + net5.0 + 9