diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index c0b05d9..0000000 --- a/.travis.yml +++ /dev/null @@ -1,20 +0,0 @@ -language: csharp -sudo: false -dist: trusty -env: - global: - # We want to build our product in Release configuration - - CONFIGURATION=Release - # Set the DOTNET_SKIP_FIRST_TIME_EXPERIENCE environment variable to stop wasting time caching packages - - DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true - # Disable sending usage data to Microsoft - - DOTNET_CLI_TELEMETRY_OPTOUT=1 - # Skip xml docs for packages - - NUGET_XMLDOC_MODE=skip -mono: none -dotnet: 2.1 -install: - - dotnet restore -script: - - dotnet build ./Plex.Server.Webhooks/ - - dotnet test ./Plex.Server.Webhooks.Tests/ \ No newline at end of file diff --git a/LICENSE b/LICENSE index 23e3bc9..52d999f 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2018 Hinni Solutions + Copyright 2020 Hinni Solutions Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Plex.Server.Webhooks.Tests/Plex.Server.Webhooks.Tests.csproj b/Plex.Server.Webhooks.Tests/Plex.Server.Webhooks.Tests.csproj index 68a0ba0..1393533 100644 --- a/Plex.Server.Webhooks.Tests/Plex.Server.Webhooks.Tests.csproj +++ b/Plex.Server.Webhooks.Tests/Plex.Server.Webhooks.Tests.csproj @@ -2,28 +2,23 @@ netcoreapp2.1 - false - Hinni - Hinni Solutions - - Copyright © 2017-2018 Hinni Solutions - + Copyright © 2017-2020 Hinni Solutions - https://github.com/Hinni/plex-server-webhooks - Plex MediaServer Webhooks Tests - - 2.0.0 + 2.1.0 - - - + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/Plex.Server.Webhooks/Plex.Server.Webhooks.csproj b/Plex.Server.Webhooks/Plex.Server.Webhooks.csproj index 3413ab4..3237678 100644 --- a/Plex.Server.Webhooks/Plex.Server.Webhooks.csproj +++ b/Plex.Server.Webhooks/Plex.Server.Webhooks.csproj @@ -1,14 +1,14 @@ - netstandard1.0 + netstandard2.0 true Hinni - 2.0.0 + 2.1.0 A library to parse event webhooks from Plex server. https://github.com/Hinni/plex-server-webhooks - Switched project to .NET Standard 1.0 - Copyright © 2017-2018 Hinni Solutions + Switched project to .NET Standard 2.0 + Copyright © 2017-2020 Hinni Solutions Hinni Solutions @@ -16,7 +16,7 @@ - + diff --git a/plex-server-webhooks.sln b/plex-server-webhooks.sln index ab02ac5..8db6c81 100644 --- a/plex-server-webhooks.sln +++ b/plex-server-webhooks.sln @@ -1,19 +1,18 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.28307.106 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.29920.165 MinimumVisualStudioVersion = 10.0.40219.1 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{393F97E6-85EC-4751-971D-C4AF2C743C7D}" ProjectSection(SolutionItems) = preProject .gitignore = .gitignore - .travis.yml = .travis.yml LICENSE = LICENSE readme.md = readme.md EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Plex.Server.Webhooks", "Plex.Server.Webhooks\Plex.Server.Webhooks.csproj", "{2A555898-1357-4175-B2E0-28D7C767900F}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Plex.Server.Webhooks.Tests", "Plex.Server.Webhooks.Tests\Plex.Server.Webhooks.Tests.csproj", "{019E3641-8A52-407B-A554-7BB0CEEA5229}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Plex.Server.Webhooks.Tests", "Plex.Server.Webhooks.Tests\Plex.Server.Webhooks.Tests.csproj", "{019E3641-8A52-407B-A554-7BB0CEEA5229}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/readme.md b/readme.md index 4384915..aeed927 100644 --- a/readme.md +++ b/readme.md @@ -4,13 +4,15 @@ [![GitHub release](https://img.shields.io/github/release/Hinni/plex-server-webhooks.svg)](https://github.com/Hinni/plex-server-webhooks/releases) [![NuGet](https://img.shields.io/nuget/v/Plex.Server.Webhooks.svg)](https://www.nuget.org/packages/Plex.Server.Webhooks/) -A library to parse event webhooks from Plex server. +A library to parse event webhooks from Plex Media Server. ## Download via NuGet Install Plex.Server.Webhooks via NuGet package manager (nuget.org) - Install-Package Plex.Server.Webhooks +```cmd +Install-Package Plex.Server.Webhooks +``` ## Usage @@ -24,8 +26,8 @@ var events = parser.ParseEvent(json); ## Plex Webhook Documentation Check out the documentation on Plex: -https://support.plex.tv/hc/en-us/articles/115002267687-Webhooks +[Webhooks on Plex Support](https://support.plex.tv/articles/115002267687-webhooks/) ## Thanks -* [mirajavora](https://github.com/mirajavora) for the project structure and converters used in [sendgrid-webhooks](https://github.com/mirajavora/sendgrid-webhooks) \ No newline at end of file +* [mirajavora](https://github.com/mirajavora) for the project structure and converters used in [sendgrid-webhooks](https://github.com/mirajavora/sendgrid-webhooks)