From 589b64be0c27b6477ad41cff3fe93d8e8b7eff0c Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Fri, 15 May 2020 16:12:20 -0400 Subject: add nuget packaging metadata --- IRCStates/IRCStates.csproj | 4 ++++ IRCStates/ServerDisconnectedException.cs | 11 +++++++++++ IRCStates/ServerException.cs | 8 -------- 3 files changed, 15 insertions(+), 8 deletions(-) delete mode 100644 IRCStates/ServerException.cs (limited to 'IRCStates') 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 @@ netcoreapp3.1 + IRCStates + 1.0.0 + Ben Harris + tildeverse.org 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 - { - } -} -- cgit 1.4.1