* Update all dependencies and deal with warning/errors * Add updated AsyncEnumerable implementation * Fix broken target * Cleanup * Remove obsolete message * typo * Update azure pipelines * Update samples to .NET Core 3.0 * Pull out test change * Install the .net core 3 SDK on the ubuntu image for the time being * Target net core 3 for the unit tests because pipelines
10 lines
211 B
C#
10 lines
211 B
C#
using Discord.Net.WebSockets;
|
|
|
|
namespace Discord.Net.Providers.WS4Net
|
|
{
|
|
public static class WS4NetProvider
|
|
{
|
|
public static readonly WebSocketProvider Instance = () => new WS4NetClient();
|
|
}
|
|
}
|