From 0e360e59f83040ab7fabcca0c6a69e5b98556cf9 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 26 Jul 2023 23:57:55 +0800 Subject: [PATCH 1/2] Update dotnet-sample.csproj to support donet6 --- sample-apps/dotnet/dotnet-sample.csproj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sample-apps/dotnet/dotnet-sample.csproj b/sample-apps/dotnet/dotnet-sample.csproj index df37dc7..9c8c99f 100644 --- a/sample-apps/dotnet/dotnet-sample.csproj +++ b/sample-apps/dotnet/dotnet-sample.csproj @@ -1,11 +1,11 @@ - netcoreapp3.1 + net6.0 + enable + enable - - + - From e6b51e9fd0ff009c21c9a5c2390a4a2624d0c4a0 Mon Sep 17 00:00:00 2001 From: Alex Date: Thu, 3 Aug 2023 15:09:01 +0800 Subject: [PATCH 2/2] Create global.json --- sample-apps/dotnet/global.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 sample-apps/dotnet/global.json diff --git a/sample-apps/dotnet/global.json b/sample-apps/dotnet/global.json new file mode 100644 index 0000000..58688e9 --- /dev/null +++ b/sample-apps/dotnet/global.json @@ -0,0 +1,5 @@ +{ + "sdk":{ + "version": "6.0.412" + } +}