Browse Source

Remove XML files and use original pipeline format

pull/1923/head
quin lynch 3 years ago
parent
commit
135495436c
6 changed files with 20 additions and 25573 deletions
  1. +20
    -20
      azure-pipelines.yml
  2. +0
    -1498
      src/Discord.Net.Commands/Discord.Net.Commands.xml
  3. +0
    -12887
      src/Discord.Net.Core/Discord.Net.Core.xml
  4. +0
    -5159
      src/Discord.Net.Rest/Discord.Net.Rest.xml
  5. +0
    -5898
      src/Discord.Net.WebSocket/Discord.Net.WebSocket.xml
  6. +0
    -111
      src/Discord.Net.Webhook/Discord.Net.Webhook.xml

+ 20
- 20
azure-pipelines.yml View File

@@ -6,29 +6,29 @@ variables:
trigger:
tags:
include:
- "*"
- '*'
branches:
include:
- "*"
- '*'

jobs:
- job: Linux
pool:
vmImage: "ubuntu-latest"
steps:
- template: azure/build.yml
- job: Linux
pool:
vmImage: 'ubuntu-latest'
steps:
- template: azure/build.yml

- job: Windows_build
pool:
vmImage: "windows-latest"
condition: ne(variables['Build.SourceBranch'], 'refs/heads/dev')
steps:
- template: azure/build.yml
- job: Windows_build
pool:
vmImage: 'windows-latest'
condition: ne(variables['Build.SourceBranch'], 'refs/heads/dev')
steps:
- template: azure/build.yml

- job: Windows_deploy
pool:
vmImage: "windows-latest"
condition: |
- job: Windows_deploy
pool:
vmImage: 'windows-latest'
condition: |
and (
succeeded(),
or (
@@ -36,6 +36,6 @@ jobs:
eq(variables['buildTag'], True)
)
)
steps:
- template: azure/build.yml
- template: azure/deploy.yml
steps:
- template: azure/build.yml
- template: azure/deploy.yml

+ 0
- 1498
src/Discord.Net.Commands/Discord.Net.Commands.xml
File diff suppressed because it is too large
View File


+ 0
- 12887
src/Discord.Net.Core/Discord.Net.Core.xml
File diff suppressed because it is too large
View File


+ 0
- 5159
src/Discord.Net.Rest/Discord.Net.Rest.xml
File diff suppressed because it is too large
View File


+ 0
- 5898
src/Discord.Net.WebSocket/Discord.Net.WebSocket.xml
File diff suppressed because it is too large
View File


+ 0
- 111
src/Discord.Net.Webhook/Discord.Net.Webhook.xml View File

@@ -1,111 +0,0 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Discord.Net.Webhook</name>
</assembly>
<members>
<member name="T:Discord.Webhook.DiscordWebhookClient">
<summary> A client responsible for connecting as a Webhook. </summary>
</member>
<member name="M:Discord.Webhook.DiscordWebhookClient.#ctor(Discord.IWebhook)">
<summary> Creates a new Webhook Discord client. </summary>
</member>
<member name="M:Discord.Webhook.DiscordWebhookClient.#ctor(System.UInt64,System.String)">
<summary> Creates a new Webhook Discord client. </summary>
</member>
<member name="M:Discord.Webhook.DiscordWebhookClient.#ctor(System.String)">
<summary> Creates a new Webhook Discord client. </summary>
</member>
<member name="M:Discord.Webhook.DiscordWebhookClient.#ctor(System.UInt64,System.String,Discord.Rest.DiscordRestConfig)">
<summary> Creates a new Webhook Discord client. </summary>
</member>
<member name="M:Discord.Webhook.DiscordWebhookClient.#ctor(Discord.IWebhook,Discord.Rest.DiscordRestConfig)">
<summary> Creates a new Webhook Discord client. </summary>
</member>
<member name="M:Discord.Webhook.DiscordWebhookClient.#ctor(System.String,Discord.Rest.DiscordRestConfig)">
<summary>
Creates a new Webhook Discord client.
</summary>
<param name="webhookUrl">The url of the webhook.</param>
<param name="config">The configuration options to use for this client.</param>
<exception cref="T:System.ArgumentException">Thrown if the <paramref name="webhookUrl"/> is an invalid format.</exception>
<exception cref="T:System.ArgumentNullException">Thrown if the <paramref name="webhookUrl"/> is null or whitespace.</exception>
</member>
<member name="M:Discord.Webhook.DiscordWebhookClient.SendMessageAsync(System.String,System.Boolean,System.Collections.Generic.IEnumerable{Discord.Embed},System.String,System.String,Discord.RequestOptions,Discord.AllowedMentions,Discord.MessageComponent)">
<summary> Sends a message to the channel for this webhook. </summary>
<returns> Returns the ID of the created message. </returns>
</member>
<member name="M:Discord.Webhook.DiscordWebhookClient.ModifyMessageAsync(System.UInt64,System.Action{Discord.Webhook.WebhookMessageProperties},Discord.RequestOptions)">
<summary>
Modifies a message posted using this webhook.
</summary>
<remarks>
This method can only modify messages that were sent using the same webhook.
</remarks>
<param name="messageId">ID of the modified message.</param>
<param name="func">A delegate containing the properties to modify the message with.</param>
<param name="options">The options to be used when sending the request.</param>
<returns>
A task that represents the asynchronous modification operation.
</returns>
</member>
<member name="M:Discord.Webhook.DiscordWebhookClient.DeleteMessageAsync(System.UInt64,Discord.RequestOptions)">
<summary>
Deletes a message posted using this webhook.
</summary>
<remarks>
This method can only delete messages that were sent using the same webhook.
</remarks>
<param name="messageId">ID of the deleted message.</param>
<param name="options">The options to be used when sending the request.</param>
<returns>
A task that represents the asynchronous deletion operation.
</returns>
</member>
<member name="M:Discord.Webhook.DiscordWebhookClient.SendFileAsync(System.String,System.String,System.Boolean,System.Collections.Generic.IEnumerable{Discord.Embed},System.String,System.String,Discord.RequestOptions,System.Boolean,Discord.AllowedMentions)">
<summary> Sends a message to the channel for this webhook with an attachment. </summary>
<returns> Returns the ID of the created message. </returns>
</member>
<member name="M:Discord.Webhook.DiscordWebhookClient.SendFileAsync(System.IO.Stream,System.String,System.String,System.Boolean,System.Collections.Generic.IEnumerable{Discord.Embed},System.String,System.String,Discord.RequestOptions,System.Boolean,Discord.AllowedMentions)">
<summary> Sends a message to the channel for this webhook with an attachment. </summary>
<returns> Returns the ID of the created message. </returns>
</member>
<member name="M:Discord.Webhook.DiscordWebhookClient.ModifyWebhookAsync(System.Action{Discord.WebhookProperties},Discord.RequestOptions)">
<summary> Modifies the properties of this webhook. </summary>
</member>
<member name="M:Discord.Webhook.DiscordWebhookClient.DeleteWebhookAsync(Discord.RequestOptions)">
<summary> Deletes this webhook from Discord and disposes the client. </summary>
</member>
<member name="T:Discord.Webhook.WebhookMessageProperties">
<summary>
Properties that are used to modify an Webhook message with the specified changes.
</summary>
</member>
<member name="P:Discord.Webhook.WebhookMessageProperties.Content">
<summary>
Gets or sets the content of the message.
</summary>
<remarks>
This must be less than the constant defined by <see cref="F:Discord.DiscordConfig.MaxMessageSize"/>.
</remarks>
</member>
<member name="P:Discord.Webhook.WebhookMessageProperties.Embeds">
<summary>
Gets or sets the embed array that the message should display.
</summary>
</member>
<member name="P:Discord.Webhook.WebhookMessageProperties.AllowedMentions">
<summary>
Gets or sets the allowed mentions of the message.
</summary>
</member>
<member name="P:Discord.Webhook.WebhookMessageProperties.Components">
<summary>
Gets or sets the components that the message should display.
</summary>
</member>
<member name="M:Discord.Webhook.WebhookClientHelper.GetWebhookAsync(Discord.Webhook.DiscordWebhookClient,System.UInt64)">
<exception cref="T:System.InvalidOperationException">Could not find a webhook with the supplied credentials.</exception>
</member>
</members>
</doc>

Loading…
Cancel
Save