Taylor Buchanan

Results 23 comments of Taylor Buchanan

I see @RostislavST put up a NuGet package for netstandard 1.6. Unfortunately, I can't use it since I have to support UWP. Any chance of getting an official package soon,...

No. Not until Oct 17th. Even then, it won't be backward compatible. UWP currently only supports netstandard 1.4. From the article: > You also need to be running on and...

See https://github.com/dotnetcore/NPOI/issues/77#issuecomment-428994994

@alex-vance You may want to check if it's fixed in the upstream repo (tonyqus/npoi) since netstandard support was released. AFAIK it hasn't been touched here.

@praspratik SetColumnWidth expects a value divisible by 256 due to scaling, so you probably want to pass 51200 instead to get the result you want.

It would cover my example, but I find it semantically awkward. Now it's passing 4 lambdas even though 3 are static values. It wouldn't cover `Callback.First(...).ThenKeepDoing(...)` very well as you'd...

The error logging is occurring because [Webpack logs diagnostics (including progress) to stderr by default](https://github.com/webpack/webpack/issues/3520). You can change the behavior of Webpack 5 by [setting the stream option](https://webpack.js.org/configuration/other-options/#stream). Nonetheless, this...

The [ESPHome docs](https://esphome.io/components/sensor/aht10.html) mention AHT20/21 so maybe AHT25 is implicitly supported (related PR [here](https://github.com/esphome/feature-requests/issues/1558)). Has anybody tried using the `aht10` platform for the AHT25?

I was running into this issue with my `net6.0-android` sdk-style app project rather than a unit test project. The `GenerateErrorForMissingTargetingPacks` workaround did not work for me either but I found...

I have run into this same issue with multitargeting and parallel builds. My workaround has just been to limit MSBuild to 1 CPU. The actual error message is: > The...