many things
Chess Game with WPF in Visual Studio + MVVM
no i mean if you made changes to you code that you don't know how to revert
but if you have it versioned as it seems then you should be able to reimplement them piece by piece to see what is breaking the graphics while developing for custom png chess pieces
32 replies
How to properly test my system ?
well, you are the one who knows your system, you should be telling what you care about
if the macroscopic operations are the inventory, tracking, and shipment endpoints then i guess those will be the important parts that need to be measured
so you test it like for an hour with a growing load to have at least an idea of what it can handle, then obv. you look at machines and services logs to understand when something starts failing, address the bottleneck, repeat while it makes sense
what to measure exactly then depends on what is limiting the system, but if you have no idea of how the various parts perform then you can only start with a generic test
i think you know you will probably need to have an indicator how how much the queries take/how much db are impacted for a single api call, and how the system behaves >90% load
5 replies
Issue with a dependency not loading after building
the error is "could not load", not "could not find"; with that said, i agree that it sucks
anyway if you look at compilation log you should see something about dependency version not going too well
you can also look at
<project>.deps.json
for unexpected packages versions
or installed packages section of nuget package manager if there warnings3 replies