AIDA
AIDA
Heads-up that VS 2017 does not support (visually) multi-targeting with csproj as well as it did on project.json. I just did multi targeting last night and it was all csproj...
I think adding an API for those stylization points would be ideal, yes! Essentially, I got the controls working and then wanted to turn on dark mode and change accent...
Great stuff!! I'll play with this some then, this is the kind of guidance I think others could benefit from as well, thanks again!
Am I right in interpreting that there is currently no way to set a default policy and AGIC removes listener policies, so in effect, forces you to use insecure protocols?
Since the new preview ssl policies call out that it will upgrade the entire gateway and you can't mix v1 and v2 policies, maybe that is a work around?
Any update on this? My multi-stage .net framework (SDK->Runtime) builds take 50m. ``` Pool: Azure Pipelines Image: windows-latest Agent: Azure Pipelines 6 Started: Today at 7:35 PM Duration: 50m 28s...
Yeah, just gonna put my voice here as well. No option isn't really a great selling point. This has downstream effects too with EventHubs which are incredibly useful, but at...
In SQL Server at least you may be able to handle the uncommitted (2nd case) by using a sp_applock per sequence number as it is a reader/writer lock, you can...
Something I've been pondering... Isn't Really Committed isolation supposed to prevent the in-flight reading anyway? Essentially, if you read over a section where a tx is in-flight it would block....
@bertzor I think one workaround that came up is running you database connection in serializeable transaction mode. This will definitely hurt performance, but should give guarentees.