From f4ad4dab21af9a2e3efe0d778f2aaa4f4b6ac9f4 Mon Sep 17 00:00:00 2001 From: dkanada Date: Tue, 12 Mar 2019 02:03:41 +0900 Subject: [PATCH] add sln file and build config --- .gitignore | 7 +++---- Jellyfin.Plugin.Template.sln | 17 +++++++++++++++++ build.yaml | 16 ++++++++++++++++ 3 files changed, 36 insertions(+), 4 deletions(-) create mode 100644 Jellyfin.Plugin.Template.sln create mode 100644 build.yaml diff --git a/.gitignore b/.gitignore index d4a2871..ba81862 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ -dotnet-template/bin/ -dotnet-template/obj/ -example-plugin/bin/ -example-plugin/obj/ +bin/ +obj/ +.vs/ diff --git a/Jellyfin.Plugin.Template.sln b/Jellyfin.Plugin.Template.sln new file mode 100644 index 0000000..28c5d7c --- /dev/null +++ b/Jellyfin.Plugin.Template.sln @@ -0,0 +1,17 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Jellyfin.Plugin.Template", "Jellyfin.Plugin.Template\Jellyfin.Plugin.Template.csproj", "{D921B930-CF91-406F-ACBC-08914DCD0D34}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D921B930-CF91-406F-ACBC-08914DCD0D34}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D921B930-CF91-406F-ACBC-08914DCD0D34}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D921B930-CF91-406F-ACBC-08914DCD0D34}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D921B930-CF91-406F-ACBC-08914DCD0D34}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/build.yaml b/build.yaml new file mode 100644 index 0000000..2cbd409 --- /dev/null +++ b/build.yaml @@ -0,0 +1,16 @@ +--- +name: "jellyfin-plugin-template" +guid: "eb5d7894-8eef-4b36-aa6f-5d124e828ce1" +version: "1.0.0" +nicename: "Template" +description: "Short description about your plugin" +overview: > + This is a longer description that can span more than one + line and include details about your plugin. +category: "General" +owner: "jellyfin" +artifacts: + - "Jellyfin.Plugin.Template.dll" +build_type: "dotnet" +dotnet_configuration: "Release" +dotnet_framework: "netstandard2.0"