olstakh
olstakh
This would be so great to have! I have a list of json files that all follow the same [schema](https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#). I would be great to load JsonProvider with a schema...
I'm getting slightly different error ``` Test Run Aborted with error System.Exception: One or more errors occurred. ---> System.Exception: Unexpected character encountered while parsing value: �. Path '', line 0,...
> I'm getting slightly different error > > ``` > Test Run Aborted with error System.Exception: One or more errors occurred. > ---> System.Exception: Unexpected character encountered while parsing value:...
@cyungmann In the second case (DoesNotWork one) - you seem to not build the resulting container (i.e. `containerBuilder.Build()`), so `.AddLogging()` might not have effect. I suspect there's some static internal...
The difference i see is in Automock's case - LoggerFactory is created with CastleProxy provider that eventually leads to null logger instance. In regular working case - LoggerFactory is created...
Good idea, @filzrev , i'll give it a go. @bradwilson , got it. so is it fair to say there's no way to customize logger for visualstudio.xunit (apart from runsettings)?...
The difference between two runs that i've noticed (with and without `IterationSetup` attribute) is that with the attribute - invocation count is 1, and so is unroll factor. Not sure...
It currently has a reference to `Microsoft.PowerApps.CoreFramework`, to which i'm not sure you have access. It has implementation of `ExecuteAsync` extension. I will spend some time trying to extract relevant...
@timcassell here's the repro: ``` using System; using System.Collections.Generic; using System.Diagnostics; using System.Threading.Tasks; using BenchmarkDotNet.Attributes; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Logging.Abstractions; namespace Engine.BenchmarkTests.Tests; [InProcess] [HtmlExporter] [MarkdownExporter] [JsonExporterAttribute.Brief] [MemoryDiagnoser] [MaxColumn, MinColumn, MeanColumn] public...
@adamsitnik it does sound reasonable, however 1. Having `[IterationSetup]` makes benchmarks behave very different (i.e. if `depth` is made `500` so no stack overflow, every stage is using `1 op`,...