Chris Rogus

Results 55 comments of Chris Rogus
trafficstars

I also still do not see test output and would love to, please. From `dotnet test` output: ``` Test ...Tests\bin\Debug\netcoreapp2.0\~.dll(.NETCoreApp,Version=v2.0) Microsoft (R) Test Execution Command Line Tool Version 15.3.0-preview-20170703-02 ```...

Multiple PRs open for this, just need them merged https://github.com/jbr/async-sqlx-session/pulls @jbr

Can you just specify the correct Pool type to use in your code? I.e. `use lib1::Pool as Pool1` and `use lib2::Pool as Pool2` and make sure you are passing the...

Please explain why you think interpolation should be disabled. You are afraid that you might use interpolation in your .env when you don't mean to? SetEnvVar = false does not...

Anything that should not have interpolation should be single quoted. You haven't said (yet) that you want to disable utf char sequences as well `\u1234` etc, or escaped chars `\n`...

You also have a failing test, per the CI

Having thought about this more: The way to disable interpolation is, as it is in normal shell scripting and so on, with single quotes. That is the path to use,...

Also, if this was desirable, the solution would be to use the already purpose built `ValueActual` rather than adding `_raw` to `ValueInterpolated`. This would require having a swap for the...

Looks like I should just move up to `dotnet add package Nancy.Serialization.JsonNet --version 2.0.0-clinteastwood ` however when I do that, I get a strange error on `dotnet restore`: ``` error...

I don't remember exactly what I did for this specific concern, but if it helps you at all, I do have a demo project where I use JSON in Nancy...