Fix for regex coherence error. Small clean up.
This commit is contained in:
parent
68a766f2cd
commit
6b2e092aad
|
|
@ -3,12 +3,8 @@
|
|||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Text.RegularExpressions;
|
||||
using Microsoft.AspNetCore.Rewrite.ModRewrite;
|
||||
using Microsoft.AspNetCore.Rewrite.RuleAbstraction;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.FileProviders;
|
||||
|
||||
namespace Microsoft.AspNetCore.Rewrite
|
||||
{
|
||||
|
|
|
|||
|
|
@ -26,11 +26,19 @@
|
|||
"Microsoft.Extensions.Configuration.Abstractions": "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-*"
|
||||
"Microsoft.Extensions.Options": "1.1.0-*"
|
||||
},
|
||||
"frameworks": {
|
||||
"net451": {},
|
||||
"netstandard1.3": {}
|
||||
"net451": {
|
||||
"frameworkAssemblies": {
|
||||
"System.Xml.Linq": ""
|
||||
}
|
||||
},
|
||||
"netstandard1.3": {
|
||||
"dependencies": {
|
||||
"System.Text.RegularExpressions": "4.1.0-*",
|
||||
"System.Xml.XDocument": "4.0.11-*"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue