adamsitnik on master
Sorting parameter columns with … (compare)
.WithNuget
might do the trick if i consume a "local" RestoreSource
PackOnBuild
is enabled to consume the "nuget feed" versus local feed
MessagePack
in my scenario so it's not a simple one ;)
[Params("scaledirname1", "scaledirname2", "scaledirname3")]
etc, but still need to communicate the root directory for each scale directory. (Yes, I'm aware of the fact that all sorts of things will affect benchmarks based on disk I/O, and am not yet worrying about it.)
While migrating webapplication from .netcore 2.1 to .netcore 3.1, I am getting runtime exception as
System.InvalidOperationException: 'The CORS protocol does not allow specifying a wildcard (any) origin and credentials at the same time. Configure the CORS policy by listing individual origins if credentials needs to be supported.'
How to resolve System.InvalidOperationException?
I just tried to create a couple of benchmark tests, and....I got this error:
error MSB4086: A numeric comparison was attempted on "$(LangVersion)" that evaluates to "latest" instead of a number, in condition "'$(LangVersion)' == '' Or '$(LangVersion)' < '7.3'".
I've never seen that one before :). Any ideas why I'm getting this, and how to get rid of it?
BenchmarkDotnet
do bisect
so that we could detect threshold in the code, [BisectParam]
public ValueTuple<int, int> RequestSize = (8, 4096)
[Benchmarck]
[BisectPivot(MemoryDiagnosterResult.Gen0)]
public void Foo()
{
//Code will run with
// 0 => Alloc ?
// 4096 => Alloc ?
// (4096-0)/2 => Alloc ?
// ....
}