forked from MindFlavor/Jellyfin.Plugins.Telegram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.yaml
45 lines (35 loc) · 1.63 KB
/
build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
# The name of the plugin; official plugins always start "jellyfin-plugin-"
name: "jellyfin-plugin-telegram"
# The GUID of the plugin, found in Plugin.cs
guid: "0269b736-58c7-436c-995b-0f7127092d5f"
# The version of the plugin, starting at 1. Note that the AssemblyVersion
# and FileVersion flags in the `.csproj` file must have two additional
# fiels, e.g. 1.0.0 to be built correctly.
version: "2" # Please increment with each pull request
# The supported Jellyfin version, usually the earliest binary-compatible
# version. Based on the Jellyfin components from NuGet.
jellyfin_version: "10.6.0" # The earliest binary-compatible version
# The owner name of the plugin, "jellyfin" for official plugins. Change
# to your own name if you wish to remain a 3rd-party plugin.
owner: "mindflavor"
# The nicely-formatted name of the plugin
nicename: "Telegram Notification"
# A short description of the plugin
description: "Sends notifications to Telegram"
# A longer and more detailed description of the plugin; use multiple
# lines as required for readability.
overview: >
Please create a Telegram bot in order to use this plugin!
# The plugin category, in a general sense. These fields are dynamic.
category: "Notifications"
# A list of built artifacts to be bundled into the ZIP for installation.
# Include the main output file, as well as any dependency `.dll`s that
# might be required for the plugin to run.
artifacts:
- "Jellyfin.Plugins.Telegram.dll"
# Build information values for the build infrastructure; these should
# not need to be changed usually.
build_type: "dotnet"
dotnet_configuration: "Release"
dotnet_framework: "netstandard2.1"