about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2020-05-15 16:12:20 -0400
committerBen Harris <ben@tilde.team>2020-05-15 16:12:20 -0400
commit589b64be0c27b6477ad41cff3fe93d8e8b7eff0c (patch)
tree7fb5a21ec651bd10da73e91fb9d8c6b9000d0fcd
parentd3600ce56816dbdb3fa5eae12fc6ad133e6e8712 (diff)
add nuget packaging metadata
-rw-r--r--IRCStates/IRCStates.csproj4
-rw-r--r--IRCStates/ServerDisconnectedException.cs11
-rw-r--r--IRCStates/ServerException.cs8
-rw-r--r--IRCTokens/EnumerableExtensions.cs (renamed from IRCTokens/Extensions.cs)2
-rw-r--r--IRCTokens/IRCTokens.csproj4
5 files changed, 20 insertions, 9 deletions
diff --git a/IRCStates/IRCStates.csproj b/IRCStates/IRCStates.csproj
index cf9f190..2b0cac2 100644
--- a/IRCStates/IRCStates.csproj
+++ b/IRCStates/IRCStates.csproj
@@ -2,6 +2,10 @@
 
   <PropertyGroup>
     <TargetFramework>netcoreapp3.1</TargetFramework>
+    <PackageId>IRCStates</PackageId>
+    <Version>1.0.0</Version>
+    <Authors>Ben Harris</Authors>
+    <Company>tildeverse.org</Company>
   </PropertyGroup>
 
   <ItemGroup>
diff --git a/IRCStates/ServerDisconnectedException.cs b/IRCStates/ServerDisconnectedException.cs
index 4d0bab6..0912987 100644
--- a/IRCStates/ServerDisconnectedException.cs
+++ b/IRCStates/ServerDisconnectedException.cs
@@ -4,5 +4,16 @@ namespace IRCStates
 {
     public class ServerDisconnectedException : Exception
     {
+        public ServerDisconnectedException(string message) : base(message)
+        {
+        }
+
+        public ServerDisconnectedException(string message, Exception innerException) : base(message, innerException)
+        {
+        }
+
+        public ServerDisconnectedException()
+        {
+        }
     }
 }
diff --git a/IRCStates/ServerException.cs b/IRCStates/ServerException.cs
deleted file mode 100644
index 0f44a88..0000000
--- a/IRCStates/ServerException.cs
+++ /dev/null
@@ -1,8 +0,0 @@
-using System;
-
-namespace IRCStates
-{
-    public class ServerException : Exception
-    {
-    }
-}
diff --git a/IRCTokens/Extensions.cs b/IRCTokens/EnumerableExtensions.cs
index e346a43..f98a86d 100644
--- a/IRCTokens/Extensions.cs
+++ b/IRCTokens/EnumerableExtensions.cs
@@ -4,7 +4,7 @@ using System.Linq;
 
 namespace IRCTokens
 {
-    public static class Extensions
+    public static class EnumerableExtensions
     {
         public static IEnumerable<byte[]> Split(this byte[] bytes, byte separator)
         {
diff --git a/IRCTokens/IRCTokens.csproj b/IRCTokens/IRCTokens.csproj
index 2fe9300..e69a61d 100644
--- a/IRCTokens/IRCTokens.csproj
+++ b/IRCTokens/IRCTokens.csproj
@@ -2,6 +2,10 @@
 
   <PropertyGroup>
     <TargetFramework>netcoreapp3.1</TargetFramework>
+    <PackageId>IRCTokens</PackageId>
+    <Version>1.0.0</Version>
+    <Authors>Ben Harris</Authors>
+    <Company>tildeverse.org</Company>
   </PropertyGroup>
 
   <ItemGroup>