Skip to content

Commit 52a3da9

Browse files
committed
Add build.yaml
1 parent bdb5fec commit 52a3da9

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

build.yaml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
# The name of the plugin; official plugins always start "jellyfin-plugin-"
3+
name: "jellyfin-plugin-vuplus"
4+
5+
# The GUID of the plugin, found in Plugin.cs
6+
guid: "9564ac10-af23-39bc-449f-624f23cfa48f"
7+
8+
# The version of the plugin, starting at 1. Note that the AssemblyVersion
9+
# and FileVersion flags in the `.csproj` file must have two additional
10+
# fiels, e.g. 1.0.0 to be built correctly.
11+
version: "3.1.8" # Please increment with each pull request
12+
13+
# The supported Jellyfin version, usually the earliest binary-compatible
14+
# version. Based on the Jellyfin components from NuGet.
15+
targetAbi: "10.6.0" # The earliest binary-compatible version
16+
17+
# The owner name of the plugin, "jellyfin" for official plugins. Change
18+
# to your own name if you wish to remain a 3rd-party plugin.
19+
owner: "knackebrot"
20+
21+
# A short description of the plugin
22+
overview: "VU+"
23+
24+
# A longer and more detailed description of the plugin; use multiple
25+
# lines as required for readability.
26+
description: >
27+
Plugin for Jellyfin to allow it to view channels, browse epg, set and delete timers, play recordings etc.
28+
29+
30+
31+
# The plugin category, in a general sense. These fields are dynamic.
32+
category: "Live TV"
33+
34+
# A list of built artifacts to be bundled into the ZIP for installation.
35+
# Include the main output file, as well as any dependency `.dll`s that
36+
# might be required for the plugin to run.
37+
artifacts:
38+
- "MediaBrowser.Plugins.VuPlus.dll"
39+
40+
# Build information values for the build infrastructure; these should
41+
# not need to be changed usually.
42+
build_type: "dotnet"
43+
dotnet_configuration: "Release"
44+
dotnet_framework: "netstandard2.1"

0 commit comments

Comments
 (0)