Circular Dependency with Static Files fix.
This commit is contained in:
parent
fad730441a
commit
68a766f2cd
|
|
@ -1,9 +1,7 @@
|
|||
using Microsoft.AspNetCore.Builder;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.AspNetCore.Rewrite;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
|
||||
namespace RewriteSample
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,8 +2,7 @@
|
|||
"version": "1.1.0-*",
|
||||
"dependencies": {
|
||||
"Microsoft.AspNetCore.Rewrite": "1.1.0-*",
|
||||
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*",
|
||||
"Microsoft.AspNetCore.StaticFiles": "1.1.0-*"
|
||||
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*"
|
||||
},
|
||||
"buildOptions": {
|
||||
"emitEntryPoint": true,
|
||||
|
|
|
|||
|
|
@ -16,16 +16,15 @@
|
|||
},
|
||||
"tags": [
|
||||
"aspnetcore",
|
||||
"proxy",
|
||||
"headers",
|
||||
"xforwarded"
|
||||
"urlrewrite",
|
||||
"mod_rewrite"
|
||||
]
|
||||
},
|
||||
"dependencies": {
|
||||
"Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0-*",
|
||||
"Microsoft.AspNetCore.Http.Extensions": "1.1.0-*",
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "1.1.0-*",
|
||||
"Microsoft.Extensions.FileProviders.Physical": "1.1.0-*",
|
||||
"Microsoft.Extensions.FileProviders.Abstractions": "1.1.0-*",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "1.1.0-*",
|
||||
"Microsoft.Extensions.Options": "1.1.0-*",
|
||||
"System.Text.RegularExpressions": "4.1.0-*"
|
||||
|
|
|
|||
Loading…
Reference in New Issue