DiscordAnarchy 0.1.0-alpha
This is a prerelease version of DiscordAnarchy.
dotnet add package DiscordAnarchy --version 0.1.0-alpha
NuGet\Install-Package DiscordAnarchy -Version 0.1.0-alpha
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DiscordAnarchy" Version="0.1.0-alpha" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DiscordAnarchy --version 0.1.0-alpha
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DiscordAnarchy, 0.1.0-alpha"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DiscordAnarchy as a Cake Addin #addin nuget:?package=DiscordAnarchy&version=0.1.0-alpha&prerelease // Install DiscordAnarchy as a Cake Tool #tool nuget:?package=DiscordAnarchy&version=0.1.0-alpha&prerelease
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Anarchy
Anarchy is an opensource Discord API wrapper, lol
Yes its on nuget as well
https://www.nuget.org/packages/ILinked.Anarchy/
Read Me in progress just have this example lol.
class ESKETTIT
{
static List<long> guilds = new List<long>();
static void Main(string[] args)
{
DiscordClient Client = new DiscordClient(args[0]);
int a = 0;
Console.WriteLine("Creating Shit...");
while (a != 100)
{
Console.WriteLine("Creating Server " + a);
GuildCreationProperties GuildProps = new GuildCreationProperties();
GuildProps.Name = "Test";
GuildProps.Region = "us-west";
Guild guild = Client.CreateGuild(GuildProps);
guilds.Add(guild.Id);
a++;
}
Console.WriteLine("Set hypesquad to brilliance...");
Client.SetHypesquad(HypesquadHouse.Brilliance);
Console.WriteLine("Leaving Shit...");
foreach (long id in guilds)
{
Console.WriteLine("Left " + id);
Client.LeaveGuild(id);
}
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
- Newtonsoft.Json (>= 12.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.1.0-alpha | 477 | 6/23/2019 |
Initial Beta Release.