Adam Willden
Adam Willden
@mgravell no kidding about the nullable attribute mechanism, that in itself is a project to find the most reliable and performant method. I knew this when raising the ticket 😁...
This is killing productivity because it restores client libraries after every c# code change, if it didn't take so long this wouldn't be such an issue. ``` 1>Restore operation started......
@nwoolls thanks for the info, I appreciate it. I'll subscribe there too 👍
Thanks for taking a look a this! DownloadToFileAsync(x, cancellationToken)); return Task.WhenAll(refreshTasks).ConfigureAwait(false); } private Task DownloadToFileAsync( CacheServiceMetadata metadata, CancellationToken cancellationToken) { return DownloadToFileAsync( metadata.Source, metadata.DestinationPath, cancellationToken); } private bool DoesNotExistOrHasExpired(CacheServiceMetadata metadata)...
@sgjsakura we found the simpler fix which is to change [this line](https://github.com/sgjsakura/AspNetCore/blob/434dbeb5f1878b36434ce7fe4703546973483801/Sakura.AspNetCore.Extensions/Sakura.AspNetCore.Mvc.TagHelpers/FlagsEnumModelBinder.cs#L62) from: `var result = actualValues.Aggregate(0, (current, value) => current | (int)value);` to: `var result = actualValues.Aggregate(0UL, (current, value)...
I implemented a work around by using a binding signaler on the input - I don't consider this an acceptable 'fix' however but I'm posting in case someone comes across...
Thanks for the link to that issue @fopsdev - those advanced techniques are quite well... advanced! I agree this should be a little easier to accomplish as a standard operation...
+1 Be great if this could be fixed. Seems that the douglasteil branch cant use the coverage check option so either way I have to lose some functionality that I...
@KarsonAlford I completely agree and cannot understand why eval is used even in cases where there's nothing to evaluate. Please @mkArtakMSFT, @javiercn reconsider your stance on this. There's no need...
Can you please do this soon as currently I have no means of using a VS client package manager (be it LibMan or NPM) to get a local copy without...