about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2021-11-09 17:17:36 -0500
committerBen Harris <ben@tilde.team>2021-11-09 17:17:36 -0500
commitb3d4e9d3b8ecd0c773f0e622968452775ce9506c (patch)
treed7fa67e154bd3a25eaee259b668cc5873528a940
parent8acaa752c3a03feecd4a9131d09ec4be7756289d (diff)
add .net 6 support
-rw-r--r--Examples/States/States.csproj2
-rw-r--r--Examples/Tokens/Tokens.csproj2
-rw-r--r--IRCSharp.Tests/IRCSharp.Tests.csproj3
-rw-r--r--IRCStates/IRCStates.csproj4
-rw-r--r--IRCTokens/IRCTokens.csproj4
5 files changed, 7 insertions, 8 deletions
diff --git a/Examples/States/States.csproj b/Examples/States/States.csproj
index cafac01..187b5bd 100644
--- a/Examples/States/States.csproj
+++ b/Examples/States/States.csproj
@@ -2,7 +2,7 @@
 
   <PropertyGroup>
     <OutputType>Exe</OutputType>
-    <TargetFramework>net5.0</TargetFramework>
+    <TargetFrameworks>net5.0;net6.0</TargetFrameworks>
   </PropertyGroup>
 
   <ItemGroup>
diff --git a/Examples/Tokens/Tokens.csproj b/Examples/Tokens/Tokens.csproj
index 0555b32..284029c 100644
--- a/Examples/Tokens/Tokens.csproj
+++ b/Examples/Tokens/Tokens.csproj
@@ -2,7 +2,7 @@
 
   <PropertyGroup>
     <OutputType>Exe</OutputType>
-    <TargetFramework>net5.0</TargetFramework>
+    <TargetFrameworks>net5.0;net6.0</TargetFrameworks>
   </PropertyGroup>
 
   <ItemGroup>
diff --git a/IRCSharp.Tests/IRCSharp.Tests.csproj b/IRCSharp.Tests/IRCSharp.Tests.csproj
index e068b60..5449218 100644
--- a/IRCSharp.Tests/IRCSharp.Tests.csproj
+++ b/IRCSharp.Tests/IRCSharp.Tests.csproj
@@ -1,8 +1,7 @@
 <Project Sdk="Microsoft.NET.Sdk">
 
   <PropertyGroup>
-    <TargetFramework>net5.0</TargetFramework>
-
+    <TargetFrameworks>net5.0;net6.0</TargetFrameworks>
     <IsPackable>false</IsPackable>
   </PropertyGroup>
 
diff --git a/IRCStates/IRCStates.csproj b/IRCStates/IRCStates.csproj
index 891167c..7de655b 100644
--- a/IRCStates/IRCStates.csproj
+++ b/IRCStates/IRCStates.csproj
@@ -1,9 +1,9 @@
 <Project Sdk="Microsoft.NET.Sdk">
 
   <PropertyGroup>
-    <TargetFramework>net5.0</TargetFramework>
+    <TargetFrameworks>net5.0;net6.0</TargetFrameworks>
     <PackageId>IRCStates</PackageId>
-    <Version>1.1.0</Version>
+    <Version>1.1.1</Version>
     <Authors>Ben Harris</Authors>
     <Company>tildeverse.org</Company>
     <IsPackable>true</IsPackable>
diff --git a/IRCTokens/IRCTokens.csproj b/IRCTokens/IRCTokens.csproj
index f926041..dec64e8 100644
--- a/IRCTokens/IRCTokens.csproj
+++ b/IRCTokens/IRCTokens.csproj
@@ -1,7 +1,7 @@
 <Project Sdk="Microsoft.NET.Sdk">
 
   <PropertyGroup>
-    <TargetFramework>net5.0</TargetFramework>
+    <TargetFrameworks>net5.0;net6.0</TargetFrameworks>
     <PackageId>IRCTokens</PackageId>
     <Version>1.1.0</Version>
     <Authors>Ben Harris</Authors>
@@ -13,7 +13,7 @@
     <RepositoryUrl>https://tildegit.org/irctokens/ircsharp/src/branch/main/IRCTokens</RepositoryUrl>
     <RepositoryType>git</RepositoryType>
     <PackageTags>irc</PackageTags>
-    <PackageVersion>1.1.0</PackageVersion>
+    <PackageVersion>1.1.1</PackageVersion>
   </PropertyGroup>
 
   <ItemGroup>