add coverage things

This commit is contained in:
Tommy Parnell
2016-11-08 21:59:33 -05:00
parent 754d7cbff4
commit 1cbd7873e1
9 changed files with 68 additions and 12 deletions

View File

@@ -9,6 +9,7 @@
},
"frameworks": {
"net46": {},
"netcoreapp1.0": {
"dependencies": {
"Microsoft.NETCore.App": {

View File

@@ -21,7 +21,7 @@ namespace System
valuesEnum = new string[0];
}
var isfirst = string.IsNullOrWhiteSpace(bld.Query);
var intitialValue = isfirst ? "?" : $"{bld.Query}&";
var intitialValue = isfirst ? "" : $"{bld.Query.TrimStart('?')}&";
var sb = new StringBuilder($"{intitialValue}{key}");
var validValueHit = false;
foreach(var value in valuesEnum)

View File

@@ -6,7 +6,7 @@
},
"frameworks": {
"netstandard1.6": {
"netstandard1.3": {
"imports": "dnxcore50"
}
}