Skip to content

Commit

Permalink
Target 10.7
Browse files Browse the repository at this point in the history
  • Loading branch information
crobibero committed Dec 3, 2020
1 parent 5c0b349 commit 35c2590
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Jellyfin.Plugin.ServerWMC/Jellyfin.Plugin.ServerWMC.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>Jellyfin.Plugin.ServerWMC</RootNamespace>
<AssemblyVersion>5.0.0.0</AssemblyVersion>
<FileVersion>5.0.0.0</FileVersion>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
<FileVersion>6.0.0.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
3 changes: 2 additions & 1 deletion Jellyfin.Plugin.ServerWMC/WMCService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
using MediaBrowser.Controller.Drawing;
using MediaBrowser.Model.Dto;
using System.Net;
using System.Net.Http;
using System.Xml.Linq;
using MediaBrowser.Model.MediaInfo;
using MediaBrowser.Model.IO;
Expand Down Expand Up @@ -62,7 +63,7 @@ public class WMCService : ILiveTvService, IDisposable
/// <summary>
/// constructor
/// </summary>
public WMCService(IHttpClient httpClient, IFileSystem fileSystem, ILoggerFactory loggerFactory)
public WMCService(IFileSystem fileSystem, ILoggerFactory loggerFactory)
{
Instance = this;
_logger = loggerFactory.CreateLogger<WMCService>(); // start logger
Expand Down
5 changes: 3 additions & 2 deletions build.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
---
name: "ServerWMC"
guid: "1fc322a1-af2e-49a5-b2eb-a89b4240f700"
version: "5.0.0.0"
targetAbi: "10.6.0.0"
version: "6.0.0.0"
targetAbi: "10.7.0.0"
framework: "net5.0"
overview: "Jellyfin Live TV plugin for Windows MediaCenter with ServerWMC"
description: >
Provides access to Live TV, Program Guide and Recordings from your Windows MediaCenter Server running ServerWMC.
Expand Down

0 comments on commit 35c2590

Please sign in to comment.