Fix for regex coherence error. Small clean up.

This commit is contained in:
Justin Kotalik 2016-07-26 10:53:44 -07:00
parent 68a766f2cd
commit 6b2e092aad
2 changed files with 12 additions and 8 deletions

View File

@ -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
{

View File

@ -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-*"
}
}
}
}