Edward Lichtman
Edward Lichtman
Very good to know that this works if you change the slash. Any chance this behavior could be built-in? there is no friendly error and I had to go into...
@ErikEJ Just to follow up on this, I'm looking at the NuGet package for the preview version, and I see that the NetStandard code is still very much dependent on...
My mistake -- I was having trouble because it was still using System.Data.SqlClient, so I asked for help. I eventually realized that I need to download a different package, Microsoft.EntityFramework.SqlServer....
@TimS- What coupon validation are you looking to do? Could you please provide a summary of the endpoints you're looking to add?
I seem to have found an awful, awful workaround: ```xml $([MSBuild]::Unescape($(MyProperty.Replace(".","\.").Replace("*",".*").Replace("?",".").Replace("*", "%2A").Replace("%2A","%25252A")))) ``` The thing is, if I do %252A, thinking that it'll unescape to %2A, it seems to double-expand...
MaxTime claims to not actually complete the test, but rather wait until the test completes and then fails the test. Therefore, could the test end up running for 1 minute...
How could I use that as a timespan property too? If I had a virtual property would I then have a const that is created using Timespan.Parse? What about an...
I see. Well I'm glad I brought it up. I remember a weird instance in which I had a static constructor below a static field and spent hours figuring out...
Sorry it took me a while to get back to this. I'm using the TestContext.Current cancellation token for my transaction scope. However when the transaction scope takes too long, The...