add nuget packaging metadata
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Ben Harris 2020-05-15 16:12:20 -04:00
parent d3600ce568
commit 589b64be0c
Signed by: ben
GPG Key ID: 4E0AF802FFF7960C
5 changed files with 20 additions and 9 deletions

View File

@ -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>

View File

@ -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()
{
}
}
}

View File

@ -1,8 +0,0 @@
using System;
namespace IRCStates
{
public class ServerException : Exception
{
}
}

View File

@ -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)
{

View File

@ -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>