asp.net 核心中的长枪兵
Phalanger in asp.net Core
我在 asp.net 核心 1 中有一个应用程序,我需要使用 Responsive File Manager for my tinymce editor so the user may upload files and images. For this I need to have phalanger to my app. I have add all the nessecary dll files and I did the settings in my web config file according to this tutorial。在我的 mvc 5 应用程序中它运行良好但在核心中我收到此错误:
unable to start process C:\Programs Files\dotnet\dotnet.exe the web
server request failed with status error 500 asp.net core
我尝试了删除项目启动 json 文件、重新启动和 运行 作为管理员 Visual Studio 之类的操作,但没有成功。我是否必须在我的 project.json 文件中添加一些内容?
有什么想法吗?
谢谢
Phalanger 似乎需要 System.Web
而 ASP.NET 核心不支持。
ASP.NET Core 不使用 System.Web
命名空间中的任何内容,因为 System.Web
与 IIS 和 http.sys 紧密耦合,这阻止了旧的 ASP.NET Web 应用程序要真正跨平台。因此,ASP.NET 核心也不支持通过 web.config 进行配置,因为它使用 json 方法(project.json 和 appsettings.json 的混合)。
除此之外,它必须支持新的 netstandard1.x
目标或 portable-net45+win8
目标,以便在 .NET Core 上 运行 和 ASP.NET Core .
您必须联系开发人员并询问 ASP.NET Core 和 .NET Core 支持。
我在 asp.net 核心 1 中有一个应用程序,我需要使用 Responsive File Manager for my tinymce editor so the user may upload files and images. For this I need to have phalanger to my app. I have add all the nessecary dll files and I did the settings in my web config file according to this tutorial。在我的 mvc 5 应用程序中它运行良好但在核心中我收到此错误:
unable to start process C:\Programs Files\dotnet\dotnet.exe the web server request failed with status error 500 asp.net core
我尝试了删除项目启动 json 文件、重新启动和 运行 作为管理员 Visual Studio 之类的操作,但没有成功。我是否必须在我的 project.json 文件中添加一些内容?
有什么想法吗?
谢谢
Phalanger 似乎需要 System.Web
而 ASP.NET 核心不支持。
ASP.NET Core 不使用 System.Web
命名空间中的任何内容,因为 System.Web
与 IIS 和 http.sys 紧密耦合,这阻止了旧的 ASP.NET Web 应用程序要真正跨平台。因此,ASP.NET 核心也不支持通过 web.config 进行配置,因为它使用 json 方法(project.json 和 appsettings.json 的混合)。
除此之外,它必须支持新的 netstandard1.x
目标或 portable-net45+win8
目标,以便在 .NET Core 上 运行 和 ASP.NET Core .
您必须联系开发人员并询问 ASP.NET Core 和 .NET Core 支持。