From f77ad7999fe47de034fcb2a8f8c42f5f16c6061e Mon Sep 17 00:00:00 2001 From: Jericho Date: Thu, 2 Dec 2021 11:44:56 -0500 Subject: [PATCH] Use .NET 6.0 SDK to build this project and also target net6.0 Resolves #10 --- Source/Cake.Email.Common/Cake.Email.Common.csproj | 2 +- global.json | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 global.json diff --git a/Source/Cake.Email.Common/Cake.Email.Common.csproj b/Source/Cake.Email.Common/Cake.Email.Common.csproj index 1adbf35..9686f99 100644 --- a/Source/Cake.Email.Common/Cake.Email.Common.csproj +++ b/Source/Cake.Email.Common/Cake.Email.Common.csproj @@ -1,7 +1,7 @@  - netstandard2.0 + net6.0 anycpu true Library diff --git a/global.json b/global.json new file mode 100644 index 0000000..d6c2c37 --- /dev/null +++ b/global.json @@ -0,0 +1,6 @@ +{ + "sdk": { + "version": "6.0.100", + "rollForward": "latestFeature" + } +} \ No newline at end of file