update list of shipped binaries for plugins
This commit is contained in:
@@ -148,12 +148,28 @@ namespace Disco.Services.Plugins
|
|||||||
"MarkdownSharp",
|
"MarkdownSharp",
|
||||||
"Microsoft.AspNet.SignalR.Core",
|
"Microsoft.AspNet.SignalR.Core",
|
||||||
"Microsoft.AspNet.SignalR.SystemWeb",
|
"Microsoft.AspNet.SignalR.SystemWeb",
|
||||||
|
"Microsoft.AspNetCore.Connections.Abstractions",
|
||||||
|
"Microsoft.AspNetCore.Http.Connections.Client",
|
||||||
|
"Microsoft.AspNetCore.Http.Connections.Common",
|
||||||
|
"Microsoft.AspNetCore.SignalR.Client.Core",
|
||||||
|
"Microsoft.AspNetCore.SignalR.Client",
|
||||||
|
"Microsoft.AspNetCore.SignalR.Common",
|
||||||
|
"Microsoft.AspNetCore.SignalR.Protocols.Json",
|
||||||
|
"Microsoft.Bcl.AsyncInterfaces",
|
||||||
|
"Microsoft.Bcl.TimeProvider",
|
||||||
|
"Microsoft.Extensions.DependencyInjection.Abstractions",
|
||||||
|
"Microsoft.Extensions.DependencyInjection",
|
||||||
|
"Microsoft.Extensions.Features",
|
||||||
|
"Microsoft.Extensions.Logging.Abstractions",
|
||||||
|
"Microsoft.Extensions.Logging",
|
||||||
|
"Microsoft.Extensions.Options",
|
||||||
|
"Microsoft.Extensions.Primitives",
|
||||||
"Microsoft.Owin",
|
"Microsoft.Owin",
|
||||||
"Microsoft.Owin.Host.SystemWeb",
|
"Microsoft.Owin.Host.SystemWeb",
|
||||||
"Microsoft.Owin.Security",
|
"Microsoft.Owin.Security",
|
||||||
"Microsoft.Web.Infrastructure",
|
"Microsoft.Web.Infrastructure",
|
||||||
"Newtonsoft.Json",
|
|
||||||
"Newtonsoft.Json.Bson",
|
"Newtonsoft.Json.Bson",
|
||||||
|
"Newtonsoft.Json",
|
||||||
"Owin",
|
"Owin",
|
||||||
"PdfiumViewer",
|
"PdfiumViewer",
|
||||||
"PdfSharp",
|
"PdfSharp",
|
||||||
@@ -162,15 +178,29 @@ namespace Disco.Services.Plugins
|
|||||||
"RazorGenerator.Mvc",
|
"RazorGenerator.Mvc",
|
||||||
"Renci.SshNet",
|
"Renci.SshNet",
|
||||||
"Spring.Core",
|
"Spring.Core",
|
||||||
|
"System.Buffers",
|
||||||
"System.Data.SqlServerCe",
|
"System.Data.SqlServerCe",
|
||||||
"System.Data.SqlServerCe.Entity",
|
"System.Data.SqlServerCe.Entity",
|
||||||
|
"System.Diagnostics.DiagnosticSource",
|
||||||
|
"System.IO.Pipelines",
|
||||||
|
"System.Memory",
|
||||||
|
"System.Net.Http",
|
||||||
"System.Net.Http.Extensions",
|
"System.Net.Http.Extensions",
|
||||||
"System.Net.Http.Formatting",
|
"System.Net.Http.Formatting",
|
||||||
"System.Net.Http.Primitives",
|
"System.Net.Http.Primitives",
|
||||||
|
"System.Net.ServerSentEvents",
|
||||||
|
"System.Numerics.Vectors",
|
||||||
"System.Reactive.Core",
|
"System.Reactive.Core",
|
||||||
"System.Reactive.Interfaces",
|
"System.Reactive.Interfaces",
|
||||||
"System.Reactive.Linq",
|
"System.Reactive.Linq",
|
||||||
"System.Reactive.PlatformServices",
|
"System.Reactive.PlatformServices",
|
||||||
|
"System.Runtime.CompilerServices.Unsafe",
|
||||||
|
"System.Runtime.InteropServices.RuntimeInformation",
|
||||||
|
"System.Text.Encodings.Web",
|
||||||
|
"System.Text.Json",
|
||||||
|
"System.Threading.Channels",
|
||||||
|
"System.Threading.Tasks.Extensions",
|
||||||
|
"System.ValueTuple",
|
||||||
"System.Web.Helpers",
|
"System.Web.Helpers",
|
||||||
"System.Web.Http",
|
"System.Web.Http",
|
||||||
"System.Web.Http.WebHost",
|
"System.Web.Http.WebHost",
|
||||||
@@ -181,7 +211,7 @@ namespace Disco.Services.Plugins
|
|||||||
"System.Web.WebPages.Razor",
|
"System.Web.WebPages.Razor",
|
||||||
"T4MVCExtensions",
|
"T4MVCExtensions",
|
||||||
"WebActivatorEx",
|
"WebActivatorEx",
|
||||||
"ZXingNet"
|
"ZXingNet",
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
public static IReadOnlyCollection<string> PluginExcludedAssemblies
|
public static IReadOnlyCollection<string> PluginExcludedAssemblies
|
||||||
@@ -490,7 +520,7 @@ namespace Disco.Services.Plugins
|
|||||||
var fileDateCheck = System.IO.File.GetLastWriteTime(resourcePath);
|
var fileDateCheck = System.IO.File.GetLastWriteTime(resourcePath);
|
||||||
if (fileDateCheck == resourceHash.Item2)
|
if (fileDateCheck == resourceHash.Item2)
|
||||||
#endif
|
#endif
|
||||||
return new Tuple<string, string>(resourcePath, resourceHash.Item1);
|
return new Tuple<string, string>(resourcePath, resourceHash.Item1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!File.Exists(resourcePath))
|
if (!File.Exists(resourcePath))
|
||||||
|
|||||||
@@ -1,19 +0,0 @@
|
|||||||
using System.Web.Http;
|
|
||||||
|
|
||||||
namespace Disco.Web
|
|
||||||
{
|
|
||||||
public static class WebApiConfig
|
|
||||||
{
|
|
||||||
public static void Register(HttpConfiguration config)
|
|
||||||
{
|
|
||||||
// Migrate to WebAPI Eventually...
|
|
||||||
|
|
||||||
|
|
||||||
//config.Routes.MapHttpRoute(
|
|
||||||
// name: "DefaultApi",
|
|
||||||
// routeTemplate: "api/{controller}/{id}",
|
|
||||||
// defaults: new { id = RouteParameter.Optional }
|
|
||||||
//);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -55,8 +55,6 @@ namespace Disco.Web
|
|||||||
|
|
||||||
AreaRegistration.RegisterAllAreas();
|
AreaRegistration.RegisterAllAreas();
|
||||||
|
|
||||||
WebApiConfig.Register(GlobalConfiguration.Configuration);
|
|
||||||
|
|
||||||
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
|
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
|
||||||
|
|
||||||
RouteConfig.RegisterRoutes(RouteTable.Routes);
|
RouteConfig.RegisterRoutes(RouteTable.Routes);
|
||||||
|
|||||||
Reference in New Issue
Block a user