Remove non-working link
parent
0c7b6f3b56
commit
ebcb943e36
|
@ -104,7 +104,6 @@
|
|||
<Compile Include="UninstallController.cs" />
|
||||
<Compile Include="InstallController.cs" />
|
||||
<Compile Include="LANCommanderClient.cs" />
|
||||
<Compile Include="LANCommanderLibraryClient.cs" />
|
||||
<Compile Include="LANCommanderLibraryPlugin.cs" />
|
||||
<Compile Include="ViewModels\LANCommanderSettingsViewModel.cs" />
|
||||
<Compile Include="Views\LANCommanderSettingsView.xaml.cs">
|
||||
|
|
|
@ -1,20 +0,0 @@
|
|||
using Playnite.SDK;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace LANCommander.PlaynitePlugin
|
||||
{
|
||||
public class LANCommanderLibraryClient : LibraryClient
|
||||
{
|
||||
public override bool IsInstalled => true;
|
||||
|
||||
public override void Open()
|
||||
{
|
||||
|
||||
System.Diagnostics.Process.Start("https://localhost:7087");
|
||||
}
|
||||
}
|
||||
}
|
|
@ -26,7 +26,6 @@ namespace LANCommander.PlaynitePlugin
|
|||
|
||||
public override Guid Id { get; } = Guid.Parse("48e1bac7-e0a0-45d7-ba83-36f5e9e959fc");
|
||||
public override string Name => "LANCommander";
|
||||
public override LibraryClient Client { get; } = new LANCommanderLibraryClient();
|
||||
|
||||
internal Dictionary<Guid, string> DownloadCache = new Dictionary<Guid, string>();
|
||||
|
||||
|
|
Loading…
Reference in New Issue