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.Builder;
|
||||||
using Microsoft.AspNetCore.Hosting;
|
using Microsoft.AspNetCore.Hosting;
|
||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
using Microsoft.Extensions.Configuration;
|
|
||||||
using Microsoft.AspNetCore.Rewrite;
|
using Microsoft.AspNetCore.Rewrite;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
|
||||||
|
|
||||||
namespace RewriteSample
|
namespace RewriteSample
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,7 @@
|
||||||
"version": "1.1.0-*",
|
"version": "1.1.0-*",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.AspNetCore.Rewrite": "1.1.0-*",
|
"Microsoft.AspNetCore.Rewrite": "1.1.0-*",
|
||||||
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*",
|
"Microsoft.AspNetCore.Server.Kestrel": "1.1.0-*"
|
||||||
"Microsoft.AspNetCore.StaticFiles": "1.1.0-*"
|
|
||||||
},
|
},
|
||||||
"buildOptions": {
|
"buildOptions": {
|
||||||
"emitEntryPoint": true,
|
"emitEntryPoint": true,
|
||||||
|
|
|
||||||
|
|
@ -16,16 +16,15 @@
|
||||||
},
|
},
|
||||||
"tags": [
|
"tags": [
|
||||||
"aspnetcore",
|
"aspnetcore",
|
||||||
"proxy",
|
"urlrewrite",
|
||||||
"headers",
|
"mod_rewrite"
|
||||||
"xforwarded"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0-*",
|
"Microsoft.AspNetCore.Hosting.Abstractions": "1.1.0-*",
|
||||||
"Microsoft.AspNetCore.Http.Extensions": "1.1.0-*",
|
"Microsoft.AspNetCore.Http.Extensions": "1.1.0-*",
|
||||||
"Microsoft.Extensions.Configuration.Abstractions": "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.Logging.Abstractions": "1.1.0-*",
|
||||||
"Microsoft.Extensions.Options": "1.1.0-*",
|
"Microsoft.Extensions.Options": "1.1.0-*",
|
||||||
"System.Text.RegularExpressions": "4.1.0-*"
|
"System.Text.RegularExpressions": "4.1.0-*"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue