UriBuilder.cs has problem when a query string parameter value has special characters like +
I found a workaround
in line 79
var result = queryString
.Aggregate("?", (current, pair) => current + (pair.Key + "=" + Uri.EscapeDataString(pair.Value) + "&"));
Comments: What problem/solution you are describing? Is it the same as https://caliburnmicro.codeplex.com/workitem/227 or a new issue? Note: #227 is fixed in source but not in the released version.
I found a workaround
in line 79
var result = queryString
.Aggregate("?", (current, pair) => current + (pair.Key + "=" + Uri.EscapeDataString(pair.Value) + "&"));
Comments: What problem/solution you are describing? Is it the same as https://caliburnmicro.codeplex.com/workitem/227 or a new issue? Note: #227 is fixed in source but not in the released version.