Slack.NetStandard.Annotations 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Slack.NetStandard.Annotations --version 1.0.0
NuGet\Install-Package Slack.NetStandard.Annotations -Version 1.0.0
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="Slack.NetStandard.Annotations" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Slack.NetStandard.Annotations --version 1.0.0
#r "nuget: Slack.NetStandard.Annotations, 1.0.0"
#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 Slack.NetStandard.Annotations as a Cake Addin
#addin nuget:?package=Slack.NetStandard.Annotations&version=1.0.0

// Install Slack.NetStandard.Annotations as a Cake Tool
#tool nuget:?package=Slack.NetStandard.Annotations&version=1.0.0

Slack.NetStandard.Annotations

Library that uses method attributes to generate a Slack app

Creating an Slack App

To create an app, add Slack.NetStandard.Annotations as a NuGet reference and then you can tag a class with the SlackApp attribute. The big requirement is that the class has to be partial as the generator adds code to your class behind the scenes. The code generated uses the attributes to match methods to incoming requests, and maps the method parameters for you

using Slack.NetStandard.Annotations.Markers;
using Slack.NetStandard.EventsApi.CallbackEvents;
using Slack.NetStandard.Interaction;

namespace ExampleApp
{
    [SlackApp]
    public partial class Example
    {
        [RespondsToEvent(typeof(AppHomeOpened))]
        public async Task<object> GenerateHome(AppHomeOpened appHome)
        {
            return Task.FromResult((object)null!);
        }

        [RespondsToInteraction(typeof(BlockActionsPayload),"callbackId"]
        public object ExampleSyncCommand()
        {
            return null!;
        }

        [RespondsToSlashCommand("command2")]
        public async Task<object> ExampleAsyncCommand(SlashCommand command)
        {
            return Task.FromResult((object)null!);
        }
    }
}

These attributes add several Execute methods to your class which can be called from your code, and work with existing Slack.NetStandard objects

        public Task<object> Execute(SlackContext context)
        public Task<object> Execute(Envelope envelope)
        public Task<object> Execute(Slack.NetStandard.EventsApi.Event @event)
        public Task<object> Execute(InteractionPayload InteractionPayload)
        public Task<object> Execute(SlashCommand slashCommand)

What about the return value? Why does it only return object?

This is the default return value assumed by the generator if you just use the standard SlackApp attribute.

You can pass in a Type parameter if you want the return type to be something else

[SlackApp(typeof(Message))]
public class ExampleApp {}

What if I want a method to match more specific criteria?

In this case there is the SlackMatches attribute that you can use to point to a static method within the class. This method must have the signature static bool MethodName(SlackContext) and it will be used as a secondary check on top of the standard attribute matching

Attribute Information

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
1.0.1 330 11/12/2022
1.0.0 301 11/9/2022

Initial release