Sean Fausett

Results 69 comments of Sean Fausett

Following are the values overrides I've found are required to run this helm chart on windows nodes: ```yaml fluent-bit: fullnameOverride: fluent-bit-windows nodeSelector: kubernetes.io/os: windows tolerations: - key: os value: windows...

@hannseman PTAL

@hannseman thoughts?

@flaeppe Sounds like a good idea but I'm not a js/ts developer and don't have the bandwidth any more, sorry.

@jerriep. given your great work with [dotnet-outdated](https://github.com/jerriep/dotnet-outdated), do you have any advice on how Dependabot can also update any associated [dependency lock](https://docs.microsoft.com/en-us/nuget/consume-packages/package-references-in-project-files#locking-dependencies) files in its PR? Is the best way...

You could look at what [Renovate](https://github.com/renovatebot/renovate) does since it already handles package lock files: https://github.com/renovatebot/renovate/blob/b6670159c4c6c3e6e1b07829604b2c3301f54162/lib/modules/manager/nuget/artifacts.ts#L98 (Or just switch to Renovate.)

FWIW, I tried the following targets to fix up the TypeScript up-to-date-check: ```xml TypeScript;%(Set) TypeScript;%(Set) ``` Debugging the design-time build does show the set gets applied but it seems to...

@drewnoakes I tried that already with something like: ```xml ``` Debugging the design-time build does show the inputs get removed but this has no effect. I've concluded the _only_ way...

@mcallaghan-bsm I went through the same hoops - using a vstest "collector", then report generator for a text summary, and finally scrape the output for GitLab CI. AFAIK, this is...