Merge pull request #3 from joshuaboniface/build-yaml

Add build metadata and new GUID and Version
This commit is contained in:
Joshua M. Boniface 2019-02-18 12:11:10 -05:00 committed by GitHub
commit 211c9a18bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 3 deletions

View File

@ -2,8 +2,8 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyVersion>10.1.0.0</AssemblyVersion>
<FileVersion>10.1.0.0</FileVersion>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
<RootNamespace>Jellyfin.Plugin.Reports</RootNamespace>
</PropertyGroup>

View File

@ -23,7 +23,7 @@ namespace Jellyfin.Plugin.Reports
public PluginConfiguration PluginConfiguration => Configuration;
private Guid _id = new Guid("2FE79C34-C9DC-4D94-9DF2-2F3F36764414");
private Guid _id = new Guid("d4312cd9-5c90-4f38-82e8-51da566790e8");
public override Guid Id
{
get { return _id; }

13
build.yaml Normal file
View File

@ -0,0 +1,13 @@
---
name: "jellyfin-plugin-reports"
guid: "d4312cd9-5c90-4f38-82e8-51da566790e8"
version: "1.0.0"
nicename: "Reports"
description: "Generate reports of your media library"
overview: "Generate reports of your media library"
category: "General"
artifacts:
- "Jellyfin.Plugin.Reports.dll"
build_type: "dotnet"
dotnet_configuration: "Release"
dotnet_framework: "netstandard2.0"